body {
  font-family: 'Figtree', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #1f2a44;
}

/* Logo */
.logo {
  height: 70px;
}

.navbar{
    padding: 0;
}

/* Navbar */
.nav-link {
  font-weight: 500;
  color: #333;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #c1a000;
}


.container {
  max-width: 1100px;
  margin: auto;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.product-image {
  flex: 1 1 350px;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.product-info {
  flex: 1 1 400px;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.price .new {
  color: #001f8c;
  font-weight: 700;
}

.desc {
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.btn-buy {
  background: #b89415;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-buy:hover {
  background: #a38313;
}

.divider {
  margin: 60px 0;
  border: none;
  height: 1px;
  background: #ddd;
}

.related-section {
  text-align: center;
}

.related-section h2 {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1.6rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.related-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.related-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.related-card h3 {
  font-size: 1.1rem;
  margin: 12px 0 6px;
}

.related-card .price {
  margin-bottom: 15px;
  color: #001f8c;
  font-weight: 600;
}

/* Responsif */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    align-items: center;
  }

  .product-info {
    text-align: center;
  }

  .btn-buy {
    width: 100%;
  }
}


/* Footer Section */
.footer-section {
  background-color: #fff;
  color: #1a1a1a;
  border-top: 1px solid #eee;
}

.footer-logo {
  height: 70px;
}

.footer-desc {
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c1a000;
}

.footer-contact {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.social-icons a {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #c1a000;
}

.footer-bottom {
  background-color: #c1a000;
  color: #fff;
  font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 10px 16px;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  filter: invert(1);
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #1ebc5c;
}

.wa-text {
  font-weight: 600;
  color: #fff;
}

/* Responsive Footer */
@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }

  .social-icons a {
    margin-right: 8px;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    padding: 8px 14px;
  }

  .wa-text {
    font-size: 0.85rem;
  }
}


/* Custom Modal Styling */
.modal-content {
  background: #fff;
  padding: 1.5rem;
}

.modal-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1.25rem;
}

.modal-body p {
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
}

.btn-whatsapp {
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: white;
  border: none;
  font-weight: bold;
  font-family: 'Figtree', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  fill: white;
}
