/* ============================================================
   SKS GHEE — STYLESHEET
   Inspired by Viveaha Oils | Rustic · Premium · Natural
   ============================================================ */

/* ── Google Fonts already imported via HTML link ── */

/* ════════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════ */
:root {
  /* Color Palette */
  --gold: #C8860A;
  --gold-light: #F0C040;
  --gold-pale: #FFF3D0;
  --green: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --brown: #5C3D1E;
  --cream: #FDFAF4;
  --cream-dark: #F5EDD8;
  --white: #FFFFFF;
  --text-dark: #2C1A0E;
  --text-mid: #5C4A35;
  --text-light: #9A7C5A;
  --border: #E8D8B8;

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Fira Sans', sans-serif;

  /* Spacing */
  --section-gap: 160px;
  /* Increased for breathing room */
  --container: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 26, 14, .08);
  --shadow-md: 0 8px 32px rgba(44, 26, 14, .12);
  --shadow-lg: 0 20px 60px rgba(44, 26, 14, .18);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
}

/* ════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* Background Pattern & Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  background-image: radial-gradient(var(--border) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.15;
}

/* Background Pattern & Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  background-image: radial-gradient(var(--gold) 0.5px, transparent 0.5px);
  background-size: 40px 40px;
  opacity: 0.1;
}

/* Texture Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("https://www.transparenttextures.com/patterns/old-mathematics.png");
  /* Subtle paper/grain texture */
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}

ul {
  list-style: none;
}

/* ════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── Scroll reveal animation ─────────────────────────────── */
.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible,
.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-stagger:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(200, 134, 10, .25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-eyebrow.light {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-title.italic {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3B1F0C;
  /* Solid dark brown for high contrast */
  color: #fff;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 18px 40px;
  /* Increased padding for at least 56px total height */
  border-radius: 100px;
  border: 2px solid var(--gold);
  /* Subtle gold accent border */
  box-shadow: 0 10px 30px rgba(59, 31, 12, .25);
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 31, 12, .4);
  background: #2A1608;
  border-color: #fff;
}

/* Button Shimmer Effect */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.btn-primary:hover::after {
  left: 100%;
  top: 100%;
  opacity: 1;
  transition: all 0.5s;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid var(--brown);
  transition: all .3s ease;
}

.btn-secondary:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════
    NEW MODERN HEADER & ANNOUNCEMENT
    ════════════════════════════════════════════ */
.announcement-strip {
  background: #2C1A0E;
  color: #fff;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.announcement-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.announcement-strip p {
  margin: 0;
  letter-spacing: 0.02em;
}

.gold-text {
  color: #E8A020;
  font-weight: 700;
}

.close-bar {
  position: absolute;
  right: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.close-bar:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-modern {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Modern */
.brand-modern {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-box {
  width: 54px;
  height: 54px;
  background: #2C1A0E;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(44, 26, 14, 0.15);
}

.logo-circle {
  width: 20px;
  height: 20px;
  background: #E8A020;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(232, 160, 32, 0.6);
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-top {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: #2C1A0E;
  letter-spacing: 0.05em;
}

.brand-bottom {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: #2C1A0E;
  letter-spacing: 0.05em;
}

/* Nav Links */
.nav-links-modern {
  display: flex;
  gap: 40px;
}

.nav-links-modern a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links-modern a:hover {
  color: #E8A020;
}

/* Actions */
.nav-actions-modern {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-shop-header-modern {
  padding: 12px 28px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #ccc;
  /* Matches the ghost look in image */
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-shop-header-modern:hover {
  border-color: #E8A020;
  color: #E8A020;
  background: rgba(232, 160, 32, 0.05);
}

.hamburger-modern {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-modern span {
  display: block;
  width: 25px;
  height: 2px;
  background: #2C1A0E;
  border-radius: 2px;
}

@media (max-width: 991px) {

  .nav-links-modern,
  .btn-shop-header-modern {
    display: none;
  }

  .hamburger-modern {
    display: flex;
  }
}

/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 100px;
  background: linear-gradient(rgba(253, 250, 244, 0.4), rgba(253, 250, 244, 0.8)), url("images/hero_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(253, 250, 244, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-family: var(--font-serif);
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.hero-title strong {
  font-family: var(--font-serif);
  color: #3b2818;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 auto 28px;
  max-width: 800px;
}

.hero-quote {
  border-left: none;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 12px 0;
  margin: 0 auto 40px;
  font-style: italic;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-cta .btn-primary {
  background: #3B1F0C;
  color: #fff;
  padding: 18px 40px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 2px solid var(--gold);
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-primary:hover {
  background: #2A1608;
  color: #fff;
  transform: translateY(-5px);
  border-color: #fff;
}

.hero-cta .btn-outline {
  background: transparent;
  color: #3b2818;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 2px solid #3b2818;
  text-decoration: none;
  transition: all .3s ease;
}

.hero-cta .btn-outline:hover {
  background: #3b2818;
  color: #fff;
}

.hero-rating {
  font-size: .85rem;
  color: var(--text-mid);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(1px);
}

/* CSS CARD for Right section */
.hero-css-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-css-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 134, 10, .05) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-css-card {
  position: relative;
  width: 240px;
  height: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(200, 134, 10, .15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(200, 134, 10, .15);
  z-index: 1;
}

.card-tab {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--gold);
  border-radius: 10px;
}

.card-pill {
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.card-product-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.card-product-sub {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* FULL WIDTH STATS STRIP */
.full-width-stats {
  width: 100%;
  background: #fff;
  border-top: 1px solid #e8d9b0;
  border-bottom: 1px solid #e8d9b0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 24px;
  /* Increased vertical padding to 48px */
  max-width: var(--container);
  margin: 0 auto;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: #e8d9b0;
}

.stat-v {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: #8B5E34;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-c {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.stat-s {
  font-size: 12px;
  color: #777777;
  font-weight: 500;
}

/* ════════════════════════════════════════════
   PRODUCTS SECTION
   ════════════════════════════════════════════ */
.products-section {
  padding: 120px 0;
  background: #FDFAF4;
  position: relative;
}


/* ── SIZE TABS ──────────────────────────────── */
.size-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 16px;
}

.size-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: #fff;
  border: 1.5px solid #E8D9B0;
  border-radius: 100px;
  overflow-x: auto;
  scrollbar-width: none;
}

.size-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  white-space: nowrap;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: #5C4A35;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover:not(.active) {
  background: #FFF3D0;
  color: #2C1A0E;
}

.tab-btn.active {
  background: #2C1A0E;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(44, 26, 14, 0.22);
}

/* ── PRODUCT CARD ──────────────────────────── */
.product-interactive-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto 56px;
  background: #fff;
  border: 1.5px solid #EDE0C4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(44, 26, 14, 0.08);
}

/* LEFT PANEL */
.card-visual {
  background: #FAF6ED;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 40px;
  border-right: 1.5px solid #EDE0C4;
  position: relative;
}

.product-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.jar-illustration {
  width: 200px;
  animation: jar-float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 32px rgba(44, 26, 14, 0.14));
}

.jar-svg {
  width: 100%;
  height: auto;
}

@keyframes jar-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.jar-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #E8D9B0;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #5C3D1E;
  box-shadow: 0 4px 12px rgba(44, 26, 14, 0.07);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

/* RIGHT PANEL */
.card-details {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: #fff;
}

.detail-badge {
  display: inline-block;
  background: #FFF3D0;
  color: #C8860A;
  border: 1px solid rgba(200, 134, 10, 0.25);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: #2C1A0E;
  margin-bottom: 10px;
  line-height: 1.2;
}

.detail-desc {
  font-size: 0.95rem;
  color: #5C4A35;
  line-height: 1.65;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  border-top: 1px solid #EDE0C4;
  padding-top: 20px;
}

.price-currency {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #2C1A0E;
  font-weight: 700;
  line-height: 1;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: #2C1A0E;
  font-weight: 800;
  line-height: 1;
  transition: all 0.3s ease;
}

.price-unit {
  font-size: 0.95rem;
  color: #9A7C5A;
  margin-left: 4px;
  transition: all 0.3s ease;
}

.detail-best-for {
  font-style: italic;
  font-size: 0.88rem;
  color: #9A7C5A;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

/* Feature bullets */
.product-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #5C4A35;
  font-weight: 500;
}

.product-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #FFF3D0;
  border: 1px solid #E8C97A;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C8860A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* WhatsApp CTA */
.btn-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1DB954;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.28);
  transition: all 0.3s ease;
}

.btn-whatsapp-full svg {
  flex-shrink: 0;
}

.btn-whatsapp-full:hover {
  background: #17A347;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(29, 185, 84, 0.38);
  color: #fff;
}

.bulk-footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: #9A7C5A;
}

.bulk-footer-note a {
  color: #C8860A;
  font-weight: 600;
}

.bulk-footer-note a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 860px) {
  .product-interactive-card {
    grid-template-columns: 1fr;
  }

  .card-visual {
    border-right: none;
    border-bottom: 1.5px solid #EDE0C4;
    padding: 48px 32px;
  }

  .card-details {
    padding: 40px 28px;
    text-align: center;
  }

  .detail-badge {
    align-self: center;
  }

  .detail-price-row {
    justify-content: center;
  }

  .product-features li {
    justify-content: center;
  }
}

/* ════════════════════════════════════════════
   WHY US / OUR STORY
   ════════════════════════════════════════════ */
.why-us {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-us-text .section-title {
  text-align: center;
}

.why-us-text .section-eyebrow {
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 14, 0.98);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 40px;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.menu-close {
  position: absolute;
  top: -20px;
  right: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: #E8A020;
}

.mobile-menu-footer {
  width: 100%;
  max-width: 320px;
}

/* ════════════════════════════════════════════
   GLOBAL MOBILE REFINEMENTS
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  .hero {
    padding: 140px 20px 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
    line-height: 1.1;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 15px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-rating {
    flex-direction: column;
    gap: 10px;
  }

  /* Stats Responsive Fix */
  .stats-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    padding: 60px 20px !important;
  }

  .stat-sep {
    display: none !important;
  }

  .stat-v {
    font-size: 1.8rem !important;
  }

  .footer-grid-new {
    grid-template-columns: 1fr !important;
    gap: 40px;
    text-align: center;
  }

  .footer-col-brand,
  .footer-tagline-new {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons-circular {
    justify-content: center;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-contact-info,
  .footer-links-new {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-wa-card {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail-price-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .price-amount {
    font-size: 2.8rem !important;
  }

  .policy-card {
    padding: 30px 20px;
  }
}

.why-us-text strong {
  color: var(--brown);
}

.story-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.story-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.why-us-image {
  position: relative;
}

.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-dark);
}

.image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why-tag {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brown);
}

.tag-1 {
  top: -16px;
  right: 30px;
}

.tag-2 {
  bottom: -16px;
  left: 30px;
}

/* ════════════════════════════════════════════
   BENEFITS SECTION
   ════════════════════════════════════════════ */
.benefits {
  padding: var(--section-gap) 0;
  background: linear-gradient(rgba(253, 250, 244, 0.92), rgba(253, 250, 244, 0.92)), url("images/splash_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  /* Changed from fixed for mobile performance/visibility */
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e8d9b0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.benefit-item {
  padding: 40px;
  border: 0.5px solid #e8d9b0;
  text-align: left;
  transition: background 0.3s ease;
}

.benefit-item:hover {
  background: #fdfaf3;
}

.benefit-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.benefit-item h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   PROCESS SECTION
   ════════════════════════════════════════════ */
.process {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.process .section-eyebrow {
  background: var(--gold-pale);
  border-color: rgba(200, 134, 10, .25);
  color: var(--gold);
}

.process .section-title {
  color: var(--brown);
}

.process .section-subtitle {
  color: var(--text-mid);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: all .35s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-6px);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, .4);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
/* ════════════════════════════════════════════
    TESTIMONIALS REDESIGN
    ════════════════════════════════════════════ */
.testimonials-new {
  padding: 100px 0;
  background: #FBF6EE;
  /* Warm cream background */
  font-family: Arial, sans-serif;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title-geo {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  color: #2C1A0E;
  /* Dark brown */
  margin-bottom: 16px;
}

.italic-gold {
  font-style: italic;
  color: #B07D2A;
  /* Golden italic */
}

.testimonials-subtitle {
  color: #7A5E3A;
  /* Muted brown */
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Trust Summary Bar */
.trust-summary-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item strong {
  font-size: 1.5rem;
  color: #2C1A0E;
  display: block;
}

.trust-item span {
  font-size: 0.85rem;
  color: #7A5E3A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.star-rating-main {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stars-row {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.2rem;
  line-height: 1;
}

.star.filled {
  color: #E8A020;
}

.star.empty {
  color: #E8D5B0;
}

.star.partial {
  background: linear-gradient(90deg, #E8A020 60%, #E8D5B0 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: #E8D5B0;
}

.rating-text {
  display: flex;
  flex-direction: column;
}

/* Review Cards Grid */
.reviews-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.review-card-modern {
  background: #fff;
  border: 1px solid #EAD9BC;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.review-card-modern:hover {
  transform: translateY(-5px);
}

.card-top-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.card-stars {
  display: flex;
  gap: 2px;
}

.decor-quote {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.4;
  color: #EAD9BC;
  opacity: 0.5;
  margin-top: 10px;
}

.review-quote-geo {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2C1A0E;
  margin-bottom: 32px;
  flex-grow: 1;
}

.review-card-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 24px;
  border-top: 1px solid rgba(234, 217, 188, 0.4);
}

.avatar-circle {
  width: 44px;
  height: 44px;
  background: #FBF6EE;
  color: #B07D2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-meta strong {
  display: block;
  font-size: 1rem;
  color: #2C1A0E;
  margin-bottom: 2px;
}

.reviewer-meta span {
  font-size: 0.85rem;
  color: #7A5E3A;
}

/* Featured Card (Rajesh Nair) */
.review-card-modern.featured {
  background: #2C1A0E;
  border: none;
  box-shadow: 0 20px 40px rgba(44, 26, 14, 0.15);
}

.review-card-modern.featured .review-quote-geo {
  color: #F5E6CA;
}

.review-card-modern.featured .reviewer-meta strong {
  color: #F5E6CA;
}

.review-card-modern.featured .reviewer-meta span {
  color: #F5E6CA;
  opacity: 0.7;
}

.review-card-modern.featured .avatar-circle {
  background: #4A2E14;
  color: #F5E6CA;
}

.review-card-modern.featured .decor-quote {
  color: #4A2E14;
  opacity: 1;
}

.review-card-modern.featured .review-card-footer {
  border-top-color: rgba(245, 230, 202, 0.1);
}

@media (max-width: 900px) {
  .reviews-grid-new {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .reviews-grid-new {
    grid-template-columns: 1fr;
  }

  .trust-summary-bar {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .trust-divider {
    display: none;
  }

  .testimonials-title-geo {
    font-size: 2.2rem;
  }
}


/* ════════════════════════════════════════════
   CONTACT / CTA (ELITE REDESIGN)
   ════════════════════════════════════════════ */
.contact-cta {
  position: relative;
  padding: 120px 0;
  background: var(--text-dark);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(44, 26, 14, 0.85), rgba(44, 26, 14, 0.9)), url("images/cta_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.6;
}

.cta-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid var(--gold-pale);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--brown);
  margin: 16px 0 24px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 40px;
}

.trust-pill-container {
  display: flex;
  gap: 20px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-pale);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  border: 1px solid var(--gold-pale);
}

.cta-buttons {
  text-align: center;
  padding-left: 40px;
  border-left: 1px solid var(--border);
}

.cta-action-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.btn-whatsapp-elite {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #25D366;
  color: #fff;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-elite:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
  background: #22c35e;
}

.wa-icon-box {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-secondary-links {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.cta-secondary-links a {
  color: var(--brown);
  font-weight: 600;
  text-decoration: underline;
}

.cta-sep {
  opacity: 0.3;
}

@media (max-width: 992px) {
  .contact-cta {
    padding: 80px 0;
  }

  .cta-card {
    padding: 48px 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .cta-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-buttons {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }

  .btn-whatsapp-elite {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .cta-secondary-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .btn-whatsapp-elite {
    gap: 10px;
  }
}


.delivery-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.delivery-info span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   FOOTER ILLUSTRATION
   ════════════════════════════════════════════ */
.footer-divider {
  width: 100%;
  line-height: 0;
  background: var(--cream);
  overflow: hidden;
}

.footer-img {
  width: 100%;
  height: auto;
  display: block;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
/* ════════════════════════════════════════════
    FOOTER REDESIGN — PIXEL PERFECT
    ════════════════════════════════════════════ */
.footer-new {
  background: #2C1A0E;
  /* Deep earthy brown */
  padding: 0;
  color: #C4B08A;
  /* Muted tan text from image */
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Subtle background glow effect behind the contact section */
.footer-new::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
}

.footer-divider-gold {
  height: 2px;
  width: 100%;
  background: #E8A020;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1.2fr;
  gap: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.footer-logo-text {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #E8A020;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-tagline-new {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #C4B08A;
  margin-bottom: 35px;
  max-width: 280px;
}

.social-icons-circular {
  display: flex;
  gap: 15px;
}

.social-btn-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #6B4C2A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4B08A;
  transition: all 0.3s ease;
}

.social-btn-circle:hover {
  border-color: #E8A020;
  color: #E8A020;
}

.footer-heading-geo {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #E8A020;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links-new {
  list-style: none;
  padding: 0;
}

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

.footer-links-new a {
  color: #C4B08A;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links-new a:hover {
  color: #E8A020;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 1rem;
}

.footer-contact-info svg {
  color: #E8A020;
}

/* WhatsApp CTA Card exactly as in image */
.footer-wa-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.wa-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.wa-text-link {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
}

.wa-text-link span {
  font-size: 0.75rem;
  font-weight: 400;
}

.wa-text-link strong {
  font-size: 1rem;
  font-weight: 700;
}

/* Bottom Bar */
.footer-bottom-new {
  background: rgba(0, 0, 0, 0.1);
  padding: 35px 0;
  border-top: 1px solid rgba(107, 76, 42, 0.2);
  position: relative;
  z-index: 2;
}

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

.copyright-muted {
  font-size: 0.9rem;
  color: rgba(196, 176, 138, 0.4);
}

.gold-text {
  color: #E8A020;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(196, 176, 138, 0.4);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: #E8A020;
}

.footer-decorative-leaf {
  position: absolute;
  bottom: -40px;
  right: -40px;
  color: #6B4C2A;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ════════════════════════════════════════════
   FLOATING WHATSAPP
   ════════════════════════════════════════════ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  z-index: 999;
  transition: all .3s ease;
  animation: waBounce 2s ease-in-out 3s 3;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .65);
}

@keyframes waBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════ */
/* Reveal classes are centralized at the end of the file */

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 40px;
    gap: 40px;
  }

  .hero-img {
    width: 300px;
  }

  .floater-1,
  .floater-2,
  .floater-3 {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
  }

  .nav-desktop-links {
    display: none !important;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    display: none !important;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
  }

  .logo {
    margin-bottom: 0;
    width: auto;
    display: flex;
    justify-content: flex-start;
  }

  .hamburger {
    display: flex;
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
    min-height: unset;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-img {
    width: 240px;
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }



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

  .product-card.featured {
    transform: scale(1);
  }

  .product-card.featured:hover {
    transform: translateY(-10px);
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us-text .section-title {
    text-align: center;
  }

  .image-frame img {
    height: 280px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .benefit-item {
    padding: 32px 0;
    border: none;
    border-bottom: 1px dashed var(--border);
    transition: none;
    background: transparent !important;
  }

  .benefit-num {
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
  }

  .benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
  }

  .benefit-item:last-child {
    border-bottom: none;
  }

  .process-steps {
    flex-direction: column;
    gap: 16px;
  }

  .step-item {
    padding: 16px;
  }

  .process-visual {
    margin-top: 40px;
    width: 100%;
  }

  .process-main-img {
    height: 300px;
    object-fit: cover;
  }

  /* Mobile Reveal Safety */
  .reveal-left {
    transform: translateX(-20px);
  }

  .reveal-right {
    transform: translateX(20px);
  }

  .reveal {
    transform: translateY(20px);
  }

  .reveal-stagger>* {
    transform: translateY(10px);
  }
}

.step-arrow {
  transform: rotate(90deg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 0;
}

.testimonial-card {
  padding: 20px 15px;
}

.testimonial-text {
  font-size: 0.72rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.quote-icon {
  font-size: 2rem;
  top: 5px;
  left: 8px;
}

.testimonial-stars {
  font-size: 0.6rem;
  margin-bottom: 8px;
}

.customer-footer {
  padding-top: 12px;
  gap: 8px;
}

.customer-avatar {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
}

.customer-meta strong {
  font-size: 0.7rem;
}

.verified-tag {
  font-size: 0.55rem;
}

.cta-inner {
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.contact-details {
  align-items: center;
}

.delivery-info {
  flex-direction: row;
  justify-content: center;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-brand {
  text-align: center;
}

.footer-brand .footer-logo {
  justify-content: center;
}

.social-links {
  justify-content: center;
}

.footer-col {
  text-align: center;
}
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════════
   STAGGERED REVEAL
   ════════════════════════════════════════════ */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: 0.6s;
}

/* ════════════════════════════════════════════
   REVEAL ON SCROLL
   ════════════════════════════════════════════ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}





/* ════════════════════════════════════════════
   OUR STORY (ELITE FLOATING CARD)
   ════════════════════════════════════════════ */
.why-us {
  position: relative;
  padding: 80px 0;
  min-height: auto;
  /* Allow content to define height */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--text-dark);
}

.story-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("images/story_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.story-floating-card {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 5%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 60px 80px;
  /* Increased padding */
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border-left: 8px solid var(--gold);
}

.story-card-content {
  text-align: left;
}

.story-divider {
  width: 50px;
  height: 4px;
  background: var(--gold);
  margin: 16px 0 24px;
}

.story-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 24px;
}

.story-body p {
  font-size: 16px;
  /* High legibility minimum */
  color: #2C1A0E;
  /* Darkened for high contrast */
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-footer {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.story-footer-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-icon {
  font-size: 1.8rem;
}

.story-footer-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.story-footer-item span {
  font-size: 0.8rem;
  color: var(--text-mid);
}

@media (max-width: 992px) {
  .why-us {
    padding: 80px 24px;
    min-height: auto;
    display: block;
    /* Fix flex min-width overflow */
  }

  .story-floating-card {
    padding: 32px 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    hyphens: none;
    /* Prevent ugly mid-word breaks */
  }

  .story-card-content .section-title {
    font-size: 1.75rem;
    /* Further reduced to fit long words */
    line-height: 1.3;
  }

  .story-footer {
    flex-direction: column;
    gap: 20px;
  }
}

.step-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.step-item:hover {
  transform: translateX(10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.process-visual {
  position: relative;
}

.process-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}

.process-label {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--brown);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-visual {
    order: -1;
  }
}

/* ════════════════════════════════════════════
   MASTER RESPONSIVE LOCKDOWN
   ════════════════════════════════════════════ */
@media (max-width: 850px) {
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }

  html,
  body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
  }

  .nav-left,
  .nav-center,
  .nav-right,
  .nav-desktop-links,
  .btn-shop-header,
  .whatsapp-btn {
    display: none !important;
  }

  .nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important;
    width: 100% !important;
  }

  .logo {
    display: flex !important;
    width: auto !important;
  }

  .hamburger {
    display: flex !important;
  }

  .reveal-left,
  .reveal-right {
    transform: translateX(0) !important;
    opacity: 0;
  }

  .reveal-left.visible,
  .reveal-right.visible {
    opacity: 1 !important;
  }
}