/* =========================================================================
   MAKHANA LANDING PAGE - PREMIUM DESI DESIGN SYSTEM
   ========================================================================= */

:root {
  /* Colors - Premium Traditional Palette */
  --bg-dark: #071e16;
  /* Deep forest green / dark teal base */
  --bg-darker: #04120d;
  /* Even darker green for depth */
  --bg-card: #0c291f;
  /* Slightly lighter green for cards */

  --gold: #d4af37;
  /* Metallic Gold Accent */
  --gold-light: #f3dba3;
  /* Light Gold for Text */
  --gold-dark: #9e8229;
  /* Darker gold for borders */

  --accent-maroon: #6e1c24;
  /* Deep traditional red/maroon */
  --cream: #fdfbf7;
  /* Off-white/cream for soft text readability */
  --text-muted: #aab5b0;
  /* Muted sage-grey for secondary text */

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  /* Ornate, premium serif */
  --font-body: 'Lato', sans-serif;
  /* Clean, modern sans */

  /* Spacing & Utilities */
  --section-pad: 6rem 10%;
  --transition: all 0.4s ease;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* ================== GLOBAL STYLES ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-light);
}

a {
  text-decoration: none;
  color: var(--cream);
}

img {
  max-width: 100%;
  display: block;
}

/* ================== ANIMATIONS ================== */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatAnim {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatReverse {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(15px) rotate(-5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.spin-slow {
  animation: spinSlow 60s linear infinite;
}

/* Scroll Reveal Utility Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active .fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* ================== BUTTONS ================== */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  font-size: 0.85rem;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  border: none;
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ================== NAVBAR ================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 18, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 10%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo img {
  height: 64px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--gold-light);
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ================== HERO SECTION ================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.bg-texture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.mandala-container {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 850px;
  height: 850px;
  opacity: 0.08;
  pointer-events: none;
}

.mandala {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: inline-block;
  font-weight: 700;
}

.hero-text h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  color: var(--gold-light);
  /* Optional: Subtle gradient text */
  background: linear-gradient(to right, #fff, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Hero Parallax Visuals */
.hero-visual {
  flex: 1;
  position: relative;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.parallax-el {
  will-change: transform;
}

.main-bowl {
  width: 95%;
  max-width: 600px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
  transition: transform 0.1s ease-out;
}

.float {
  position: absolute;
  z-index: 3;
  width: 110px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
  transition: transform 0.1s ease-out;
}

/* Default CSS animations combined with JS parallax for maximum fluidity */
.float-mk-1 {
  top: 15%;
  right: 10%;
  animation: floatAnim 4s ease-in-out infinite;
}

.float-mk-2 {
  bottom: 15%;
  left: 5%;
  animation: floatReverse 5s ease-in-out infinite;
  width: 90px;
}

.float-mk-3 {
  top: 45%;
  left: -10%;
  animation: floatAnim 6s ease-in-out infinite;
  width: 130px;
  /* filter: blur(2px); */
  z-index: 5;
}

.float-lf-1 {
  bottom: 12%;
  right: 25%;
  animation: floatReverse 4.5s ease-in-out infinite;
  width: 80px;
}

.float-sp-1 {
  top: 25%;
  left: 15%;
  animation: floatAnim 3.5s ease-in-out infinite;
  width: 65px;
  z-index: 1;
}


/* ================== DIVIDER ================== */
.divider-section {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--bg-darker);
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1rem 0;
  display: flex;
  align-items: center;
}

.border-overlay {
  width: 100%;
  height: auto;
  opacity: 0.4;
  min-height: 40px;
  object-fit: cover;
}

/* ================== FEATURES / USPs ================== */
.features {
  min-height: 100vh;
  padding: 5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-darker);
  position: relative;
  z-index: 10;
  gap: 2rem;
}

.feature {
  text-align: center;
  flex: 1;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.icon-wrap {
  width: 86px;
  height: 86px;
  margin: 0 auto 1.8rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.feature:hover .icon-wrap {
  background: rgba(212, 175, 55, 0.15);
  border-style: solid;
  border-color: var(--gold);
  transform: scale(1.05);
}

.icon-wrap img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  color: var(--cream);
}

.feature p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* ================== COMMON SECTION HEADERS ================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.accent-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 3px;
}

/* ================== FLAVORS / PRODUCTS ================== */
.flavors {
  min-height: 100vh;
  padding: var(--section-pad);
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-grid .product-card {
  width: 100%;
  max-width: 400px;
}

.product-card {
  position: relative;
  text-align: center;
  padding: 3.5rem 2rem 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* ── Splash — behind everything ─────────────────────────────────────────── */
.product-bg-splash {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-15deg);
  width: 420px;
  height: 420px;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity   0.5s  ease;
}

.product-bg-splash img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card:hover .product-bg-splash {
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  opacity: 0.9;
}

/* ── Mini components — z-index 1 (behind product-img at z-index 2) ───────── */
.mini-comp {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  /* all start from the card centre so they emerge from behind the product */
  top: 44%;
  left: 50%;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity   0.4s ease;
}

/* Individual final positions + sizes */
.mini-chilli {
  width: 52px;
  transition-delay: 0.05s;
}
.mini-mint {
  width: 62px;
  transition-delay: 0.10s;
}
.mini-elem2 {
  width: 44px;
  transition-delay: 0.14s;
}
.mini-elem3 {
  width: 48px;
  transition-delay: 0.08s;
}
.mini-elem4 {
  width: 40px;
  transition-delay: 0.18s;
}

/* On hover: scale up to 1 and translate to their spots */
.product-card:hover .mini-chilli {
  opacity: 1;
  transform: translate(calc(-50% - 115px), calc(-50% - 55px)) scale(1) rotate(-15deg);
  animation: floatMini1 2.6s ease-in-out 0.65s infinite;
}
.product-card:hover .mini-mint {
  opacity: 1;
  transform: translate(calc(-50% + 100px), calc(-50% - 90px)) scale(1) rotate(12deg);
  animation: floatMini2 3.0s ease-in-out 0.70s infinite;
}
.product-card:hover .mini-elem2 {
  opacity: 1;
  transform: translate(calc(-50% + 120px), calc(-50% + 20px)) scale(1) rotate(8deg);
  animation: floatMini3 2.8s ease-in-out 0.74s infinite;
}
.product-card:hover .mini-elem3 {
  opacity: 1;
  transform: translate(calc(-50% - 105px), calc(-50% + 70px)) scale(1) rotate(-10deg);
  animation: floatMini4 3.2s ease-in-out 0.68s infinite;
}
.product-card:hover .mini-elem4 {
  opacity: 1;
  transform: translate(calc(-50% + 30px), calc(-50% + 110px)) scale(1) rotate(5deg);
  animation: floatMini5 2.5s ease-in-out 0.78s infinite;
}

/* Float keyframes — each preserves its own translate & rotate so the animation
   only adds a gentle vertical drift on top of the landed position. */
@keyframes floatMini1 {
  0%,100% { transform: translate(calc(-50% - 115px), calc(-50% - 55px))  scale(1) rotate(-15deg) translateY(0);    }
  50%      { transform: translate(calc(-50% - 115px), calc(-50% - 55px))  scale(1) rotate(-15deg) translateY(-11px); }
}
@keyframes floatMini2 {
  0%,100% { transform: translate(calc(-50% + 100px), calc(-50% - 90px))  scale(1) rotate(12deg)  translateY(0);    }
  50%      { transform: translate(calc(-50% + 100px), calc(-50% - 90px))  scale(1) rotate(12deg)  translateY(-13px); }
}
@keyframes floatMini3 {
  0%,100% { transform: translate(calc(-50% + 120px), calc(-50% + 20px))  scale(1) rotate(8deg)   translateY(0);    }
  50%      { transform: translate(calc(-50% + 120px), calc(-50% + 20px))  scale(1) rotate(8deg)   translateY(-9px);  }
}
@keyframes floatMini4 {
  0%,100% { transform: translate(calc(-50% - 105px), calc(-50% + 70px))  scale(1) rotate(-10deg) translateY(0);    }
  50%      { transform: translate(calc(-50% - 105px), calc(-50% + 70px))  scale(1) rotate(-10deg) translateY(-14px); }
}
@keyframes floatMini5 {
  0%,100% { transform: translate(calc(-50% + 30px), calc(-50% + 110px))  scale(1) rotate(5deg)   translateY(0);    }
  50%      { transform: translate(calc(-50% + 30px), calc(-50% + 110px))  scale(1) rotate(5deg)   translateY(-10px); }
}


.product-img {
  position: relative;
  z-index: 2;
  height: 300px;
  margin: 0 auto 2.5rem;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

.product-card:hover .product-img {
  transform: scale(1.1) rotate(3deg);
}

.product-info {
  position: relative;
  z-index: 1;
}

.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  color: var(--gold-light);
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  min-height: 45px;
  line-height: 1.5;
}

.add-to-cart {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.product-card:hover .add-to-cart {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ================== DELIVERY SECTION ================== */
.delivery-section {
  min-height: 100vh;
  padding: 5rem 10%;
  background: var(--bg-card);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.delivery-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.delivery-content {
  flex: 1;
  max-width: 500px;
}

.delivery-content h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  line-height: 1.1;
}

.delivery-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.delivery-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.delivery-image img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.delivery-image:hover img {
  transform: translateY(-10px) scale(1.02);
}

/* ================== ON THE GRAM ================== */
.gram-section {
  min-height: 100vh;
  padding: 4rem 0 8rem;
  /* removed horizontal padding for full bleed carousel */
  background: var(--bg-darker);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.gram-section .section-header {
  padding: 0 10%;
}

.gram-profile {
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--gold);
  padding: 4px;
  width: 110px;
  height: 110px;
  object-fit: cover;
}

.gram-section .section-header p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.1rem;
}

/* ================== REVIEWS HORIZONTAL CAROUSEL ================== */
.reviews-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 3rem 0;
  /* Fade edges left & right */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.reviews-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  padding: 1.5rem 0;
  animation: scrollTrackHorizontal 35s linear infinite;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused;
}

/* Golden string connector between cards */
.card-connector {
  flex: 0 0 auto;
  width: 64px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--gold-dark),
    var(--gold),
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.45), 0 0 22px rgba(212, 175, 55, 0.18);
}

/* Small gold bead at each end of the connector string */
.card-connector::before,
.card-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.9);
}

.card-connector::before {
  left: 0;
  transform: translate(-50%, -50%);
}

.card-connector::after {
  right: 0;
  transform: translate(50%, -50%);
}

@keyframes scrollTrackHorizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Scroll exactly half — the duplicated clone set begins at the exact midpoint */
    transform: translateX(-50%);
  }
}

.gram-card {
  width: 380px;
  min-height: 250px;
  /* Forces cards to be equal size at a minimum */
  flex: 0 0 auto;
  /* Ensures they don't shrink or grow */
  background: #111a15;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gram-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Make one card pop slightly */
.highlight-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border-color: rgba(212, 175, 55, 0.3);
}

.gram-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

/* Instagram style gradient border for avatars */
.gram-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 2px;
  position: relative;
}

.gram-avatar::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #222;
  border-radius: 50%;
  border: 2px solid #111a15;
}

/* Generating distinct background colors for inner mock avatars */
.avatar-1::after {
  background: #3b5998;
}

.avatar-2::after {
  background: #1da1f2;
}

.avatar-3::after {
  background: #cddc39;
}

.avatar-4::after {
  background: #ff9800;
}


.gram-user {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.gram-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.gram-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dfdfdf;
  font-style: italic;
}

.gram-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.likes {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* ================== FOOTER ================== */
footer {
  background: #020a07;
  /* Very dark nearly black green */
  padding: 5rem 10% 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #556c60;
  font-size: 0.9rem;
}

/* ================== ABOUT THE PRODUCT SECTION ================== */
.about-section {
  padding: var(--section-pad);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Radial maroon-gold ambient glow */
.about-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(110, 28, 36, 0.14) 0%,
      rgba(212, 175, 55, 0.05) 45%,
      transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 6rem;
}

/* ---- Visual / Left Column ---- */
.about-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

/* Pulsing dashed halo ring */
.about-halo {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  border: 1px dashed rgba(212, 175, 55, 0.28);
  animation: aboutHaloPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Larger outer ring for depth */
.about-halo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.07);
  animation: aboutHaloPulse 4s ease-in-out 1s infinite;
}

@keyframes aboutHaloPulse {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.07); opacity: 1;   }
}

.about-product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.12));
  animation: floatAnim 7s ease-in-out infinite;
  transition: filter 0.4s ease;
}

.about-visual:hover .about-product-img {
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 32px rgba(212, 175, 55, 0.28));
}

/* Floating mini ingredient elements */
.about-float {
  position: absolute;
  z-index: 3;
  opacity: 0.88;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.about-float-1 {
  width: 58px;
  top: 12%;
  right: 10%;
  animation: floatReverse 3.5s ease-in-out infinite;
}

.about-float-2 {
  width: 68px;
  bottom: 16%;
  left: 6%;
  animation: floatAnim 4.8s ease-in-out infinite;
}

.about-float-3 {
  width: 46px;
  top: 58%;
  right: 5%;
  animation: floatReverse 5.2s ease-in-out infinite;
}

.about-float-4 {
  width: 42px;
  top: 6%;
  left: 16%;
  animation: floatAnim 3.9s ease-in-out infinite;
}

/* ---- Text / Right Column ---- */
.about-text {
  flex: 1;
  max-width: 520px;
}

.about-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0;
  background: linear-gradient(to right, var(--cream) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-body {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.about-body strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* Tagline pull-quote box */
.about-tagline {
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.07) 0%,
      rgba(110, 28, 36, 0.09) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.about-tagline:hover {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.12) 0%,
      rgba(110, 28, 36, 0.14) 100%);
}

/* Large decorative opening quote mark */
.about-tagline::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  left: 14px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-tagline p {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-light);
  text-align: center;
  flex: 1;
  letter-spacing: 1.5px;
}

/* Gold bead dots flanking the tagline */
.tagline-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.9), 0 0 24px rgba(212, 175, 55, 0.35);
}

/* ================== CONTACT PAGE ================== */

/* Active nav link highlight */
.nav-links li a.active-link {
  color: var(--gold);
}

.nav-links li a.active-link::after {
  width: 100%;
  background-color: var(--gold);
}

/* --- Contact Hero --- */
.contact-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 10% 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, rgba(212, 175, 55, 0.07) 0%, transparent 65%),
              radial-gradient(ellipse at 30% 70%, rgba(110, 28, 36, 0.06) 0%, transparent 60%),
              var(--bg-dark);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.05;
}

.contact-mandala {
  width: 700px;
  height: 700px;
  object-fit: contain;
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
}

.contact-hero-text {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.contact-hero-text h1 {
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Contact Form Section --- */
.contact-section {
  padding: 5rem 10% 8rem;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.contact-columns {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}

/* --- Form Wrapper Card --- */
.contact-form-wrapper {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3.5rem 4rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* ================== CONTACT INFO CARD ================== */
.contact-info-card {
  flex: 0 0 340px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem 2.8rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.ci-header .subtitle {
  display: block;
  margin-bottom: 0.4rem;
}

.ci-header h2 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.ci-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact detail list */
.ci-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
}

.ci-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.ci-value {
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.5;
  transition: color 0.3s ease;
}

a.ci-value:hover {
  color: var(--gold-light);
}

/* Divider */
.ci-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
  margin: 2rem 0;
}

/* Business hours */
.ci-hours .ci-label {
  display: block;
  margin-bottom: 0.9rem;
}

.ci-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--cream);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ci-hours-closed {
  border-bottom: none;
}

.ci-hours-closed span:last-child {
  color: rgba(233, 107, 107, 0.85);
  font-weight: 600;
}

/* Instagram DM note */
.ci-dm-note {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.ci-dm-note-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ci-dm-note-top svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.9;
}

.ci-dm-note p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.ci-dm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.62rem 1rem;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 45%, #fd1d1d 80%, #fcb045 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: filter 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(193, 53, 132, 0.35);
}

.ci-dm-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(193, 53, 132, 0.5);
  color: #fff;
}

.ci-dm-btn:active {
  transform: translateY(0);
  filter: brightness(1);
}

/* Decorative corner accents */
.corner-accent {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.55;
}

.corner-accent.top-left    { top: 16px;    left: 16px;    border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.corner-accent.top-right   { top: 16px;    right: 16px;   border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.corner-accent.bottom-left { bottom: 16px; left: 16px;    border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.corner-accent.bottom-right{ bottom: 16px; right: 16px;   border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.form-section-header {
  margin-bottom: 0.5rem;
}

.form-section-header h2 {
  font-size: 2.6rem;
}

/* --- Form Fields --- */
.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 170px;
}

/* Inline validation error */
.field-error {
  display: none;
  font-size: 0.8rem;
  color: #e96b6b;
  margin-top: 0.45rem;
  letter-spacing: 0.5px;
}

/* Submit button — full width inside form */
.contact-submit-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

.contact-submit-btn .btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* ================== FANCY SEND BUTTON ================== */
.contact-fancy-btn {
  --sb-primary:    var(--gold);
  --sb-neutral-1:  #0f3427;
  --sb-neutral-2:  var(--bg-dark);
  --radius: 14px;

  cursor: pointer;
  border-radius: var(--radius);
  color: var(--gold-light);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  border: none;
  box-shadow:
    0 0.5px 0.5px 1px rgba(212, 175, 55, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.45),
    0 4px 5px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  min-width: 200px;
  padding: 20px;
  height: 68px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0.5rem;
  background: transparent;
}

.contact-fancy-btn:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 1px 2px rgba(212, 175, 55, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.55),
    0 10px 3px -3px rgba(0, 0, 0, 0.1);
}

.contact-fancy-btn:active {
  transform: scale(1);
  box-shadow:
    0 0 1px 2px rgba(212, 175, 55, 0.2),
    0 10px 3px -3px rgba(0, 0, 0, 0.3);
}

.contact-fancy-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2.5px solid transparent;
  background:
    linear-gradient(var(--sb-neutral-1), var(--sb-neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(212, 175, 55, 0.45), rgba(212, 175, 55, 0.1)) border-box;
  z-index: 0;
  transition: all 0.4s ease;
}

.contact-fancy-btn:hover::after,
.contact-fancy-btn:focus::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(212, 175, 55, 0.25);
}

.contact-fancy-btn:focus {
  transform: scale(1.02);
  box-shadow:
    0 0 1px 2px rgba(212, 175, 55, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.55),
    0 10px 3px -3px rgba(0, 0, 0, 0.1);
  outline: none;
}

.contact-fancy-btn::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: linear-gradient(to top, var(--sb-neutral-1), var(--sb-neutral-2));
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}

/* — Spinning outline — */
.contact-fancy-btn .outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
}

.contact-fancy-btn .outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 180deg,
    transparent 60%,
    rgba(212, 175, 55, 0.75) 80%,
    transparent 100%
  );
  animation: sb-spin 2s linear infinite;
  animation-play-state: paused;
}

@keyframes sb-spin {
  0%   { transform: rotate(0deg);   }
  100% { transform: rotate(360deg); }
}

.contact-fancy-btn:hover .outline,
.contact-fancy-btn:focus .outline {
  opacity: 1;
}

.contact-fancy-btn:hover .outline::before,
.contact-fancy-btn:focus .outline::before {
  animation-play-state: running;
}

/* — State layout — */
.contact-fancy-btn .state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}

.contact-fancy-btn .state p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-fancy-btn .state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-fancy-btn .state .icon svg {
  overflow: visible;
}

/* — Letters — */
.contact-fancy-btn .state p span {
  display: block;
  opacity: 0;
  animation: sb-slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}

.contact-fancy-btn:hover .state p span,
.contact-fancy-btn:focus .state p span {
  opacity: 1;
  animation: sb-wave 0.5s ease forwards calc(var(--i) * 0.02s);
}

@keyframes sb-wave {
  30%  { opacity: 1; transform: translateY(4px)  translateX(0) rotate(0); }
  50%  { opacity: 1; transform: translateY(-3px) translateX(0) rotate(0); color: var(--sb-primary); }
  100% { opacity: 1; transform: translateY(0)    translateX(0) rotate(0); }
}

@keyframes sb-slideDown {
  0%   { opacity: 0; transform: translateY(-20px) translateX(5px) rotate(-90deg); color: var(--sb-primary); filter: blur(5px); }
  30%  { opacity: 1; transform: translateY(4px)   translateX(0)  rotate(0);       filter: blur(0); }
  50%  { opacity: 1; transform: translateY(-3px)  translateX(0)  rotate(0); }
  100% { opacity: 1; transform: translateY(0)     translateX(0)  rotate(0); }
}

@keyframes sb-disapear {
  from { opacity: 1; }
  to   { opacity: 0; transform: translateX(5px) translateY(20px); color: var(--sb-primary); filter: blur(5px); }
}

/* — Plane (default state) — */
.contact-fancy-btn .state--default .icon svg {
  animation: sb-land 0.6s ease forwards;
}

.contact-fancy-btn:hover .state--default .icon,
.contact-fancy-btn:focus .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}

@keyframes sb-takeOff {
  0%   { opacity: 1; }
  60%  { opacity: 1; transform: translateX(70px)  rotate(45deg) scale(2); }
  100% { opacity: 0; transform: translateX(160px) rotate(45deg) scale(0); }
}

@keyframes sb-land {
  0%   { transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2); opacity: 0; filter: blur(3px); }
  100% { transform: translateX(0)     translateY(0)    rotate(0);               opacity: 1; filter: blur(0); }
}

/* — Contrail — */
.contact-fancy-btn .state--default .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.55));
}

@keyframes sb-contrail {
  0%   { width: 0;     opacity: 1; }
  8%   { width: 15px; }
  60%  { opacity: 0.7; width: 80px; }
  100% { opacity: 0;   width: 160px; }
}

/* — Space between "Send" and "Message" — */
.contact-fancy-btn .state--default p span:nth-child(4) {
  margin-right: 5px;
}

/* — Sent state (hidden by default) — */
.contact-fancy-btn .state--sent {
  display: none;
}

.contact-fancy-btn .state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}

@keyframes sb-appear {
  0%   { opacity: 0; transform: scale(4)   rotate(-40deg); color: var(--sb-primary); filter: blur(4px); }
  30%  { opacity: 1; transform: scale(0.6) rotate(0);      filter: blur(1px); }
  50%  { opacity: 1; transform: scale(1.2) rotate(0);      filter: blur(0); }
  100% { opacity: 1; transform: scale(1)   rotate(0); }
}

/* ── Programmatic send states ── */

/* is-sending: plane takes off, letters vanish */
.contact-fancy-btn.is-sending .state--default .icon svg {
  animation: sb-takeOff 0.65s ease forwards !important;
}

.contact-fancy-btn.is-sending .state--default .icon::before {
  animation: sb-contrail 0.7s ease forwards !important;
}

.contact-fancy-btn.is-sending .state--default p span {
  animation: sb-disapear 0.4s ease forwards calc(var(--i) * 0.02s) !important;
}

/* is-sent: swap states */
.contact-fancy-btn.is-sent .state--default {
  display: none;
}

.contact-fancy-btn.is-sent .state--sent {
  display: flex;
}

.contact-fancy-btn.is-sent .state--sent p span {
  opacity: 1;
  animation: sb-appear 0.6s ease forwards calc(var(--i) * 0.06s);
}

.contact-fancy-btn.is-sent .state--sent .icon svg {
  animation: sb-appear 0.6s ease forwards;
  color: var(--gold);
}

/* Disabled while animating */
.contact-fancy-btn:disabled {
  cursor: default;
  pointer-events: none;
}

/* ================== SUCCESS MODAL ================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 18, 13, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  position: relative;
  transform: translateY(28px) scale(0.94);
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-box {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 76px;
  height: 76px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-size: 2.2rem;
  color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.modal-box h3 {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.modal-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

.modal-box p strong {
  color: var(--gold-light);
}

/* Close button — same style as btn-primary */
.modal-close {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--bg-dark);
  border: none;
  padding: 0.85rem 2.8rem;
  font-size: 0.9rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.modal-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.4);
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 4rem;
  }

  .delivery-container {
    gap: 2rem;
  }

  .delivery-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }

  .features {
    flex-direction: column;
    gap: 2rem;
  }

  .delivery-container {
    flex-direction: column;
    text-align: center;
  }

  .delivery-content {
    max-width: 100%;
  }

  .about-container {
    flex-direction: column-reverse;
    gap: 3.5rem;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-tagline {
    justify-content: center;
  }
}

@media (max-width: 960px) {
  /* Stack contact info + form on tablet */
  .contact-columns {
    flex-direction: column;
  }

  .contact-info-card {
    flex: none;
    width: 100%;
  }
}

/* ── Nav Right (wraps Shop Now + hamburger) ── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ── Hamburger Button ── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #f3dba3;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* ── Mobile Overlay ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mob-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ── Mobile Drawer ── */
.mob-drawer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    max-width: 82vw;
    height: 100%;
    height: 100dvh;
    background: #0c291f;
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    padding: 1.5rem;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-drawer.active {
    right: 0;
}

.mob-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mob-close-btn {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #f3dba3;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.mob-close-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.mob-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mob-nav-link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: #aab5b0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.mob-nav-link:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #f3dba3;
}

.mob-shop-link {
    display: block;
    margin-top: 0.75rem;
    padding: 0.95rem 1rem;
    text-align: center;
    background: transparent;
    border: 1px solid #d4af37;
    border-radius: 50px;
    color: #d4af37;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.mob-shop-link:hover {
    background: #d4af37;
    color: #071e16;
}

@media (max-width: 768px) {
  /* Contact page responsive */
  .contact-columns {
    flex-direction: column;
  }

  .contact-info-card {
    flex: none;
    width: 100%;
    padding: 2.2rem 1.8rem 2.5rem;
  }

  .contact-hero-text h1 {
    font-size: 2.8rem;
  }

  .contact-form-wrapper {
    padding: 2.5rem 1.8rem 3rem;
  }

  .form-section-header h2 {
    font-size: 2rem;
  }

  .modal-box {
    padding: 2.8rem 1.8rem 2.2rem;
  }

  .modal-box h3 {
    font-size: 1.6rem;
  }

  .gram-card {
    width: 300px;
    padding: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-right > a {
    display: none;
  }

  /* Comment removed — hamburger is now implemented above */

  .hero {
    flex-direction: column;
    padding-top: 100px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }

  .hero-text {
    margin-bottom: 3rem;
    max-width: 100%;
  }

  .subtitle {
    margin-top: 1rem;
  }

  .hero-visual {
    height: 400px;
    width: 100%;
    perspective: none;
  }

  .main-bowl {
    width: 80%;
  }

  .float {
    width: 70px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .about-heading {
    font-size: 2.6rem;
  }

  .about-visual {
    min-height: 360px;
  }

  .about-product-img {
    max-width: 240px;
  }

  .about-halo {
    width: 270px;
    height: 270px;
  }

  .about-float-1 { width: 45px; }
  .about-float-2 { width: 52px; }
  .about-float-3 { width: 35px; }
  .about-float-4 { width: 32px; }
}