/* Import Figtree dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* Font global */
body {
  font-family: 'Figtree', sans-serif;
  color: #333;
  background-color: #fff;
}

/* Logo */
.logo {
  height: 70px;
}

/* Navbar */
.nav-link {
  font-weight: 500;
  color: #333;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #c1a000;
}

.btn-gold {
  background-color: #c1a000;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #a68d00;
  color: #fff;
}

/* Featured Section */
.featured-section h2 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #333;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #f1f1f1;
  color: #333;
  font-weight: 600;
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.product-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.product-price {
  font-size: 0.95rem;
  margin: 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
  font-style: italic;
}

.new-price {
  color: #001f9d;
  font-weight: 700;
}

/* Responsiveness */
@media (max-width: 767px) {
  .featured-section h2 {
    font-size: 1.5rem;
  }
  .product-card {
    padding: 10px;
  }
  .btn-gold {
    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;
  }
}

/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(95%);
  transition: transform 1.5s ease;
}

.carousel-item.active .hero-img {
  transform: scale(1.02);
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 12px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Responsive */
@media (max-width: 767px) {
  #hero {
    height: 70vh;
  }
  .hero-img {
    height: 70vh;
  }
}

.featured-collection {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  font-family: 'Figtree', sans-serif;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2a44;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 270px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  color: #1f2a44;
  padding: 5px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.product-card h3 {
  margin: 15px 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
}

.price {
  margin-bottom: 20px;
}

.price .old {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

.price .new {
  color: #001f8c;
  font-weight: 700;
}

.btn-wrapper {
  margin-top: 40px;
}

.btn-primary {
  background-color: #b89415;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #a08313;
}


/* 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;
}
