﻿/* SVADA LOADER */
/* SVADA LOADER */
#svada-loader{position:fixed;inset:0;z-index:9999;background:var(--teal);display:flex;align-items:center;justify-content:center;pointer-events:none;}
.loader-inner{position:relative;display:flex;flex-direction:column;align-items:center;gap:14px;}
.loader-fade{animation:loaderOut 0.5s ease forwards 2.6s;}
@keyframes loaderOut{to{opacity:0;visibility:hidden}}
@keyframes boxPop{from{transform:scale(0.5) translateY(20px);opacity:0}to{transform:scale(1) translateY(0);opacity:1}}
@keyframes loaderFadeUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
@keyframes fillBar{to{width:100%}}

/* STACK: Fruits Behind Cup Rim */
.box-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  animation:boxPop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
  position:relative;
}
.box-img{
  width:160px;
  display:block;
  position:relative;
  z-index:10; /* cup is in front */
}
.fruits-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  margin-top: -40px; /* sit behind the top rim */
  z-index: 5; /* behind the cup */
}

.f-row{
  display:flex;
  justify-content:center;
  position:relative;
}
.r1{ z-index: 5; margin-bottom: -28px; }
.r2{ z-index: 4; margin-bottom: -28px; }
.r3{ z-index: 3; margin-bottom: -28px; }
.r4{ z-index: 2; }

.fruit{
  width:40px;
  height:40px;
  object-fit:contain;
  opacity:0;
  transform:translateY(-160px);
  margin: 0 -12px;
}

/* Landing Sequence (Bottom to Top) */
.f7, .f8, .f9, .f10 { animation: fruitDrop 0.5s ease-out forwards 0.5s; }
.f4, .f5, .f6       { animation: fruitDrop 0.5s ease-out forwards 0.65s; }
.f2, .f3           { animation: fruitDrop 0.5s ease-out forwards 0.8s; }
.f1                { animation: fruitDrop 0.5s ease-out forwards 0.95s; }

@keyframes fruitDrop{
  0%  {opacity:0;transform:translateY(-160px)}
  20% {opacity:1;}
  100%{opacity:1;transform:translateY(0)} 
}

.loader-brand{font-family:'Playfair Display',Georgia,serif;font-size:2.2rem;font-weight:700;letter-spacing:0.25em;color:var(--dark);animation:loaderFadeUp 0.5s ease 1s both;}
.loader-bar-track{width:140px;height:3px;background:rgba(255,255,255,0.2);border-radius:2px;overflow:hidden;animation:loaderFadeUp 0.5s ease 1.1s both;}
.loader-bar-fill{height:100%;width:0;background:linear-gradient(90deg,#F472B6,#F59E0B,#A78BFA);border-radius:2px;animation:fillBar 1.4s ease 1.1s both;}
/* END SVADA LOADER */
/* END SVADA LOADER */
/* ============================================
   SVADA  TASTES & FLAVOURS
   Sea-green luxury brand website
   ============================================ */

/* ---------- RESET & BASE ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #1a9e82;
  --teal-dark:  #0d6e5a;
  --teal-deep:  #074d3f;
  --teal-light: #e0f5ef;
  --teal-mid:   #2ec4a5;
  --gold:       #f0a500;
  --gold-light: #ffd166;
  --cream:      #faf8f3;
  --white:      #ffffff;
  --dark:       #0a1a16;
  --text:       #1a2e28;
  --text-muted: #4a6b60;
  --marble1:    #e8f5ef;
  --marble2:    #d0ece3;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 4px 20px rgba(10,80,60,.10);
  --shadow-md:  0 12px 40px rgba(10,80,60,.18);
  --shadow-lg:  0 24px 80px rgba(10,80,60,.24);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
  color: var(--dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 800; }
h3 { font-size: 1.4rem; font-weight: 700; }
em { color: var(--teal); font-style: italic; }

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 1rem;
}
.section-tag.center { text-align: center; }
.section-title { margin-bottom: 1.2rem; }
.section-title.center { text-align: center; }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}
.section-sub.center { text-align: center; margin: 0 auto 2.5rem; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(26,158,130,.35);
  
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,158,130,.45);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 2px solid rgba(26,158,130,.3);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-order {
  display: inline-flex; align-items: center;
  background: var(--gold);
  color: var(--dark);
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s;
  
}
.btn-order:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ---------- ANIMATIONS ---------- */
@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-20px) rotate(1deg); }
}
@keyframes floatYSlow {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulseRing {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.08); opacity: 0.15; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { height: 0; opacity: 1; }
  80%  { height: 48px; opacity: 0.5; }
  100% { height: 48px; opacity: 0; }
}

.float-anim      { animation: floatY 5s ease-in-out infinite; }
.float-anim-slow { animation: floatYSlow 7s ease-in-out infinite; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.22s; }
.reveal:nth-child(4) { transition-delay: 0.32s; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0d5c4a; /* New Brand Green Shade */
  color: #fff;
  z-index: 1000;
  height: 35px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: announcementMarquee 30s linear infinite;
  width: max-content;
}

.announcement-track span {
  padding: 0 4rem;
  display: inline-block;
}

@keyframes announcementMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 35px; left: 0; right: 0; z-index: 900;
  background: var(--teal);
  transition: box-shadow 0.3s;
}
.nav::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V60c120,0,180-40,300-40s180,40,300,40,180-40,300-40,180,40,300,40V0Z' fill='%231a9e82'/%3E%3C/svg%3E");
  background-size: 400px 20px;
  background-repeat: repeat-x;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.18); }
.nav-inner {
  max-width: 1380px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;   /* reduced vertical padding */

  gap: 2rem;
  overflow: visible;

  height: 55px;
}
.logo-img {
  height: 185px; /* Increased from 150px */
  width: auto;
  border-radius: 0;
  object-fit: contain;
  border: none;
  background: transparent;
  margin-left: -80px;
  margin-top: -16px;
  margin-bottom: -16px;
}

.nav-links {
  display: flex; gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  
}
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: auto; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none;  padding: 4px;
}
/* --- Hamburger button (always visible on desktop too, right side) --- */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  transform: translateX(20px);
}
.hamburger:hover { background: rgba(255,255,255,0.22); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
}

/* --- Overlay backdrop --- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

/* --- Slide-in panel --- */
.mobile-menu,
.mobile-menu *,
.mobile-menu-links,
.mobile-menu-links a,
.dropdown-trigger,
.dropdown-content a {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
}

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 999;
  width: 320px; max-width: 85vw;
  background: #0d5c4a;
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.25);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

/* Panel top header */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: none !important;
}
.mobile-menu-header img {
  height: 44px; width: auto;
}
.menu-close-btn {
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
  font-size: 1.2rem; transition: background 0.2s;
}
.menu-close-btn:hover { background: rgba(255,255,255,0.2); }

/* Nav links inside panel */
.mobile-menu-links {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 1.5rem 0;
}
.mobile-menu-links a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.88);
  padding: 1.1rem 1.8rem !important;
  border-bottom: none !important;
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.mobile-menu-links a:hover {
  color: #fff;
  padding-left: 2.2rem !important;
  background: rgba(255,255,255,0.06);
}

/* Aggressively remove ALL dot decorators and pseudo-elements */
.mobile-menu-links *::before,
.mobile-menu-links *::after,
.mobile-menu-links a::before,
.mobile-menu-links a::after {
  content: none !important;
  display: none !important;
}

/* CTA button at bottom of panel */
.mobile-menu-footer {
  padding: 1.5rem 1.8rem 2rem;
  border-top: none !important;
}
.mobile-menu-footer .btn-order {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 0.9rem 1.5rem;
}

/* Staggered link reveal animation */
.mobile-menu.open .mobile-menu-links a {
  animation: menuLinkIn 0.35s both;
}
.mobile-menu.open .mobile-menu-links a:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { animation-delay: 0.26s; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { animation-delay: 0.32s; }

@keyframes menuLinkIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hide desktop nav links on mobile */
@media (max-width: 900px) {
  .hero { padding: 90px 1.5rem 4rem; }
  .hero-content {
    margin: 0 auto !important;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-right { width: 100%; }           /* ← add this */
  .hero-product-img { width: min(280px, 75vw); }  /* ← slightly smaller */
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat { padding: 0 1rem; }
}

/* Mobile Menu Dropdown Styles */
.mobile-dropdown {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.dropdown-trigger {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 0.75rem;
  align-items: center;
  cursor: pointer;
  width: 100%;
  padding: 1.1rem 1.8rem !important;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-content a {
  padding-left: 2.8rem !important;
  font-size: 1.1rem !important;
  border-bottom: none !important;
}

.mobile-dropdown.active .dropdown-content {
  max-height: 200px;
}

.mobile-dropdown.active .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
  margin-right: 0 !important;
  margin-left: 0.2rem;
}

.mobile-dropdown.active .dropdown-content {
  max-height: 200px; /* Expands the accordion */
}

.mobile-dropdown.active .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
  margin-right: 0 !important;
  margin-left: 0.2rem;
}


/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 2rem 4rem;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 248, 243, 0.55) 0%, rgba(250, 248, 243, 0.35) 45%, rgba(250, 248, 243, 0.02) 100%);
  z-index: 0;
}

.hero-content {
  max-width: 1280px;
  margin: 0;      /* ← this is centering the whole content box */
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;   /* text is already "left" but only within that centered box */
}

.hero-text-wrap {
  max-width: 580px;
  text-align: left;
}

.hero-headline {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s var(--transition) 0.2s both;
  color: #fff;
  font-size: clamp(3.4rem, 7.5vw, 6.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-headline em { color: #fff; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s var(--transition) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--transition) 0.6s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--teal-dark);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 0;
  background: var(--teal);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 1.5rem 4rem;
  }
  .hero-overlay {
    background: radial-gradient(circle, rgba(250, 248, 243, 0.95) 0%, rgba(250, 248, 243, 0.85) 60%, rgba(250, 248, 243, 0.7) 100%);
  }
  .hero-content {
    justify-content: center;
  }
  .hero-text-wrap {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-sub {
    margin: 0 auto 2rem;
  }
  .hero-actions {
    justify-content: center;
  }
}

/* ---------- MARQUEE ---------- */
.marquee-strip {
  background: var(--teal);
  overflow: hidden; padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.95);
  padding: 0 3rem;
  flex-shrink: 0;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: 8rem 2rem;
  background: var(--cream);
  position: relative;
}
.about-content-centered {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}
.about-heading.center { text-align: center; }

.about-subheading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--teal-dark);
  margin: 3rem 0 1.5rem;
  text-align: center;
}

.about-text-wrap {
  max-width: 800px;
  margin-bottom: 2rem;
}

/* ---------- COMPARISON CARD ---------- */
.comparison-card {
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  margin-top: 2.5rem;
}
.comparison-card h3 {
  color: var(--gold-light);
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.comp-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}
.comp-row:last-child { border-bottom: none; }
.comp-row.header {
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--teal-mid);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.comp-icon {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-align: left;
}
.comp-row span:nth-child(2) {
  color: #fff;
  font-weight: 600;
}
.comp-row span:nth-child(3) {
  color: rgba(255,255,255,0.4);
}

.comp-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.about-para {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.about-para.center { text-align: center; }

.about-highlights.centered {
  display: flex;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  margin: 0 0 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26,158,130,0.1);
  border-bottom: 1px solid rgba(26,158,130,0.1);
}
.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.highlight-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
}
.highlight-item span {
  font-size: 0.9rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.comparison-card.wide {
  width: 100%;
  max-width: 800px;
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.comparison-card h3 {
  color: var(--gold-light);
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.comp-table {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.05rem;
}
.comp-row:last-child { border-bottom: none; }
.comp-row.header {
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--teal-mid);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.comp-icon {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-align: left;
}
.comp-row span:nth-child(2) {
  color: #fff;
  font-weight: 600;
}
.comp-row span:nth-child(3) {
  color: rgba(255,255,255,0.4);
}

.comp-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .about-highlights.centered { gap: 2rem; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .about-highlights.centered { flex-direction: column; align-items: center; gap: 2.5rem; }
  .comp-row { grid-template-columns: 1fr; gap: 0.5rem; text-align: center; }
  .comp-icon { text-align: center; margin-bottom: 0.5rem; }
  .comp-row.header { display: none; }
}

/* ---------- FLAVORS ---------- */
.flavors-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f0faf6 0%, var(--cream) 100%);
}
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.flavor-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
  
  position: relative; overflow: hidden;
}
.flavor-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.5;
  transition: transform 0.4s;
}
.flavor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.flavor-card:hover::before { transform: scale(1.4); }

.flavor-3d-wrap {
  width: 140px; height: 140px;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.flavor-blob {
  display: none;
  position: absolute; inset: 0;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  transition: border-radius 0.5s, transform 0.5s;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.flavor-card:hover .flavor-blob {
  border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
  transform: scale(1.08) rotate(8deg);
}
.flavor-icon {
  font-size: 2rem; z-index: 1; position: relative;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
  transition: transform 0.4s;
}
.flavor-card:hover .flavor-icon { transform: scale(1.2) translateY(-3px); }
.flavor-fruit-img {
  position: absolute;
  width: 178px; height: 178px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  filter: contrast(1.05) saturate(1.1);
  transform: translateY(-2px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.flavor-card:hover .flavor-fruit-img {
  transform: scale(1.06) translateY(-2px);
}
.flavor-info h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.flavor-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.flavor-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* ---------- PRODUCT SHOWCASE ---------- */
.product-showcase {
  background: var(--teal); /* Deep teal from reference image */
  padding: 8rem 2rem;
  position: relative; overflow: hidden;
}
.product-showcase::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    transparent 100px, rgba(255,255,255,0.05) 102px
    ;
  pointer-events: none;
}
.showcase-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
  position: relative; z-index: 2;
  text-align: left;
}
.showcase-text {
  flex: 1;
  min-width: 450px;
  margin-top: 5rem;
}
.showcase-img-wrap {
  flex: 1;
  min-width: 450px;
  margin-bottom: 0;
  margin-top: 5rem;
  position: relative; display: flex;
  justify-content: flex-start; align-items: flex-start;
}
.showcase-text .section-title { 
  color: #ffffff; 
  text-align: left;
  margin-left: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.showcase-text .section-tag { 
  color: var(--gold-light); 
  text-align: left;
  margin-left: 0;
}
.showcase-intro {
  color: rgba(255,255,255,0.9);
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
  text-align: justify;
}
.sv-ingredient-grid {
  width: 100%;
  margin-top: 4rem;
}
.floating-badge {
  position: absolute; top: -10px; right: -10px; z-index: 5;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.05em;
  text-transform: uppercase; text-align: center;
  padding: 0.65rem 1.2rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(240,165,0,.4);
}
.showcase-img {
  width: 100%;
  max-width: 650px;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .showcase-inner {
    flex-direction: column;
    text-align: center;
  }
  .showcase-text, .showcase-img-wrap {
    min-width: 100%;
    margin-top: 0;
  }
  .showcase-text .section-title, .showcase-text .section-tag {
    text-align: center;
  }
  .showcase-intro {
    text-align: center;
  }
}
/* ---------- DETAILED COMPARISON (CLEAR) ---------- */
.comparison-card-clear {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.comp-table-detailed {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.comp-row-detailed {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1.2fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(10, 80, 60, 0.06);
}
.comp-row-detailed:last-child { border-bottom: none; }

.comp-row-detailed.header {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--teal-light);
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}

.comp-col { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.comp-col.label-col {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.6rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.gelato-info strong { color: var(--teal); font-size: 1.3rem; margin-bottom: 0.4rem; }
.icecream-info strong { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 0.4rem; }
.comp-col p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); max-width: 240px; }

/* ---------- HEALTH BAND ---------- */
.health-band {
  background: #0d5c4a;
  padding: 0.85rem 0;
  overflow: hidden;
  display: flex; align-items: center;
}
.health-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeHealth 45s linear infinite;
}
.health-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 2.5rem;
}
.health-icon-box {
  width: 36px; height: 36px;
  background: #f8e9d4; /* Cream circle background from reference */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #d64a51; /* Reddish-pink icon color from reference */
  padding: 8px;
}
.health-icon-box svg {
  width: 100%; height: 100%;
}
.health-text {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@keyframes marqueeHealth {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.comp-icon-box {
  width: 54px; height: 54px;
  background: #f8e9d4;
  color: #d64a51; /* Reddish-pink icon color from reference */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  padding: 12px;
}
.comp-icon-box.cold { color: #5B9EF5; background: #eef6ff; }
.comp-icon-box.gauge { width: 80px; height: auto; border-radius: 0; background: transparent; padding: 0; }
.comp-icon-box svg { width: 100%; height: 100%; }

.veg-badge, .non-veg-badge {
  width: 50px; height: 50px;
  border: 2px solid;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 900;
}
.veg-badge { border-color: #228b22; color: #228b22; background: #f0fff0; }
.veg-badge span::before { content: '●'; font-size: 1.4rem; display: block; color: #228b22; }
.non-veg-badge { border-color: #cc0000; color: #cc0000; background: #fff0f0; }
.non-veg-badge span::before { content: '●'; font-size: 1.4rem; display: block; color: #cc0000; }

@media (max-width: 900px) {
  .comparison-card-clear { padding: 3rem 1.5rem; }
  .comp-row-detailed { grid-template-columns: 1fr; gap: 1.5rem; }
  .comp-row-detailed.header { display: none; }
  .comp-col.label-col { 
    order: -1; width: fit-content; margin: 0 auto;
  }
  .comp-col p { max-width: 100%; }
}

/* ---------- PROCESS ---------- */
.process-section {
  padding: 8rem 2rem;
  position: relative; overflow: hidden;
  color: #fff; /* Ensure text is readable on video */
}

.process-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.process-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 92, 74, 0.75); /* Brand green with transparency */
  z-index: 1;
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-section .section-title, 
.process-section .section-tag {
  color: #fff;
}

.process-section .section-title em {
  color: var(--gold-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.process-step:hover,
.process-step:active {
  background: rgba(255, 255, 255, 0.05); /* More transparent */
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.process-step h3,
.process-step p {
  color: #fff;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15); /* Subtile number */
  line-height: 1;
  margin-bottom: 1.2rem;
}

/* Discrete connecting lines between cards */
.process-step:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8rem; /* Spans the gap */
  width: 8rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3) 20%, rgba(255,255,255,0.3) 80%, transparent);
  opacity: 0.4;
  pointer-events: none;
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  .process-steps { gap: 2.5rem; }
  .process-step:not(:nth-child(3n))::after { right: -2.5rem; width: 2.5rem; }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .process-step:not(:nth-child(3n))::after { display: none; }
  /* Custom logic for 2-column connectors if needed, but clean stack is often better */
}

@media (max-width: 600px) {
  .process-section { padding: 6rem 1.5rem; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-step { padding: 2.2rem 1.5rem; }
  .step-num { font-size: 3.8rem; }
}

/* ---------- FRIES ---------- */
.fries-section {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #fff8f0, var(--cream));
}
.fries-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 5rem;
}
.fries-img-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.fries-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.15) 0%, transparent 70%);
}
.fries-img {
  width: min(560px, 90vw);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.fries-badge {
  position: absolute; top: 0; right: 0;
  background: var(--teal);
  color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: 100px;
  animation: floatYSlow 3s ease-in-out infinite;
}
.sauce-chips {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.5rem;
}
.sauce-chip {
  padding: 0.5rem 1.1rem; border-radius: 100px;
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 0.82rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

@media (max-width: 900px) {
  .fries-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .sauce-chips { justify-content: center; }
}

/* ---------- CTA ---------- */

.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 8rem 0 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-marble {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    transparent 120px, rgba(255,255,255,0.06) 122px
    ;
}
.cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}

.cta-inner { position: relative; z-index: 2; padding: 0 2rem; }
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff; margin-bottom: 1.2rem;
}
.partner-intro {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 1.5rem 0 0.5rem;
  position: relative;
  z-index: 2;
}
.cta-title em { color: var(--gold-light); }
.cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem; margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cta-btn { font-size: 1.05rem; padding: 1rem 2.5rem; }
.cta-btn.btn-primary { background: var(--gold); color: var(--dark); }
.cta-btn.btn-primary:hover { background: var(--gold-light); }
.cta-btn.btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-btn.btn-ghost:hover { border-color: #fff; color: #fff; }
.cta-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem; font-family: 'Syne', sans-serif;
  letter-spacing: 0.04em;
}
/* ---------- SIZE / PRICING CARDS ---------- */
.size-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3rem;
}

.size-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 160px;
  position: relative;
  transition: transform 0.3s var(--transition), background 0.3s;
}

.size-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
}

.size-card.featured {
  background: rgba(255,255,255,0.16);
  border-color: var(--gold-light);
  transform: scale(1.06);
}
.size-card.featured:hover { transform: scale(1.06) translateY(-6px); }

.size-tag {
  position: absolute;
  top: -14px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.size-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.size-gms {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.size-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  margin-top: 0.3rem;
}

@media (max-width: 600px) {
  .size-cards { gap: 1rem; }
  .size-card { min-width: 130px; padding: 1.5rem 1.2rem; }
  .size-card.featured { transform: scale(1); }
  .size-card.featured:hover { transform: translateY(-6px); }
  .size-price { font-size: 1.5rem; }
}
/* ---------- STATS BAR ---------- */
/* ---------- PARTNER MARQUEE ---------- */
.partner-marquee {
  background: #ffffff;
  padding: 0.5rem 0;
  overflow: hidden;
  display: flex; align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.partner-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.partner-logo-img {
  height: clamp(55px, 7vw, 80px);
  width: auto;
  object-fit: contain;
  margin: 0 4rem;
  display: inline-block;
  vertical-align: middle;
  mix-blend-mode: multiply;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.partner-logo-img:hover {
  transform: scale(1.08);
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  background: #0d5c4a; /* New Brand Green Shade */
  padding: 8rem 2rem 4rem;
  color: #ffffff;
}
.footer::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,120V60c120,0,180-40,300-40s180,40,300,40,180-40,300-40,180,40,300,40V120Z' fill='%230d5c4a'/%3E%3C/svg%3E");
  background-size: 400px 20px;
  background-repeat: repeat-x;
  z-index: 10;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem; /* Tight, cohesive vertical flow */
}

.footer-logo {
  height: 150px; /* Increased from 95px */
  width: auto;
  margin-left: -4px; /* Optical alignment */
  margin-bottom: 0.1rem;
}

.fssai-info {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align items to the start (left) */
  gap: 5px; /* Reduced gap for closer vertical spacing */
  margin-top: 0; /* Adjusted for better spacing */
  margin-bottom: 0.4rem; /* Spacing before social row */
  /* flex-wrap: wrap; removed as column layout handles wrapping differently */
}

.fssai-logo {
  height: 30px; /* Adjust size as needed */
  width: auto;
  object-fit: contain;
  filter: invert(80%) grayscale(100%) brightness(150%); /* To make it visible on dark background */
}

.fssai-license-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin: 0; /* Override default p margin */
}

.footer-social-row {
  display: flex;
  gap: 0.6rem;
  margin: 0; /* Let parent gap handle it */
}

.footer-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.2rem;
}

.social-circle-btn, .contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s var(--transition);
}

.social-circle-btn svg, .contact-info-icon svg {
  width: 16px;
  height: 16px;
}

.social-circle-btn:hover {
  transform: translateY(-3px);
  border-color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.contact-numbers-stack {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-info-item a {
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  opacity: 0.85;
}

.contact-info-item a:hover {
  opacity: 1;
}

.contact-info-item a:hover {
  color: var(--teal-light) !important;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block; color: rgba(255,255,255,0.7);
  font-size: 0.95rem; margin-bottom: 0.6rem; line-height: 1.6;
  transition: color 0.2s; 
}
.footer-col a:hover { color: var(--teal-mid); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  font-family: 'Syne', sans-serif;
}
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}


/* ---------- SVADA PREMIUM COMPARISON SECTION ---------- */
.sv-compare-premium {
  background-color: var(--cream);
  padding: 8rem 0;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.sv-container-slim {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 900px) {
  .sv-compare-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Block 1: Intro */
.sv-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.sv-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sv-intro h2 em {
  color: var(--teal);
  font-style: italic;
}

/* Block 5: Comparison List (Minimalist Redesign) */
.sv-compare-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-top: 4rem;
}

.sv-compare-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
}

.sv-card-icon-box {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 0.2rem;
  overflow: hidden; /* clip any overhanging image parts */
}
.sv-comp-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0; /* No padding to maximize size */
}
.sv-card-icon-box svg {
  width: 50px;
  height: 50px;
}

.veg-icon-simple {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1;
}

.sv-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.sv-card-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .sv-compare-premium { padding: 6rem 0; }
  .sv-compare-card { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 1.2rem;
    padding: 1.5rem;
  }
  .sv-card-icon-box { width: 100px; height: 100px; }
  .sv-card-icon-box svg { width: 45px; height: 45px; }
  .sv-card-content h3 { font-size: 1.2rem; }
}

/* Block 4: Ingredient Grid */
.sv-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  width: 100%;
}
.sv-ing-card {
  position: relative;
  background-color: #333; /* Fallback */
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.sv-ing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* Semi-transparent overlay */
  z-index: 0;
  transition: background 0.3s ease;
}

.sv-ing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sv-ing-card:hover::before {
  background: rgba(0,0,0,0.6);
}

.sv-ing-name {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.sv-ing-desc {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .sv-ingredient-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .sv-ingredient-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .sv-ingredient-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}


/* ============================================
   CART SYSTEM
   ============================================ */

/* --- Nav actions wrapper + cart icon button --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateX(20px);
}
.nav-actions .hamburger { transform: none; }

.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  color: #fff;
}
.cart-toggle:hover { background: rgba(255,255,255,0.22); }
.cart-toggle:active { transform: scale(0.92); }
.cart-icon { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--transition);
}
.cart-count.bump { animation: cartBump 0.35s var(--transition); }
@keyframes cartBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* --- Add to Cart button on size cards --- */
/* .qty-btn / .qty-val base rules below are still used by the in-drawer qty controls (.cart-item-qty) */
.qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.qty-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.qty-btn:active { transform: scale(0.9); }
.qty-val {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  min-width: 18px;
  text-align: center;
}

.add-to-cart-btn {
  margin-top: 1.3rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 100px;
  border: none;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.add-to-cart-btn:hover { background: var(--gold-light); }
.add-to-cart-btn:active { transform: scale(0.96); }
.add-to-cart-btn.added { background: var(--teal-mid); color: #fff; }

/* --- View Cart button: hidden until the cart has at least one item --- */
.view-cart-btn {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--transition), transform 0.35s var(--transition);
}
.view-cart-btn.show {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}


/* --- "Added to cart" toast note under CTA buttons --- */
.cta-note#added-toast {
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 0.5rem;
}

/* --- Cart overlay --- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(7, 25, 20, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--transition), visibility 0.3s;
  z-index: 998;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

/* --- Cart drawer --- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--cream);
  box-shadow: -12px 0 40px rgba(0,0,0,0.25);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(10,26,22,0.08);
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin: 0;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(10,26,22,0.06);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-close:hover { background: rgba(10,26,22,0.12); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
  margin-top: 2.5rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(10,26,22,0.08);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.cart-item-meta {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  margin-bottom: 0.6rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.cart-item-qty .qty-btn {
  width: 24px; height: 24px;
  border-color: rgba(10,26,22,0.18);
  background: rgba(10,26,22,0.04);
  color: var(--text);
  font-size: 0.95rem;
}
.cart-item-qty .qty-btn:hover { background: rgba(10,26,22,0.1); }
.cart-item-qty .qty-val { color: var(--text); font-size: 0.9rem; }

.cart-item-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
}
.rupee {
  font-family: inherit;
  font-weight: inherit;
  font-size: 1em;
}
.cart-item-remove {
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
  flex-shrink: 0;
}
.cart-item-remove:hover { color: #d9534f; }

.cart-drawer-footer {
  flex-shrink: 0;
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(10,26,22,0.08);
  background: #fff;
}
.cart-field { margin-bottom: 0.8rem; }
.cart-field label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.cart-field label span { text-transform: none; font-weight: 500; letter-spacing: 0; }
.cart-field input, .cart-field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(10,26,22,0.15);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  resize: vertical;
}
.cart-field input:focus, .cart-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0.9rem 0 1rem;
}
#cart-total { color: var(--teal-dark); }

.cart-place-order {
  width: 100%;
  padding: 0.95rem 1rem;
  font-size: 1rem;
}
.cart-place-order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
  font-family: 'DM Sans', sans-serif;
}

body.cart-open { overflow: hidden; }

@media (max-width: 480px) {
  .cart-drawer { width: 100%; }
}