/* =====================================================
   VARN Industries — Premium Roasted Makhana
   Main Stylesheet
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --orange: #F97316;
  --orange-dark: #EA6B0E;
  --orange-light: #FED7AA;
  --yellow: #FACC15;
  --yellow-dark: #EAB308;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --charcoal: #1A1A1A;
  --charcoal-2: #2A2A2A;
  --gray: #4A4A4A;
  --gray-light: #8A8A8A;
  --border: #E5E5E5;
  --shadow: 0 4px 24px rgba(249,115,22,0.12);
  --shadow-lg: 0 12px 48px rgba(249,115,22,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.accent { color: var(--orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  width: 100%;
  border: none;
  cursor: pointer;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-light), #FDE68A);
  color: var(--orange-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-head);
}

.logo-v {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.logo-arn {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
}
.navbar.scrolled .logo-arn { color: var(--charcoal); }
.navbar:not(.scrolled) .logo-arn { color: var(--white); }
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .cart-btn { color: var(--white); }

.logo-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--orange); background: rgba(249,115,22,0.08); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  transition: var(--transition);
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-btn:hover { background: var(--orange); color: var(--white); transform: scale(1.05); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--yellow);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D1A0E 50%, #1A0A00 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--yellow);
  bottom: 100px; left: -50px;
  animation: float2 6s ease-in-out infinite;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--orange);
  top: 40%; left: 40%;
  animation: float1 10s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(15px) scale(0.97); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.2;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.title-accent {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 1s 0.5s ease forwards;
}
@keyframes underlineIn {
  to { transform: scaleX(1); }
}

.hero-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 20px;
}
.pill-dot { color: var(--orange); }

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-btns .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero-btns .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; }
.hero-img-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(250,204,21,0.25), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-img-circle {
  width: 340px; height: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 20s linear infinite;
}
.makhana-hero-svg { width: 280px; height: 280px; }

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.float-tag {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.tag-1 { top: 20%; left: -10px; animation: float2 4s ease-in-out infinite; }
.tag-2 { top: 10%; right: -10px; animation: float1 5s ease-in-out infinite; }
.tag-3 { bottom: 20%; right: -20px; animation: float2 6s ease-in-out infinite 1s; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-visual { }
.about-img-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
}
.about-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(249,115,22,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(250,204,21,0.1) 0%, transparent 50%);
}
.about-icon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-icon-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about-icon-card:hover {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.about-icon { font-size: 2.2rem; }
.about-icon-card span:last-child {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.highlight-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.highlight-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.highlight-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.highlight-item p { color: var(--gray); font-size: 0.88rem; }

/* =====================================================
   PRODUCTS
   ===================================================== */
.products {
  background: linear-gradient(180deg, #FFF7ED 0%, var(--off-white) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}

.product-img-wrap {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition);
}
.product-card:hover .product-img-bg { transform: scale(1.05); }

.product-emoji {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}
.product-card:hover .product-emoji { transform: scale(1.1) rotate(-5deg); }

.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.product-sub {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.sku-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.sku-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sku-btn {
  padding: 6px 12px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.sku-btn:hover { border-color: var(--orange); color: var(--orange); }
.sku-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--off-white);
}
.qty-btn {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--orange); color: var(--white); }
.qty-num {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.add-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  height: 38px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.add-cart-btn:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(249,115,22,0.4); }
.add-cart-btn.added { background: linear-gradient(135deg, #22C55E, #16A34A); }

/* =====================================================
   WHY US
   ===================================================== */
.why-us {
  background: var(--charcoal);
}
.why-us .section-title { color: var(--white); }
.why-us .section-eyebrow { background: rgba(249,115,22,0.2); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }
.why-us .section-sub { color: rgba(255,255,255,0.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.15);
}
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--off-white); }

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--orange);
  opacity: 0.1;
  line-height: 1;
}
.testi-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.featured-testi {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  border-color: var(--charcoal);
}
.featured-testi .testi-text { color: rgba(255,255,255,0.8); }
.featured-testi .testi-author strong { color: var(--white); }
.featured-testi .testi-author span { color: rgba(255,255,255,0.45); }

.testi-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-text {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--gray-light);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--orange); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  background: #FFF7ED;
}
.faq-answer.open {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-card strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.contact-card a,
.contact-card span {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 500;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.whatsapp-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); background: var(--white); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-head);
  margin-bottom: 16px;
}
.footer-logo .logo-arn { color: var(--white); }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-wa:hover { color: #34D399; }

.footer-nav h4,
.footer-flavours h4,
.footer-payment h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--orange); }

.footer-flavours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-flavours li {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.upi-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.upi-icon { font-size: 1.6rem; }
.upi-badge strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.upi-badge span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}
.footer-note {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* =====================================================
   CART DRAWER
   ===================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  font-size: 1rem;
  color: var(--charcoal);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-close:hover { background: var(--orange); color: var(--white); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  text-align: center;
}
.cart-empty-icon { font-size: 4rem; opacity: 0.3; }
.cart-empty h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--charcoal);
}
.cart-empty p { color: var(--gray-light); font-size: 0.88rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-emoji {
  font-size: 2rem;
  background: #FFF7ED;
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.cart-item-sku {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 6px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cart-qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.cart-qty-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  min-width: 20px;
  text-align: center;
}
.cart-item-right { text-align: right; }
.cart-item-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.cart-remove {
  font-size: 0.75rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}
.cart-remove:hover { color: #EF4444; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-label {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--gray);
  font-size: 0.9rem;
}
.cart-total-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--charcoal);
}

.cart-actions { display: flex; flex-direction: column; gap: 10px; }
.cart-clear-btn {
  background: none;
  border: none;
  color: var(--gray-light);
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  padding: 8px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.cart-clear-btn:hover { color: #EF4444; }

/* =====================================================
   PAYMENT MODAL
   ===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.payment-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1200;
  width: min(520px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.payment-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--orange); color: var(--white); }

.modal-body { padding: 24px; }

.payment-amount-display {
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  color: var(--white);
}
.payment-amount-display .amount-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.payment-amount-display .amount-val {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
}
.payment-amount-display .amount-brand {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--off-white);
  border-radius: 14px;
  margin-bottom: 20px;
}
#qrCode canvas, #qrCode img { border-radius: 8px; }
.qr-upi-id {
  font-size: 0.85rem;
  color: var(--gray);
  font-family: var(--font-head);
}
.qr-upi-id strong { color: var(--charcoal); }

.payment-steps {
  background: #FFF7ED;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.payment-steps h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.payment-steps ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-steps li {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.payment-actions { display: flex; flex-direction: column; gap: 12px; }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    z-index: 999;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; width: 100%; padding: 12px 16px; }
  .hamburger { display: flex; }
  .navbar:not(.scrolled) .hamburger span { background: var(--white); }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    padding: 100px 24px 80px;
    gap: 40px;
    text-align: center;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img-wrap { width: 280px; height: 280px; }
  .hero-img-circle { width: 240px; height: 240px; }
  .float-tag { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .section-header { margin-bottom: 36px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  z-index: 2000;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast.success { background: #22C55E; }
.toast.error { background: #EF4444; }


/* =====================================================
   AUTH MODAL (Login & Signup)
   ===================================================== */
.auth-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1200;
  width: min(480px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.auth-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

.auth-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.auth-modal-header h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
}

.auth-modal-body {
  padding: 32px 24px;
}

.auth-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.auth-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.auth-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.auth-form-group input {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}
.auth-form-group input:focus {
  border-color: var(--orange);
  background: var(--white);
}

.auth-error {
  background: #FEE2E2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.auth-success {
  background: #DCFCE7;
  border: 1px solid #BBFBEE;
  color: #16A34A;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.auth-submit-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.45);
}
.auth-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gray-light);
  font-size: 0.85rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-footer-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 16px;
}

/* =====================================================
   CHECKOUT MODAL
   ===================================================== */
.checkout-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1200;
  width: min(600px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkout-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.checkout-header h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
}

.checkout-body {
  padding: 32px 24px;
}

.checkout-section {
  margin-bottom: 28px;
}
.checkout-section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.checkout-form-group input,
.checkout-form-group textarea {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-body);
  resize: vertical;
}
.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.checkout-summary {
  background: linear-gradient(135deg, var(--off-white), #F5F5F0);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}
.checkout-summary-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray);
}
.checkout-summary-item strong {
  color: var(--charcoal);
}
.checkout-summary-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout-place-order-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.checkout-place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.45);
}
.checkout-place-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.checkout-cancel-btn {
  background: none;
  border: 2px solid var(--border);
  color: var(--charcoal);
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.checkout-cancel-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* =====================================================
   ORDER SUCCESS PAGE
   ===================================================== */
.order-success-container {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--off-white), #F5F5F0);
  padding: 80px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-success-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 48px;
  max-width: 600px;
  text-align: center;
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 24px;
  box-shadow: 0 12px 40px rgba(249,115,22,0.3);
}

.success-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.order-id-box {
  background: linear-gradient(135deg, var(--off-white), #F5F5F0);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}
.order-id-label {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.order-id-value {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--orange);
  word-break: break-all;
}

.order-details-box {
  background: var(--off-white);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}
.order-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.order-detail-item:last-child {
  border-bottom: none;
}
.order-detail-label {
  color: var(--gray-light);
  font-weight: 500;
}
.order-detail-value {
  color: var(--charcoal);
  font-weight: 600;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.success-action-btn {
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.success-action-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.success-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.45);
}
.success-action-secondary {
  background: none;
  border: 2px solid var(--border);
  color: var(--charcoal);
}
.success-action-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* =====================================================
   ORDER HISTORY PAGE
   ===================================================== */
.order-history-container {
  min-height: 100vh;
  background: var(--off-white);
  padding: 100px 24px 40px;
}

.order-history-header {
  max-width: 1000px;
  margin: 0 auto 40px;
}
.order-history-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.order-history-subtitle {
  font-size: 1rem;
  color: var(--gray);
}

.order-history-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}
.order-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.order-card-id {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.order-card-date {
  font-size: 0.85rem;
  color: var(--gray-light);
}
.order-card-status {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-light), #FDE68A);
  color: var(--orange-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-card-items {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray);
}
.order-item-name {
  color: var(--charcoal);
  font-weight: 500;
}

.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.order-card-total {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.order-card-actions {
  display: flex;
  gap: 8px;
}
.order-action-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.order-action-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: linear-gradient(135deg, var(--orange-light), #FDE68A);
}

.order-history-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.order-history-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.order-history-empty-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.order-history-empty-text {
  color: var(--gray);
  margin-bottom: 24px;
}
.order-history-empty-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.order-history-empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.45);
}

/* =====================================================
   NAVBAR AUTH BUTTON
   ===================================================== */
.auth-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.logout-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}

.login-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
  .auth-modal,
  .checkout-modal,
  .payment-modal {
    width: 95vw;
    max-height: 95vh;
  }
  
  .order-success-card {
    padding: 32px 24px;
  }
  
  .success-title {
    font-size: 1.5rem;
  }
  
  .order-history-container {
    padding: 80px 16px 40px;
  }
  
  .order-card {
    padding: 16px;
  }
  
  .order-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .order-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .auth-modal,
  .checkout-modal,
  .payment-modal {
    width: 98vw;
    max-height: 98vh;
  }
  
  .order-success-card {
    padding: 24px 16px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .success-title {
    font-size: 1.3rem;
  }
  
  .order-id-value {
    font-size: 1rem;
  }
  
  .checkout-form,
  .auth-form {
    gap: 12px;
  }
}

/* ---- Payment Options ---- */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--off-white);
}

.payment-option:hover {
  border-color: var(--orange);
  background: var(--white);
}

.payment-option input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
}

.payment-option input[type="radio"]:checked + .payment-option-content .payment-option-title {
  color: var(--orange);
}

.payment-option:has(input[type="radio"]:checked) {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(249,115,22,0.1);
}

.payment-option-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.payment-option-desc {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announce-bar {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  color: var(--white);
  padding: 10px 24px;
  text-align: center;
  position: relative;
  z-index: 999;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.announce-icon { font-size: 1rem; }
.announce-bar strong { color: var(--yellow); }
.announce-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}
.announce-close:hover { color: var(--white); }
.announce-bar.hidden { display: none; }

/* adjust hero padding when announce bar is visible */
body:not(.no-announce) .hero { padding-top: 38px; }

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.trust-icon { font-size: 1rem; }
.trust-sep { color: var(--border); font-size: 1.2rem; }

@media (max-width: 768px) {
  .trust-sep { display: none; }
  .trust-items { gap: 12px; }
  .trust-item { font-size: 0.78rem; }
}

/* =====================================================
   FILTER BAR
   ===================================================== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}

/* =====================================================
   PRODUCT CARD — COMPARE CHECKBOX
   ===================================================== */
.product-compare-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gray-light);
  font-family: var(--font-head);
  font-weight: 500;
  cursor: pointer;
}
.product-compare-wrap input[type="checkbox"] {
  accent-color: var(--orange);
  width: 14px; height: 14px;
  cursor: pointer;
}
.product-card.hidden-filter { display: none; }

/* =====================================================
   COMPARE TRAY
   ===================================================== */
.compare-tray {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 24px;
  z-index: 900;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}
.compare-tray-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.compare-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--yellow);
}
.compare-chips {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}
.compare-chip {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.compare-go-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.compare-go-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.compare-clear-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}
.compare-clear-btn:hover { border-color: white; color: white; }

/* =====================================================
   COMPARE MODAL
   ===================================================== */
.compare-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1200;
  width: min(900px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.compare-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}
.compare-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.compare-modal-header h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
}
.compare-modal-body {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.compare-col {
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.compare-col:hover { border-color: var(--orange); }
.compare-col-head {
  padding: 20px 16px;
  text-align: center;
  font-size: 2.5rem;
}
.compare-col-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  padding: 0 16px 12px;
}
.compare-row {
  padding: 10px 16px;
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare-row-label {
  color: var(--gray-light);
  font-size: 0.7rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-row-val {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.88rem;
}
.compare-add-btn {
  width: calc(100% - 32px);
  margin: 12px 16px;
  padding: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.compare-add-btn:hover { transform: translateY(-2px); }

/* =====================================================
   NUTRITION SECTION
   ===================================================== */
.nutrition { background: var(--white); }
.nutrition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.nutrition-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.nutrition-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.nutrition-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.nut-row {
  display: grid;
  grid-template-columns: 70px 1fr 55px;
  align-items: center;
  gap: 12px;
}
.nut-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--charcoal);
}
.nut-bar-wrap {
  background: var(--border);
  height: 8px;
  border-radius: 50px;
  overflow: hidden;
}
.nut-bar {
  height: 100%;
  width: var(--pct);
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.nut-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--charcoal);
  text-align: right;
}
.nutrition-vs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.vs-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
}
.vs-good {
  background: #DCFCE7;
  color: #16A34A;
}
.nutrition-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ben-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: var(--transition);
}
.ben-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(249,115,22,0.1);
  transform: translateY(-2px);
}
.ben-icon { font-size: 1.5rem; flex-shrink: 0; }
.ben-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
}
.ben-text p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .nutrition-layout { grid-template-columns: 1fr; gap: 32px; }
  .nutrition-benefits { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nutrition-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nutrition-benefits { grid-template-columns: 1fr; }
}

/* =====================================================
   FLAVOUR FINDER QUIZ
   ===================================================== */
.flavour-finder {
  background: linear-gradient(135deg, #FFF7ED, #FFFBEB);
}
.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(249,115,22,0.15);
  overflow: hidden;
}
.quiz-progress-bar {
  height: 5px;
  background: var(--border);
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 0 4px 4px 0;
  transition: width 0.5s ease;
}
.quiz-steps { padding: 40px 36px 0; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.3;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
}
.quiz-opt {
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.quiz-opt:hover {
  border-color: var(--orange);
  background: #FFF7ED;
  color: var(--orange);
  transform: translateX(4px);
}
.quiz-back-wrap {
  padding: 12px 36px 20px;
  border-top: 1px solid var(--border);
}
.quiz-back-btn {
  background: none;
  border: none;
  color: var(--gray-light);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px 0;
  transition: var(--transition);
}
.quiz-back-btn:hover { color: var(--orange); }

.quiz-result-wrap {
  text-align: center;
  padding-bottom: 40px;
}
.quiz-result-emoji {
  font-size: 4rem;
  margin-bottom: 12px;
  display: block;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bounceIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.quiz-result-title {
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.quiz-result-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.quiz-result-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 28px;
}
.quiz-result-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .quiz-steps { padding: 28px 20px 0; }
  .quiz-back-wrap { padding: 12px 20px 16px; }
  .quiz-q { font-size: 1.1rem; }
}

/* =====================================================
   SNACK CALCULATOR
   ===================================================== */
.snack-calc { background: var(--charcoal); }
.snack-calc .section-eyebrow {
  background: rgba(249,115,22,0.2);
  color: var(--orange);
}
.snack-calc .section-title { color: var(--white); }
.snack-calc .section-sub { color: rgba(255,255,255,0.55); }
.calc-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 40px;
}
.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.calc-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.calc-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px 16px;
}
.calc-step-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calc-step-btn:hover { background: var(--orange); color: var(--white); }
.calc-step-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  min-width: 32px;
  text-align: center;
  flex: 1;
}
.calc-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  outline: none;
}
.calc-select option { background: var(--charcoal); color: var(--white); }
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.calc-result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.calc-result-card.highlight {
  border-color: var(--orange);
  background: rgba(249,115,22,0.1);
}
.calc-res-label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.calc-res-val {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
}
.calc-res-val.green { color: #4ADE80; }
.calc-cta {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .calc-inputs { grid-template-columns: 1fr; gap: 20px; }
  .calc-results { grid-template-columns: 1fr; gap: 12px; }
  .calc-wrap { padding: 28px 20px; }
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 800;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.wa-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float:hover .wa-float-tooltip { opacity: 1; }

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  z-index: 800;
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.back-to-top.visible {
  display: flex;
}
.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* =====================================================
   UPDATED FAQ — extra items
   ===================================================== */
/* (existing faq styles already handle these) */

/* =====================================================
   REMOVE TESTIMONIALS — (section removed from HTML)
   ===================================================== */


/* =====================================================
   MY ORDERS PAGE
   ===================================================== */
#orderHistoryContainer {
  min-height: 100vh;
  background: var(--off-white);
  padding: 80px 24px 60px;
}

.orders-page-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 8px;
}
.orders-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 4px;
}
.orders-back-btn:hover { border-color: var(--orange); color: var(--orange); }

.orders-empty-state {
  text-align: center;
  padding: 80px 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
}
.orders-empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.orders-empty-state h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--charcoal); margin-bottom: 8px; }
.orders-empty-state p { color: var(--gray); font-size: 0.95rem; }

/* Order Card V2 */
.order-history-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card-v2 {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: var(--transition);
}
.order-card-v2:hover { border-color: var(--orange); box-shadow: 0 4px 24px rgba(249,115,22,0.12); }

.oc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.oc-header-right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.oc-id {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: 3px;
}
.oc-datetime { font-size: 0.78rem; color: var(--gray-light); }

.oc-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-pending    { background: #FEF3C7; color: #D97706; }
.status-processing { background: #DBEAFE; color: #1D4ED8; }
.status-shipped    { background: #E0F2FE; color: #0369A1; }
.status-delivered  { background: #DCFCE7; color: #16A34A; }
.status-cancelled  { background: #FEE2E2; color: #DC2626; }

.pay-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}
.pay-badge.paid    { background: #DCFCE7; color: #16A34A; }
.pay-badge.cod     { background: #E0F2FE; color: #0369A1; }
.pay-badge.pending { background: #FEF3C7; color: #D97706; }

.oc-items-preview {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.oc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.oc-total-label { font-size: 0.75rem; color: var(--gray-light); font-family: var(--font-head); font-weight: 600; display: block; margin-bottom: 2px; }
.oc-total-val { font-family: var(--font-head); font-weight: 900; font-size: 1.4rem; color: var(--charcoal); }
.oc-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.oc-btn {
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.oc-btn:hover { border-color: var(--orange); color: var(--orange); }
.oc-btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-color: var(--orange);
}
.oc-btn.primary:hover { opacity: 0.9; transform: translateY(-1px); }

/* Payment Tracker Inside Card */
.oc-pay-tracker {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.tracker-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.tracker-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.tracker-step {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gray-light);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.tracker-step.done { border-color: #22C55E; color: #16A34A; background: #DCFCE7; }
.tracker-step.pulse { border-color: var(--orange); color: var(--orange-dark); background: #FFF7ED; animation: pulseStep 1.5s ease-in-out infinite; }
@keyframes pulseStep { 0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.3); } 50% { box-shadow: 0 0 0 6px rgba(249,115,22,0); } }
.tracker-line { flex: 1; height: 2px; background: var(--border); min-width: 16px; }

/* =====================================================
   ORDER DETAIL MODAL
   ===================================================== */
.order-detail-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1300;
  width: min(600px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.order-detail-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}
.odm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.odm-header h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.odm-body { padding: 24px; }
.odm-section { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.odm-section:last-of-type { border-bottom: none; }
.odm-sectiontitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}
.odm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 0.88rem;
  gap: 16px;
}
.odm-row span:first-child { color: var(--gray-light); flex-shrink: 0; font-weight: 500; }
.odm-row strong { color: var(--charcoal); font-weight: 600; text-align: right; word-break: break-word; }
.odm-address strong { max-width: 300px; line-height: 1.5; }
.odm-items { display: flex; flex-direction: column; gap: 10px; }
.odm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: 10px;
}
.odm-item-emoji { font-size: 1.4rem; }
.odm-item-info { flex: 1; }
.odm-item-name { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.odm-item-sku { font-size: 0.78rem; color: var(--gray-light); }
.odm-item-total { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--charcoal); }

.odm-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 12px;
  font-family: var(--font-head);
  font-weight: 700;
  border-top: 2px solid var(--border);
  margin-top: 4px;
  font-size: 1rem;
}
.odm-grand-total { font-size: 1.4rem; color: var(--orange); font-weight: 900; }
.odm-footer-btns { display: flex; gap: 10px; margin-top: 20px; }
.odm-footer-btns .btn { flex: 1; justify-content: center; }

/* =====================================================
   UPI CAPTURE — PAYMENT MODAL ENHANCEMENTS
   ===================================================== */
.upi-app-grid {
  margin-bottom: 20px;
}
.upi-app-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.upi-app-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.upi-app-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 6px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--charcoal);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.upi-app-btn:hover { border-color: var(--orange); background: #FFF7ED; color: var(--orange); transform: translateY(-2px); }
.upi-app-icon { font-size: 1.4rem; }

/* Payment steps */
.pay-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.pay-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
}
.pay-step.done { color: var(--charcoal); }
.pay-step.done .ps-dot { background: #22C55E; color: white; }
.pay-step.active .ps-dot { background: var(--orange); color: white; animation: pulseStep 1.2s ease-in-out infinite; }
.ps-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Auto-confirm wrap */
.auto-confirm-wrap {
  background: #FFF7ED;
  border: 1.5px solid rgba(249,115,22,0.25);
  border-radius: 14px;
  padding: 16px;
  margin-top: 4px;
}
.auto-confirm-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 10px;
}
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.timer-bar-wrap {
  height: 4px;
  background: rgba(249,115,22,0.15);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 14px;
}
.timer-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 50px;
  width: 0%;
  transition: width 4s linear;
}

.btn-success {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}
.btn-success:hover { box-shadow: 0 8px 30px rgba(34,197,94,0.4); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* =====================================================
   MY ORDERS NAV BUTTON
   ===================================================== */
.my-orders-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--off-white), #F5F5F0);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.my-orders-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 768px) {
  .upi-app-row { grid-template-columns: repeat(2, 1fr); }
  .odm-footer-btns { flex-direction: column; }
  .tracker-steps { flex-wrap: wrap; gap: 6px; }
  .tracker-line { display: none; }
  .oc-actions { width: 100%; justify-content: flex-start; }
  .orders-page-top { flex-direction: column; }
}
