
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  background-color: #faf7f0;
}

:root {
  --gold: #d89b2d;
  --cream: #fff7e9;
  --dark: #151515;
  --purple: #7b2cbf;
}

.bg-cream { background-color: var(--cream); }
.text-gold { color: var(--gold); }

.section-heading {
  font-family: "Playfair Display", "Times New Roman", serif;
}

/* topbar */
.topbar {
  background-color: #000;
}

/* Glass navbar */
.navbar-glass {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.navbar-glass .navbar-brand img {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
}
.brand-text {
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.nav-links .nav-link {
  position: relative;
  padding: 0.4rem 1rem;
  margin: 0 0.15rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}
.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 16%;
  bottom: 0.15rem;
  width: 68%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #ffda79);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
}
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  transform: scaleX(1);
}
.nav-links .nav-link:hover {
  color: var(--gold);
  background: rgba(216,155,45,.08);
}
.nav-icon {
  color: #555;
  font-size: 1.1rem;
}
.nav-icon:hover {
  color: var(--gold);
}


/* slider */

.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.hero-overlay p {
  font-size: 1.2rem;
  margin-top: .5rem;
}

.slider-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: .3s;
}
.slider-dots .dot.active {
  background: white;
}



/* hero */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #fffbe6, #f7efe4);
  padding-top: 7.5rem;
  display: flex;
  align-items: stretch;
}
.hero-text h1 {
  line-height: 1.1;
}
.hero-product-slider {
  max-width: 360px;
  margin: 0 auto;
}
.hero-card {
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #ffffff, #f4e8d6);
  padding: 1rem 1.5rem 0.25rem;
  transform: translateY(0);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.hero-bag {
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.25));
}

/* buttons */
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background-color: #b57c16;
  border-color: #b57c16;
  color: #fff;
}
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #fff;
}
/* buttons */
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background-color: #b57c16;
  border-color: #b57c16;
  color: #fff;
}
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #fff;
}

/* icon boxes */
.icon-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.icon-box .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}

/* product slider */
.product-slider {
  overflow: hidden;
  position: relative;
  padding: 0 3rem;
}
.product-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-slide {
  flex: 0 0 260px;
}
.product-image-wrap {
  padding: 1.2rem 1.2rem 0.4rem;
  background: linear-gradient(145deg, #ffffff, #f3e6d2);
  border-radius: 1.25rem;
}
.product-image-wrap img {
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.22));
}
.product-card {
  border: none;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.product-card .card-body {
  background: #fff;
  color: #222;
}
.slider-controls .btn {
  border-radius: 999px;
}

/* recipe cards */
.recipe-card {
  background: #fff;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}
.recipe-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.recipe-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* chef strip */
.chef-strip {
  background: radial-gradient(circle at top, #3d2c18, #18100a);
}
.chef-badge {
  border-radius: 50%;
  background: radial-gradient(circle at top, #fff7e9, #f0d6a7);
  padding: 1.5rem;
}
.chef-badge img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* quality pills */
.quality-pill {
  border-radius: 999px;
  border: 1px solid rgba(216,155,45,.5);
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  font-size: 0.85rem;
}
.cert-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.2rem 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.cert-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* testimonial */
.testimonial-section {
  background: radial-gradient(circle at top left, #3b2a1a, #120c07);
}
.testimonial-card {
  background: rgba(0,0,0,0.6);
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.custom-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  margin: 0 4px;
  background: rgba(255,255,255,.3);
}
.custom-indicators button.active {
  background: #ffcf73;
}
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffcf73;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* inner hero */
.pt-8 { padding-top: 8.5rem; }

/* info tiles */
.info-tile {
  border-radius: 0.75rem;
  border: 1px solid #eee;
  padding: 0.75rem 1rem;
  background: #fff;
}

/* benefit pill */
.benefit-pill {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
}

/* product detail */
.product-detail-img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.22));
}
.small-card .product-image-wrap {
  padding: 0.8rem 0.8rem 0.3rem;
}

/* timeline */
.timeline-step {
  text-align: center;
}
.timeline-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  margin-bottom: 0.5rem;
}

/* gallery */
.gallery-item img {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,.18);
}

/* footer */
.bg-black { background-color: #000; }
.footer-link {
  color: #bbb;
  text-decoration: none;
}
.footer-link:hover { color: #fff; }

/* contact */
.contact-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
}
.icon-circle-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.map-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

/* contact form */
#contactForm .form-control:focus,
#contactForm .form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(216,155,45,.25);
  border-color: var(--gold);
}

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.17, 0.67, 0.36, 0.99),
              transform 0.8s cubic-bezier(0.17, 0.67, 0.36, 0.99);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* misc */
.small-spacing { letter-spacing: 0.25em; }

nav.navbar { z-index: 1050; }

@media (max-width: 991.98px) {
  .navbar-glass {
    margin-top: 0;
  }
  .hero-section {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }
  .product-slider {
    padding: 0 1rem;
  }
  .product-slide {
    flex: 0 0 80%;
  }
}

.footer-premium {
  background: #1c1f22;
  color: #fff;
}

.footer-logo {
  width: 130px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: .25s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

@media (max-width: 768px) {
  .footer-premium { 
    text-align: center; 
  }
  .footer-links a:hover { 
    padding-left: 0; 
  }
}
/* Default Desktop Size */
.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-overlay p {
  font-size: 1.25rem;
  font-weight: 500;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-overlay {
    width: 90%;
  }

  .hero-overlay h1 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .hero-overlay p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: whatsapp-pulse 1.8s infinite;
}

    /* Icon hover */
    .whatsapp-float:hover {
        color: #fff;
        transform: scale(1.08);
    }

/* Pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #111;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 991px) {
    .nav-social {
        justify-content: center;
    }
}

/* Footer Social Icons */
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

    .footer-social a:hover {
        background: #c9a14a; /* gold theme */
        color: #111;
        transform: translateY(-3px);
    }