/* === MERGED FROM design-system.css === */
/* ==========================================================================
   GWellth Foods v2.0 — Design System Variables & Base Resets
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Mono:wght@300;400&family=DM+Serif+Display&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors - Himalayan Editorial Luxury */
  --color-valley-green:    hsl(152, 38%, 14%);   /* Deep Himalayan pine — primary brand */
  --color-wild-honey:      hsl(36, 88%, 50%);    /* Raw honey amber — gold accent */
  --color-ghee-cream:      hsl(38, 40%, 96%);    /* Warm off-white background */
  --color-stone-oat:       hsl(34, 18%, 91%);    /* Card/section containers */
  
  --color-turmeric-glow:   hsl(44, 95%, 60%);    /* Highlight / sale badges */
  --color-terracotta:      hsl(14, 62%, 47%);    /* CTA buttons, urgency alerts */
  --color-ragi-brown:      hsl(25, 35%, 32%);    /* Secondary text, dividers */
  --color-mist-white:      hsl(0, 0%, 99%);      /* Clean card backgrounds */
  
  /* Functional Colors */
  --color-gut-green:       hsl(142, 52%, 42%);   /* Gut health tag */
  --color-diabetic-blue:   hsl(210, 60%, 45%);   /* Diabetic-friendly tag */
  --color-immunity-orange: hsl(28, 90%, 54%);    /* Immunity tag */
  
  /* Fonts */
  --font-display:   'Cormorant Garamond', serif;   /* Luxury display headings */
  --font-heading:   'DM Serif Display', serif;     /* Section headers */
  --font-body:      'Jost', sans-serif;            /* Body copy — modern Indian */
  --font-mono:      'DM Mono', monospace;          /* Ingredient specs, data */

  /* UI Tokens */
  --shadow-card:    0 4px 20px hsla(152, 40%, 10%, 0.05);
  --shadow-hover:   0 12px 36px hsla(152, 40%, 10%, 0.12);
  --shadow-kart:    -8px 0 48px hsla(0, 0%, 0%, 0.15);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-spring: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-ghee-cream);
  color: var(--color-valley-green);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.25;
}

/* UI Elements */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 9999px; /* pill */
  transition: var(--transition-smooth);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-ghee-cream);
}

.btn-primary:hover {
  background-color: hsl(14, 62%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(206, 66, 32, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-valley-green);
  border: 1px solid var(--color-valley-green);
}

.btn-secondary:hover {
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  transform: translateY(-2px);
}

.btn-secondary-outline {
  border: 1px solid var(--color-ragi-brown);
  color: var(--color-ragi-brown);
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-secondary-outline:hover {
  background-color: var(--color-stone-oat);
  color: var(--color-valley-green);
  border-color: var(--color-valley-green);
}

/* Generic Layout Wrapper */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-valley-green);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--color-ragi-brown);
}

/* Scrollbar Sizing */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-ghee-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--color-stone-oat);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-ragi-brown);
}


/* === MERGED FROM layout.css === */
/* ==========================================================================
   GWellth Foods v2.0 — Navigation & Layout Stylesheet
   ========================================================================== */

/* Announcement Bar */
.announcement-bar {
  background-color: var(--color-valley-green);
  color: var(--color-wild-honey);
  text-align: center;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
}

/* Header & Megamenu */
.main-header {
  background-color: rgba(245, 243, 237, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 40, 30, 0.06);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-g {
  background-color: var(--color-valley-green);
  color: var(--color-wild-honey);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  margin-right: 8px;
  font-size: 1.3rem;
}

.logo-text {
  font-family: var(--font-heading);
  color: var(--color-valley-green);
}

.logo-sub {
  font-size: 0.9rem;
  color: var(--color-wild-honey);
  margin-left: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-anchor {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-valley-green);
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-anchor:hover {
  color: var(--color-terracotta);
}

.chevron-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  fill: currentColor;
  opacity: 0.7;
}

/* Megamenu Grid: Shop by Category */
.nav-item {
  position: relative;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 900px;
  background-color: var(--color-mist-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(20, 40, 30, 0.08);
}

.nav-item:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.megamenu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  text-align: left;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.megamenu-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-terracotta);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-stone-oat);
  padding-bottom: 8px;
  margin-bottom: 5px;
}

.megamenu-subcol {
  margin-bottom: 5px;
}

.subcol-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ragi-brown);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 8px;
}

.megamenu-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-ghee-cream);
  transition: var(--transition-smooth);
  align-items: flex-start;
}

.megamenu-item:hover {
  background-color: var(--color-stone-oat);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.megamenu-item.sub-item {
  padding: 8px 10px;
}

.item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.item-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-valley-green);
  margin-bottom: 2px;
}

.item-text p {
  font-size: 0.72rem;
  color: var(--color-ragi-brown);
  line-height: 1.35;
}

/* Megamenu Goals: Shop by Goal */
.megamenu-goals {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 900px;
  background-color: var(--color-mist-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(20, 40, 30, 0.08);
}

.nav-item:hover .megamenu-goals {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.goals-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.goal-card {
  text-align: center;
  padding: 15px 10px;
  background-color: var(--color-ghee-cream);
  border-radius: var(--border-radius-sm);
}

.goal-card:hover {
  background-color: var(--primary-emerald-ultra-light);
  transform: translateY(-2px);
  border-color: rgba(20,40,30,0.06);
}

.goal-emoji-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.goal-card h4 {
  font-size: 0.92rem;
  color: var(--color-valley-green);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.goal-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Header tools */
.header-tools {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn, .cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-valley-green);
}

.search-btn:hover, .cart-btn:hover {
  background-color: var(--color-stone-oat);
}

.tool-icon {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-terracotta);
  color: var(--color-ghee-cream);
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer structure */
.main-footer {
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-wild-honey);
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 1rem;
  color: var(--color-wild-honey);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-column a {
  opacity: 0.8;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--color-wild-honey);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Megamenu Health Goal items */
.megamenu-goals-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.megamenu-goal-item {
  display: flex;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-ghee-cream);
  transition: var(--transition-smooth);
  align-items: flex-start;
  margin-bottom: 2px;
}
.megamenu-goal-item:hover {
  background-color: var(--color-stone-oat);
  transform: translateY(-1px);
}
.goal-emoji {
  font-size: 1.25rem;
}
.goal-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-valley-green);
  margin-bottom: 2px;
}
.goal-text p {
  font-size: 0.78rem;
  color: var(--color-ragi-brown);
  line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .megamenu, .megamenu-goals {
    width: 90vw;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* === MERGED FROM components.css === */
/* ==========================================================================
   GWellth Foods v2.0 — UI Component Library Stylesheet
   ========================================================================== */

/* 1. Hero & Banner structures */
.hero-section {
  position: relative;
  background-color: var(--color-valley-green);
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(22, 44, 33, 0.9) 0%, rgba(22, 44, 33, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  margin-left: 8%;
  position: relative;
  z-index: 2;
  color: var(--color-ghee-cream);
}

.hero-badge {
  color: var(--color-wild-honey);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
}

/* 2. Traceability & Promise Row */
.traceability-row {
  background-color: var(--color-stone-oat);
  padding: 24px 20px;
  border-bottom: 1px solid rgba(20, 40, 30, 0.05);
}

.traceability-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trace-item {
  display: flex;
  align-items: flex-start;
}

.trace-icon {
  font-size: 2.2rem;
  margin-right: 16px;
  background-color: var(--color-mist-white);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.trace-info h3 {
  font-size: 1.05rem;
  color: var(--color-valley-green);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.trace-info p {
  font-size: 0.82rem;
  color: var(--color-ragi-brown);
}

/* 3. Product Cards & Asymmetric Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--color-mist-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid rgba(22, 44, 33, 0.04);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-badge.sugar { background-color: var(--color-wild-honey); color: var(--color-valley-green); }
.product-badge.luxury { background-color: var(--color-terracotta); }

.product-image-container {
  background-color: var(--color-ghee-cream);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rating {
  font-size: 0.85rem;
  color: var(--color-wild-honey);
  margin-bottom: 8px;
}

.rating span {
  color: var(--color-ragi-brown);
  margin-left: 4px;
}

.product-card h3 {
  font-size: 1.25rem;
  color: var(--color-valley-green);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.product-card p.description {
  font-size: 0.88rem;
  color: var(--color-ragi-brown);
  margin-bottom: 16px;
  flex-grow: 1;
}

.variant-selector {
  margin-bottom: 16px;
}

.variant-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-valley-green);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.variant-options {
  display: flex;
  gap: 8px;
}

.variant-opt {
  font-size: 0.8rem;
  border: 1px solid var(--color-stone-oat);
  padding: 5px 12px;
  border-radius: 9999px;
  background-color: var(--color-ghee-cream);
  color: var(--color-valley-green);
  font-weight: 500;
}

.variant-opt.active {
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  border-color: var(--color-valley-green);
}

/* The Whole Truth bold clean-label ingredient badge */
.twt-ingredient-badge {
  background-color: var(--primary-emerald-ultra-light);
  border: 1px solid rgba(22, 44, 33, 0.06);
  padding: 10px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.78rem;
  color: var(--color-valley-green);
  line-height: 1.45;
  margin-bottom: 15px;
}

.twt-ingredient-badge span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-valley-green);
  display: block;
  margin-bottom: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.twt-ingredient-badge strong {
  color: var(--color-terracotta);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(22, 44, 33, 0.08);
  padding-top: 16px;
  margin-top: auto;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-valley-green);
}

.price-original {
  font-size: 0.88rem;
  text-decoration: line-through;
  color: var(--color-ragi-brown);
  margin-right: 4px;
  font-weight: 400;
}

.btn-card-add {
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  border: 1px solid var(--color-valley-green);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
}

.btn-card-add:hover {
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
}

/* 4. Wellness Box Hub Cards */
.box-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0 80px;
}

.box-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.box-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background-color: var(--color-mist-white);
}

.box-card-img {
  font-size: 4.5rem;
  background-color: var(--color-ghee-cream);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.target-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-valley-green);
  background-color: var(--primary-emerald-ultra-light);
  padding: 4px 10px;
  border-radius: 9999px;
  align-self: flex-start;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.target-badge.executive { background-color: hsl(36, 88%, 92%); color: hsl(36, 80%, 35%); }
.target-badge.senior { background-color: hsl(14, 62%, 92%); color: var(--color-terracotta); }
.target-badge.women { background-color: hsl(320, 50%, 93%); color: hsl(320, 50%, 45%); }
.target-badge.brain { background-color: hsl(200, 50%, 93%); color: hsl(200, 50%, 45%); }
.target-badge.detox { background-color: hsl(180, 50%, 93%); color: hsl(180, 50%, 45%); }
.target-badge.heart { background-color: hsl(0, 50%, 93%); color: hsl(0, 50%, 45%); }
.target-badge.sleep { background-color: hsl(260, 50%, 93%); color: hsl(260, 50%, 45%); }

.box-card h3 {
  font-size: 1.35rem;
  color: var(--color-valley-green);
  margin-bottom: 6px;
  font-weight: 600;
}

.box-card p.tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-ragi-brown);
  margin-bottom: 20px;
  flex-grow: 1;
}

.box-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(22, 44, 33, 0.08);
  padding-top: 12px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.price-range {
  color: var(--color-terracotta);
}

.box-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.combo-box {
  border-color: rgba(22, 44, 33, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 85%, var(--primary-emerald-ultra-light) 100%);
}

/* 5. Slide-Out Cart drawer */
.kart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 44, 33, 0.4);
  backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.kart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mini-kart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  background-color: var(--color-mist-white);
  z-index: 110;
  box-shadow: var(--shadow-kart);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-spring);
}

.mini-kart-drawer.active {
  transform: translateX(0);
}

.kart-header {
  padding: 20px;
  border-bottom: 1px solid var(--color-stone-oat);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kart-header h2 {
  font-size: 1.4rem;
  color: var(--color-valley-green);
}

.close-kart-btn {
  color: var(--color-ragi-brown);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-kart-btn:hover {
  background-color: var(--color-ghee-cream);
  color: var(--color-valley-green);
}

.close-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Cart milestones progressive track */
.milestone-bar-container {
  background-color: var(--primary-emerald-ultra-light);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(22, 44, 33, 0.05);
}

.milestone-status {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-valley-green);
  margin-bottom: 8px;
  line-height: 1.4;
}

.progress-track {
  height: 6px;
  background-color: var(--color-stone-oat);
  border-radius: 3px;
  position: relative;
  margin: 10px 0;
}

.progress-fill {
  height: 100%;
  background-color: var(--color-valley-green);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.marker {
  position: absolute;
  top: -8px;
  font-size: 1.1rem;
  transform: translateX(-50%);
}

.milestone-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--color-ragi-brown);
  font-weight: 500;
}

/* Cart Item List */
.kart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-kart-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.empty-kart-state h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.empty-kart-state p {
  font-size: 0.82rem;
  color: var(--color-ragi-brown);
  margin-bottom: 24px;
}

.kart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-stone-oat);
  margin-bottom: 20px;
}

.kart-item-img {
  background-color: var(--color-ghee-cream);
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 1px solid rgba(22, 44, 33, 0.05);
}

.kart-item-details {
  flex-grow: 1;
}

.kart-item-details h4 {
  font-size: 0.95rem;
  color: var(--color-valley-green);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.kart-item-meta {
  font-size: 0.75rem;
  color: var(--color-ragi-brown);
  margin-bottom: 10px;
}

.kart-item-ops {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-qty-adjuster {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-stone-oat);
  padding: 2px;
  border-radius: 9999px;
  background-color: var(--color-ghee-cream);
}

.iq-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}

.iq-btn:hover {
  background-color: var(--color-stone-oat);
}

.iq-val {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 10px;
}

.kart-item-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-valley-green);
}

.remove-item-btn {
  font-size: 0.75rem;
  color: var(--color-terracotta);
  font-weight: 600;
}

.remove-item-btn:hover {
  text-decoration: underline;
}

/* Smart cross-sell trigger matrix */
.kart-upsell-section {
  background-color: hsl(36, 88%, 98%);
  border-top: 1px dashed var(--color-wild-honey);
  border-bottom: 1px dashed var(--color-wild-honey);
  padding: 15px 20px;
}

.upsell-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(36, 80%, 35%);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.upsell-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.upsell-emoji {
  font-size: 1.8rem;
  background-color: var(--color-mist-white);
  padding: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.upsell-details h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.upsell-details p {
  font-size: 0.75rem;
  color: var(--color-ragi-brown);
  margin-bottom: 5px;
}

.btn-upsell-add {
  background-color: var(--color-wild-honey);
  color: var(--color-valley-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}

.btn-upsell-add:hover {
  background-color: var(--color-wild-honey-light);
}

/* Cart calculation footer */
.kart-footer {
  padding: 20px;
  background-color: var(--color-ghee-cream);
  border-top: 1px solid var(--color-stone-oat);
}

.subtotal-row, .shipping-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-ragi-brown);
  margin-bottom: 8px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-valley-green);
  margin-bottom: 15px;
  border-top: 1px solid rgba(22, 44, 33, 0.08);
  padding-top: 10px;
}

.subscription-global-toggle {
  margin-bottom: 15px;
  background-color: var(--color-mist-white);
  padding: 12px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-stone-oat);
}

.switch-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.toggle-label {
  color: var(--color-valley-green);
  line-height: 1.4;
}

.btn-checkout {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.checkout-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.75rem;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

/* 6. Modal Popup core */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 44, 33, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-mist-white);
  border-radius: var(--border-radius-lg);
  max-width: 820px;
  width: 90%;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-spring);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--color-ragi-brown);
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-valley-green);
}

/* Modal split view */
.modal-contents-header {
  border-bottom: 1px solid var(--color-stone-oat);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.modal-contents-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-valley-green);
  margin-bottom: 5px;
}

.modal-contents-header p.tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-ragi-brown);
}

.modal-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.modal-products-column h4, .modal-spec-column h4 {
  font-size: 1rem;
  color: var(--color-valley-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  font-weight: 700;
}

.modal-products-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-product-item {
  display: flex;
  gap: 12px;
}

.modal-prod-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-prod-info h5 {
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-valley-green);
  margin-bottom: 3px;
}

.modal-prod-info p {
  font-size: 0.78rem;
  color: var(--color-ragi-brown);
  line-height: 1.4;
  margin-bottom: 2px;
}

/* Modal spec widgets */
.box-spec-sidebar {
  background-color: var(--color-ghee-cream);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-stone-oat);
}

.box-spec-sidebar ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--color-ragi-brown);
}

.box-spec-sidebar li {
  margin-bottom: 12px;
  line-height: 1.45;
}

.modal-verify-badge {
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  border: 1px solid rgba(20,40,30,0.06);
}

.box-spec-spotlight {
  background-color: hsl(36, 88%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-wild-honey);
  color: var(--color-valley-green);
}

.box-spec-spotlight p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

/* Elder accessibility widgets */
.elder-friendly-header h2 {
  font-size: 2.2rem;
  color: var(--color-terracotta);
}

.elder-friendly-split .modal-prod-info h5 {
  font-size: 1.15rem;
}

.elder-friendly-split .modal-prod-info p {
  font-size: 0.95rem;
  color: var(--color-valley-green);
}

.box-spec-accessibility {
  background-color: hsl(14, 62%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--color-terracotta);
}

.box-spec-accessibility p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

.box-spec-matrix {
  background-color: hsl(320, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(320, 50%, 90%);
}

.matrix-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.matrix-cell {
  background-color: var(--color-mist-white);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.82rem;
  border: 1px solid rgba(22,44,33,0.05);
}

.box-spec-brain {
  background-color: hsl(200, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(200, 50%, 90%);
}

.box-spec-brain p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

.box-spec-calendar {
  background-color: hsl(180, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(180, 50%, 90%);
}

.calendar-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.cal-day {
  background-color: var(--color-mist-white);
  border: 1px solid var(--color-stone-oat);
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ragi-brown);
}

.cal-day.done {
  background-color: var(--primary-emerald-ultra-light);
  color: var(--color-valley-green);
  border-color: rgba(22, 44, 33, 0.15);
}

.cal-day.current {
  background-color: var(--color-wild-honey);
  color: var(--color-valley-green);
  border-color: var(--color-wild-honey);
}

.box-spec-calendar p {
  font-size: 0.78rem;
  color: var(--color-ragi-brown);
}

.box-spec-heart {
  background-color: hsl(0, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(0, 50%, 90%);
}

.box-spec-heart p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-ragi-brown);
  margin-top: 10px;
}

.box-spec-sleep {
  background-color: hsl(260, 50%, 98%);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid hsl(260, 50%, 90%);
}

.sleep-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.sleep-chk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  cursor: pointer;
}

.sleep-chk input {
  margin-top: 3px;
}

.sleep-subt {
  font-size: 0.78rem;
  color: var(--color-ragi-brown);
}

.modal-footer-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-stone-oat);
  padding-top: 20px;
}

.modal-price-box {
  font-size: 1.1rem;
  font-weight: 500;
}

.modal-bold-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-valley-green);
}

/* Toast Notifications */
.notification-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.notification-toast.active {
  transform: translateY(0);
  opacity: 1;
}

/* Floating WhatsApp button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: var(--color-ghee-cream);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99;
}

.whatsapp-icon-svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}


/* === MERGED FROM animations.css === */
/* ==========================================================================
   GWellth Foods v2.0 — Motion & Keyframe Animations Stylesheet
   ========================================================================== */

/* 1. Page Load Fade-Ups */
.fade-up-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger classes */
.stagger-1 { animation-delay: 60ms; }
.stagger-2 { animation-delay: 120ms; }
.stagger-3 { animation-delay: 180ms; }
.stagger-4 { animation-delay: 240ms; }
.stagger-5 { animation-delay: 300ms; }

/* 2. Scroll Reveal Utility (Intersection Observer) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 3. Pulse Animation (WhatsApp Floating Button) */
.pulse-anim {
  animation: floatPulse 8s infinite ease-in-out;
}

@keyframes floatPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
}

/* 4. Text Scroller Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-valley-green);
  padding: 10px 0;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 30px;
  color: var(--color-ghee-cream);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* ==========================================================================
   GWellth Custom Styles: Multi-step Checkout, Search Bar, and Page Layout
   ========================================================================== */

/* Page container */
#gwellth-page-wrapper {
  background-color: var(--color-ghee-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--color-valley-green);
  font-family: var(--font-display);
}

/* Header search bar layout */
.header-search-container {
  position: relative;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.header-search-input {
  border: 1px solid rgba(27, 59, 43, 0.15);
  background-color: var(--color-mist-white);
  padding: 8px 16px 8px 36px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--color-valley-green);
  font-family: var(--font-display);
  width: 200px;
  transition: all 0.3s ease;
}
.header-search-input:focus {
  outline: none;
  width: 280px;
  border-color: var(--color-wild-honey);
  box-shadow: 0 0 0 3px rgba(208, 156, 42, 0.1);
}
.header-search-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: rgba(27, 59, 43, 0.5);
  pointer-events: none;
}

/* Multi-step checkout in Cart Drawer */
.checkout-step-container {
  display: none;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.checkout-step-container.active {
  display: flex;
}

.checkout-form-header {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(27, 59, 43, 0.08);
  padding-bottom: 12px;
}
.checkout-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-valley-green);
  margin-bottom: 4px;
}
.checkout-form-header p {
  font-size: 0.85rem;
  color: var(--color-ragi-brown);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-valley-green);
}
.form-group input, .form-group textarea {
  padding: 10px 14px;
  border: 1px solid rgba(27, 59, 43, 0.15);
  border-radius: var(--border-radius-md);
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-valley-green);
  background-color: var(--color-mist-white);
  transition: all 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-wild-honey);
  box-shadow: 0 0 0 3px rgba(208, 156, 42, 0.08);
}
.form-row {
  display: flex;
  gap: 12px;
}
.col-6 {
  flex: 1;
}

.checkout-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.checkout-form-actions .btn {
  flex: 1;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Payment Method Cards */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 5px;
}
.payment-method-card {
  border: 1px solid rgba(27, 59, 43, 0.15);
  border-radius: var(--border-radius-md);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background-color: var(--color-stone-oat);
  transition: all 0.2s ease;
  position: relative;
}
.payment-method-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.payment-method-card .payment-icon {
  font-size: 1.5rem;
}
.payment-method-card .payment-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-valley-green);
}
.payment-method-card.active {
  border-color: var(--color-wild-honey);
  background-color: var(--color-mist-white);
  box-shadow: 0 4px 12px rgba(208, 156, 42, 0.12);
}

/* Payment Details Sections */
.payment-details-container {
  background-color: var(--color-stone-oat);
  border-radius: var(--border-radius-md);
  padding: 15px;
  border-left: 3px solid var(--color-wild-honey);
  font-size: 0.9rem;
}
.payment-info-text {
  color: var(--color-valley-green);
  line-height: 1.4;
  margin-bottom: 10px;
}
.mock-qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.05);
}
.qr-box {
  width: 140px;
  height: 140px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="black"/><rect x="70" y="10" width="20" height="20" fill="black"/><rect x="10" y="70" width="20" height="20" fill="black"/><rect x="15" y="15" width="10" height="10" fill="white"/><rect x="75" y="15" width="10" height="10" fill="white"/><rect x="15" y="75" width="10" height="10" fill="white"/><rect x="35" y="35" width="30" height="30" fill="black"/><rect x="40" y="40" width="20" height="20" fill="white"/><rect x="30" y="10" width="10" height="10" fill="black"/><rect x="50" y="20" width="10" height="10" fill="black"/><rect x="10" y="50" width="10" height="10" fill="black"/><rect x="80" y="50" width="10" height="10" fill="black"/><rect x="50" y="80" width="10" height="10" fill="black"/><rect x="80" y="80" width="10" height="10" fill="black"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.mock-qr-code span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-ragi-brown);
}

/* Order Success Screen */
.order-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-valley-green);
  color: var(--color-ghee-cream);
  font-size: 2rem;
  line-height: 64px;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: scaleUp 0.4s ease-out;
}
.order-success-screen h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-valley-green);
  margin-bottom: 12px;
}
.order-success-screen p {
  color: var(--color-ragi-brown);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}
.order-summary-box {
  background-color: var(--color-stone-oat);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(27, 59, 43, 0.06);
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-valley-green);
}
.order-summary-row strong {
  font-weight: 600;
}

/* Animation */
@keyframes scaleUp {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Back button styles */
.back-to-items-btn, .back-to-customer-btn {
  border-color: rgba(27, 59, 43, 0.2);
  color: var(--color-valley-green);
}
.back-to-items-btn:hover, .back-to-customer-btn:hover {
  background-color: rgba(27, 59, 43, 0.05);
}

/* Registered Office details section in About page */
.registered-office-section {
  padding: 60px 20px;
  background-color: var(--color-stone-oat);
  border-top: 1px solid rgba(27, 59, 43, 0.05);
}
.office-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-mist-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--color-wild-honey);
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .office-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}
.office-icon {
  font-size: 3.5rem;
}
.office-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-valley-green);
  margin-bottom: 10px;
}
.office-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-ragi-brown);
}

/* Form group rows helper */
.form-row .form-group {
  margin-bottom: 0;
}
