/* ==========================================================================
   AAI KA AATA — LUXURY EDITORIAL FOOD WEBSITE (DECENT, WARM & CLEAN PALETTE)
   Mobile-First & Laptop-Optimized Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Decent Color Palette
   -------------------------------------------------------------------------- */
:root {
  /* Decent, Warm & Natural Brand Colors */
  --brand-maroon: #7D1B2C;
  --brand-maroon-dark: #58121E;
  --brand-maroon-light: #9B283D;
  --brand-maroon-soft: #F9ECEF;

  --brand-gold: #C88E2D;
  --brand-gold-dark: #A46F19;
  --brand-gold-light: #E7BA67;
  --brand-gold-soft: #FCF6E8;

  --bg-page: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F4EFE6;
  --bg-surface-card: #FDFBF8;

  --leaf-green: #2E6B3F;
  --leaf-green-light: #EAF4ED;

  --text-primary: #2B1810;
  --text-secondary: #5F4E45;
  --text-muted: #847268;
  --text-light: #A3938A;

  --border-light: rgba(125, 27, 44, 0.10);
  --border-subtle: rgba(43, 24, 16, 0.08);
  --border-gold: rgba(200, 142, 45, 0.35);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(43, 24, 16, 0.04);
  --shadow-sm: 0 4px 12px rgba(43, 24, 16, 0.06);
  --shadow-md: 0 8px 24px rgba(43, 24, 16, 0.08);
  --shadow-lg: 0 16px 40px rgba(43, 24, 16, 0.10);
  --shadow-maroon: 0 8px 25px rgba(125, 27, 44, 0.22);
  --shadow-gold: 0 6px 20px rgba(200, 142, 45, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hindi: 'Rozha One', 'Tiro Devanagari Hindi', serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Typography & Section Heading Styles
   -------------------------------------------------------------------------- */
.font-serif { font-family: var(--font-serif); }
.font-hindi { font-family: var(--font-hindi); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-maroon);
  background: var(--brand-maroon-soft);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(125, 27, 44, 0.15);
}

.eyebrow-gold {
  color: var(--brand-gold-dark);
  background: var(--brand-gold-soft);
  border-color: rgba(200, 142, 45, 0.25);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-title span {
  color: var(--brand-maroon);
}

.section-subtitle {
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  transition: all var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-maroon);
  color: #FFFFFF;
  box-shadow: var(--shadow-maroon);
}

.btn-primary:hover {
  background: var(--brand-maroon-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(125, 27, 44, 0.32);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--brand-maroon);
  border: 1.5px solid var(--brand-maroon);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--brand-maroon-soft);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.btn-call:hover {
  border-color: var(--brand-maroon);
  color: var(--brand-maroon);
  background: var(--brand-maroon-soft);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.02rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-maroon {
  background: var(--brand-maroon-soft);
  color: var(--brand-maroon);
  border: 1px solid rgba(125, 27, 44, 0.2);
}

.badge-gold {
  background: var(--brand-gold-soft);
  color: var(--brand-gold-dark);
  border: 1px solid rgba(200, 142, 45, 0.3);
}

.veg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #2C5F3A;
  border-radius: 2px;
  background: #fff;
  flex-shrink: 0;
}

.veg-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #2C5F3A;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   5. Announcement Bar & Sticky Header
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: var(--bg-surface-alt);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(43, 24, 16, 0.08);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.announcement-items {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  white-space: nowrap;
  overflow: hidden;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.announcement-contact a {
  color: var(--brand-maroon);
  font-weight: 700;
}

.announcement-contact a:hover {
  text-decoration: underline;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43, 24, 16, 0.08);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(43, 24, 16, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-hindi);
  font-size: 1.45rem;
  box-shadow: 0 3px 10px rgba(125, 27, 44, 0.25);
  border: 1.5px solid var(--brand-gold-light);
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-maroon);
  line-height: 1.1;
}

.brand-name span {
  color: var(--brand-gold-dark);
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--brand-maroon);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.mobile-drawer.open {
  display: flex;
}

/* --------------------------------------------------------------------------
   6. Hero Section — Bright, Cinematic & Balanced
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 3.5rem 0 5rem;
  background: radial-gradient(circle at 80% 25%, rgba(200, 142, 45, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 75%, rgba(125, 27, 44, 0.04) 0%, transparent 50%),
              var(--bg-page);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 1.35rem;
}

.hero-title .highlight {
  color: var(--brand-maroon);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.hero-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-maroon-soft);
  color: var(--brand-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-feat-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.hero-feat-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(43, 24, 16, 0.08);
  background: var(--bg-surface);
  transition: transform var(--transition-smooth);
}

.hero-image-card:hover {
  transform: translateY(-4px);
}

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

.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200, 142, 45, 0.25);
  z-index: 3;
}

.pill-top-left {
  top: 8%;
  left: -6%;
}

.pill-bottom-right {
  bottom: 8%;
  right: -6%;
}

.pill-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-maroon-soft);
  color: var(--brand-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.pill-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pill-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Brand Story & Heritage Introduction
   -------------------------------------------------------------------------- */
.brand-intro-section {
  padding: 6.5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.story-seal-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  background: var(--brand-maroon);
  border: 3px solid var(--brand-gold-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.story-seal-badge .seal-year {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
}

.story-seal-badge .seal-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}

.story-content-box p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.35rem 1.5rem;
  background: var(--bg-surface-card);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-maroon);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-maroon);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   8. 9 Grains Showcase
   -------------------------------------------------------------------------- */
.grains-section {
  padding: 6.5rem 0;
  background: var(--bg-surface-alt);
}

.grains-banner-card {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
}

.grains-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grains-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(43, 24, 16, 0.85) 0%, rgba(43, 24, 16, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 3rem;
  color: #FFFFFF;
}

.grains-banner-content {
  max-width: 500px;
}

.grains-banner-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 700;
  color: var(--brand-gold-light);
  margin-bottom: 0.75rem;
}

.grains-banner-content p {
  font-size: 0.92rem;
  color: #F8F5EE;
  line-height: 1.7;
}

.grains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grain-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.grain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}

.grain-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.grain-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-maroon);
  background: var(--brand-maroon-soft);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grain-pill {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-alt);
  color: var(--brand-maroon);
}

.grain-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.grain-hindi-name {
  font-family: var(--font-hindi);
  font-size: 1rem;
  color: var(--brand-gold-dark);
  margin-bottom: 0.75rem;
}

.grain-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.grain-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light);
}

.grain-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--leaf-green);
  background: var(--leaf-green-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   9. Product Showcase & Direct Order Experience (No Cart / No Buy Now)
   -------------------------------------------------------------------------- */
.product-showcase-section {
  padding: 6.5rem 0;
  background: var(--bg-surface);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 110px;
}

.product-main-card {
  position: relative;
  background: var(--bg-surface-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.product-main-card img {
  max-height: 460px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(43, 24, 16, 0.12));
}

.gallery-badges {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.thumb-btn {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0.25rem;
  background: var(--bg-surface-alt);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--brand-maroon);
}

.thumb-btn img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Product Info */
.product-info-panel {
  padding-left: 0.5rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.product-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-gold-dark);
  margin-bottom: 1.25rem;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.stars {
  color: #E6A21A;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-area {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.current-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-maroon);
}

.original-price {
  font-size: 1.3rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.discount-tag {
  background: var(--leaf-green-light);
  color: var(--leaf-green);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.product-desc-box {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.85rem;
}

/* Pack Size Selector */
.size-selector-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.size-btn {
  padding: 0.9rem 0.4rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: var(--bg-surface-card);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.size-btn .size-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.size-btn .size-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.size-btn.active {
  border-color: var(--brand-maroon);
  background: var(--brand-maroon-soft);
  box-shadow: 0 0 0 1.5px var(--brand-maroon);
}

.size-btn:hover:not(.active) {
  border-color: var(--brand-gold);
  background: var(--bg-surface);
}

/* Quantity & Direct Order CTA */
.direct-order-box {
  background: var(--bg-surface-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.direct-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.qty-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.65rem;
  background: var(--bg-surface);
  min-width: 130px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: background var(--transition-fast);
}

.qty-btn:hover {
  background: var(--brand-maroon-soft);
  color: var(--brand-maroon);
}

.qty-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  min-width: 24px;
  text-align: center;
}

.direct-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.85rem;
}

.product-trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem;
  background: var(--bg-surface-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}

.trust-item svg {
  color: var(--brand-maroon);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Product Journey — Decent, Warm & Clean Editorial Timeline
   -------------------------------------------------------------------------- */
.journey-section {
  padding: 6.5rem 0;
  background: var(--bg-surface-alt);
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: var(--brand-gold-light);
  z-index: 1;
  opacity: 0.5;
}

.journey-card {
  position: relative;
  z-index: 2;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}

.journey-step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-maroon);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 3px solid var(--bg-surface);
  box-shadow: 0 4px 12px rgba(125, 27, 44, 0.25);
}

.journey-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-maroon);
  margin-bottom: 0.65rem;
}

.journey-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   11. Why Choose Us & Comparison Matrix
   -------------------------------------------------------------------------- */
.benefits-section {
  padding: 6.5rem 0;
  background: var(--bg-page);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4.5rem;
}

.benefit-card {
  background: var(--bg-surface);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-maroon);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-maroon-soft);
  color: var(--brand-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.benefit-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Comparison Table */
.comparison-wrapper {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 1.15rem 1.25rem;
  text-align: left;
}

.comparison-table th {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border-light);
}

.comparison-table th.col-highlight {
  background: var(--brand-maroon-soft);
  color: var(--brand-maroon);
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.comparison-table td {
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.comparison-table td.col-highlight {
  background: rgba(125, 27, 44, 0.03);
  font-weight: 600;
  color: var(--brand-maroon);
}

.check-icon { color: var(--leaf-green); font-weight: 800; }
.cross-icon { color: #B33A3A; font-weight: 800; }

/* --------------------------------------------------------------------------
   12. Everyday Moments & Soft Roti Masterclass
   -------------------------------------------------------------------------- */
.lifestyle-section {
  padding: 6.5rem 0;
  background: var(--bg-surface);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lifestyle-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.recipe-guide-box {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-top: 1.75rem;
}

.recipe-guide-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brand-maroon);
  margin-bottom: 1.15rem;
}

.recipe-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-maroon);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.step-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   13. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 6.5rem 0;
  background: var(--bg-surface-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-primary);
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--brand-gold-dark);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.6rem 1.35rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --------------------------------------------------------------------------
   14. Policy Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 24, 16, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  padding: 2.25rem;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   15. Decent & Clean Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--bg-surface-card);
  color: var(--text-secondary);
  padding: 5.5rem 0 2.5rem;
  border-top: 1.5px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--brand-maroon);
  margin-bottom: 0.65rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-maroon);
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  color: var(--brand-maroon);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: all var(--transition-fast);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

/* --------------------------------------------------------------------------
   16. Mobile & Laptop Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid, .product-layout, .story-grid, .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-gallery {
    position: static;
  }
  .grains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-timeline::before {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .direct-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn-whatsapp {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-section {
    padding: 2.5rem 0 4rem;
  }
  .hero-features-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .grains-grid {
    grid-template-columns: 1fr;
  }
  .journey-timeline {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .size-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .direct-cta-grid {
    grid-template-columns: 1fr;
  }
  .direct-order-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .comparison-wrapper {
    padding: 1.5rem 1rem;
  }
  .floating-pill {
    display: none;
  }
  .story-seal-badge {
    bottom: -10px;
    right: -10px;
    width: 95px;
    height: 95px;
  }
}
