/**
 * GHANTIRAM FOODS PRIVATE LIMITED — Master Luxury Design System
 * Brand: G-MAHARAJ Chakki Fresh Atta ("Desh Ka Asli Atta")
 * Version: 2.0.0 (Premium Agency Redesign)
 */

/* ==========================================================================
   01. DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
  /* Warm Wheat & Amber Primary Palette */
  --brand-50:  #fffbeb;
  --brand-100: #fef3c7;
  --brand-200: #fde68a;
  --brand-300: #fcd34d;
  --brand-400: #fbbf24;
  --brand-500: #f59e0b;
  --brand-600: #d97706; /* Core Brand Amber */
  --brand-700: #b45309; /* Deep Gold */
  --brand-800: #92400e;
  --brand-900: #78350f;
  --brand-950: #451a03;

  /* Natural Organic Sand & Ivory Backgrounds */
  --sand-50:  #fdfbf7;
  --sand-100: #faf6f0;
  --sand-200: #f5efe6;
  --sand-300: #eae0d0;
  --sand-400: #dacbba;

  /* Deep Earthy Charcoal & Espresso Neutrals */
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917; /* Deep Espresso */
  --stone-950: #0c0a09;

  /* Organic Accent Tones */
  --sage-50:  #f2f7f2;
  --sage-600: #2d5a27; /* Natural Laurel Green */
  --sage-700: #1e3a1a;

  /* Typography Stacks */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Elevation Shadows */
  --shadow-subtle: 0 2px 10px rgba(28, 25, 23, 0.04);
  --shadow-sm:     0 4px 15px rgba(28, 25, 23, 0.06);
  --shadow-md:     0 10px 30px -5px rgba(28, 25, 23, 0.08);
  --shadow-lg:     0 20px 45px -10px rgba(28, 25, 23, 0.12);
  --shadow-gold:   0 10px 30px -5px rgba(217, 119, 6, 0.28);
  --shadow-gold-lg:0 18px 45px -5px rgba(217, 119, 6, 0.35);

  /* Animation Timings */
  --transition-fast:   0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow:   0.65s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout Containers */
  --container-max: 1280px;
  --container-narrow: 980px;
}

/* ==========================================================================
   02. RESET & BASE HTML ELEMENTS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--stone-800);
  background-color: var(--sand-50);
  background-image: 
    radial-gradient(rgba(217, 119, 6, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--stone-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1.25rem;
}
p:last-child {
  margin-bottom: 0;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-sm {
  padding: 4rem 0;
}

.section-lg {
  padding: 8.5rem 0;
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.22);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #15803d, #166534);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 3px 10px rgba(22, 101, 52, 0.25);
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--stone-900);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--stone-600);
  line-height: 1.65;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* ==========================================================================
   02.5 LUXURY TOP UTILITY BAR (Single Clean Line)
   ========================================================================== */
.site-topbar {
  background: var(--stone-950);
  color: var(--stone-300);
  font-size: 0.78rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 1rem;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--stone-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.topbar-link:hover {
  color: var(--brand-400);
}

.topbar-icon {
  font-size: 0.85rem;
  opacity: 0.85;
}

.topbar-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-300);
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
}

.topbar-badge .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-400);
  box-shadow: 0 0 6px var(--brand-400);
}

.topbar-portal {
  font-weight: 600;
  color: var(--brand-400);
}
.topbar-portal:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .site-topbar {
    font-size: 0.72rem;
  }
  .topbar-left .topbar-item:nth-child(5) {
    display: none;
  }
  .topbar-left .topbar-divider:nth-child(4) {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    height: 34px;
    justify-content: space-between;
  }
  .topbar-left .topbar-item:first-child,
  .topbar-left .topbar-divider {
    display: none;
  }
  .topbar-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }
}

/* ==========================================================================
   03. UNIVERSAL STICKY GLASS NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.03);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  transition: height var(--transition-smooth);
}

.site-header.scrolled .nav-container {
  height: 78px;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 70px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(217, 119, 6, 0.16));
  transition: all var(--transition-smooth);
}

.site-header.scrolled .brand-logo-img {
  height: 60px;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--stone-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-600);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--stone-800);
  padding: 0.5rem 0.2rem;
  position: relative;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
  transition: width var(--transition-smooth);
}

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

/* Action Zone & CTA */
.nav-actions-zone {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  color: #ffffff;
  font-size: 0.8875rem;
  font-weight: 700;
  padding: 0.7rem 1.45rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-900) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: #ffffff;
}

.btn-nav-cta .cta-arrow {
  transition: transform var(--transition-fast);
}
.btn-nav-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--brand-900);
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: var(--brand-600);
  color: #fff;
}

@media (max-width: 768px) {
  .nav-container {
    height: 72px;
  }
  .site-header.scrolled .nav-container {
    height: 64px;
  }
  .brand-logo-img {
    height: 52px;
    max-width: 100px;
  }
  .site-header.scrolled .brand-logo-img {
    height: 46px;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    font-size: 0.6rem;
  }
  .btn-nav-cta {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 330px;
  max-width: 88%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--stone-200);
}

.mobile-drawer-close {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--stone-700);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.5rem;
  flex-grow: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-800);
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--brand-50);
  color: var(--brand-700);
}

/* ==========================================================================
   04. GRAND LUXURY FMCG BRAND SHOWCASE HERO (WARM LIGHT LUXURY EDITION)
   ========================================================================== */
.hero-showcase-stage {
  position: relative;
  width: 100%;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFDF7 0%, #FEF9EE 45%, #FDF4DE 100%);
  padding: 4.5rem 0 4rem 0;
}

/* Atmospheric Backdrop */
.hero-showcase-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-showcase-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.18;
  filter: saturate(1.2) contrast(1.05);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-showcase-stage:hover .hero-showcase-bg-img {
  transform: scale(1.05);
}

.hero-showcase-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 45%,
    rgba(254, 243, 199, 0.45) 0%,
    rgba(255, 253, 247, 0.82) 50%,
    #FFFDF7 100%
  );
  z-index: 2;
}

.hero-spotlight-left {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.08) 50%, transparent 70%);
  filter: blur(50px);
  z-index: 2;
}

.hero-spotlight-right {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, rgba(217, 119, 6, 0.1) 50%, transparent 70%);
  filter: blur(60px);
  z-index: 2;
}

.hero-showcase-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

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

/* Left Narrative Column */
.hero-narrative-col {
  color: #1C1917;
}

.hero-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid rgba(217, 119, 6, 0.4);
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.12);
}

.hero-gold-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-grand-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: #1C1917;
  margin-bottom: 1.25rem;
}

.hero-grand-title .title-highlight {
  display: block;
  background: linear-gradient(135deg, #B45309 0%, #D97706 60%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-grand-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #44403C;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* 4 Trust Badges Grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 119, 6, 0.22);
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.06);
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.trust-badge-item:hover {
  background: #ffffff;
  border-color: rgba(217, 119, 6, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(180, 83, 9, 0.12);
}

.trust-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.trust-badge-item strong {
  display: block;
  font-size: 0.92rem;
  color: #1C1917;
  font-weight: 700;
}

.trust-badge-item span {
  display: block;
  font-size: 0.75rem;
  color: #78716C;
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-hero-cta {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.35);
}

.btn-hero-secondary {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
  color: var(--stone-800);
  border-color: var(--stone-300);
  background: #ffffff;
}

.btn-hero-secondary:hover {
  background: var(--brand-50);
  border-color: var(--brand-500);
  color: var(--brand-800);
}

/* Meta Bar */
.hero-meta-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.82rem;
  color: #57534E;
  padding-top: 1rem;
  border-top: 1px solid rgba(217, 119, 6, 0.18);
}

.meta-separator {
  color: rgba(120, 113, 108, 0.4);
}

/* Right Column: 3D Visual Stage */
.hero-visual-showcase-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-stage-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient Product Halo Glow */
.hero-product-halo {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.45) 0%, rgba(245, 158, 11, 0.2) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: haloPulse 5s ease-in-out infinite alternate;
}

@keyframes haloPulse {
  0% { transform: scale(0.92); opacity: 0.75; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-pack-wrapper {
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 20px 35px rgba(120, 53, 15, 0.22));
}

.hero-visual-stage-card:hover .hero-pack-wrapper {
  transform: translateY(-8px) scale(1.02);
}

.hero-pack-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-roti-basket-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-purity-stamps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}

.purity-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #92400E;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(180, 83, 9, 0.08);
}

.stamp-check {
  color: #10B981;
  font-weight: 900;
}

/* Floating Glass Cards */
.hero-float-cards-group {
  display: contents;
}

.hero-float-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(217, 119, 6, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 1rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 83, 9, 0.16);
  animation: floatCardAnim 4.5s ease-in-out infinite alternate;
}

.hero-float-roti {
  bottom: 25px;
  left: -20px;
  animation-delay: 0.5s;
}

.hero-float-grain {
  top: 30px;
  right: -15px;
  animation-delay: 1.2s;
}

@keyframes floatCardAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.float-card-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--brand-500);
  flex-shrink: 0;
}

.float-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.float-card-info {
  display: flex;
  flex-direction: column;
}

.float-card-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B45309;
}

.float-card-info strong {
  font-size: 0.95rem;
  color: #1C1917;
  font-weight: 700;
  line-height: 1.2;
}

.float-card-sub {
  font-size: 0.72rem;
  color: #78716C;
}

/* Floating Crown Seal Badge */
.hero-float-badge-seal {
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 1.5px solid rgba(217, 119, 6, 0.5);
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(180, 83, 9, 0.15);
  animation: floatSealAnim 4s ease-in-out infinite alternate;
}

@keyframes floatSealAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(6px); }
}

.seal-icon {
  font-size: 1.2rem;
}

.seal-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #92400E;
}

.seal-text span {
  display: block;
  font-size: 0.65rem;
  color: #B45309;
}
}

/* ==========================================================================
   05. EDITORIAL BRAND INTRODUCTION ("ABOUT GHANTIRAM")
   ========================================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-intro-visual {
  position: relative;
}

.about-intro-img-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--stone-200);
  position: relative;
}

.about-intro-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-intro-img-frame:hover .about-intro-img {
  transform: scale(1.03);
}

.about-floating-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #ffffff;
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-300);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 260px;
}

.about-floating-badge-icon {
  font-size: 2rem;
  background: var(--brand-50);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-intro-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-intro-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brand-950);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-feature-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin: 2rem 0 2.5rem 0;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--stone-800);
  font-size: 0.95rem;
}

.bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   06. FLAGSHIP PRODUCT SHOWCASE & VARIANT COLLECTION
   ========================================================================== */
.product-showcase-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--sand-50) 100%);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}

/* ==========================================================================
   06. PRODUCT PAGE & SPOTLIGHT SHOWCASE (2-COLUMN LUXURY CARDS)
   ========================================================================== */
.product-page-spotlight-card {
  background: linear-gradient(135deg, #ffffff 0%, #FFFDF7 100%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 32px;
  box-shadow: 0 20px 45px rgba(180, 83, 9, 0.09);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-page-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.product-page-halo {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.45) 0%, rgba(245, 158, 11, 0.16) 50%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
}

.product-page-hero-img {
  position: relative;
  z-index: 2;
  max-height: 560px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(120, 53, 15, 0.26));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-page-spotlight-card:hover .product-page-hero-img {
  transform: translateY(-8px) scale(1.02);
}

.product-page-badge-top,
.product-page-badge-bottom {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 0.5rem 0.85rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(180, 83, 9, 0.14);
  backdrop-filter: blur(10px);
}

.product-page-badge-top {
  top: 15px;
  left: 0;
}

.product-page-badge-bottom {
  bottom: 15px;
  right: 0;
}

.product-page-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--stone-900);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.75rem 0 0.5rem 0;
}

.product-page-desc {
  color: var(--stone-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.spec-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: #92400E;
  background: #FFFBEB;
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
}

.product-page-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.page-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--sand-50);
  border: 1px solid var(--stone-200);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.page-pillar-item:hover {
  background: #ffffff;
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.08);
}

.page-pillar-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--stone-900);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.page-pillar-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--stone-600);
  line-height: 1.45;
}

.product-page-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Master Spotlight Card */
.product-master-spotlight {
  background: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(180, 83, 9, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  padding: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.spotlight-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.spotlight-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, rgba(245, 158, 11, 0.12) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.spotlight-product-img {
  position: relative;
  z-index: 2;
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(120, 53, 15, 0.2));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-master-spotlight:hover .spotlight-product-img {
  transform: scale(1.03) translateY(-6px);
}

.spotlight-badge-left,
.spotlight-badge-right {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(180, 83, 9, 0.12);
  backdrop-filter: blur(8px);
}

.spotlight-badge-left {
  bottom: 10px;
  left: 0;
}

.spotlight-badge-right {
  top: 15px;
  right: 0;
}

.spotlight-badge-icon {
  font-size: 1.25rem;
}

.spotlight-badge-left strong,
.spotlight-badge-right strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--stone-900);
}

.spotlight-badge-left span,
.spotlight-badge-right span {
  display: block;
  font-size: 0.72rem;
  color: var(--brand-700);
}

/* Spotlight Content */
.spotlight-content-wrap {
  display: flex;
  flex-direction: column;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid rgba(217, 119, 6, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.spotlight-tag .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.spotlight-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--stone-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.spotlight-desc {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.spotlight-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.spotlight-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--sand-50);
  border: 1px solid var(--stone-200);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.spotlight-pillar-item:hover {
  background: #ffffff;
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.08);
}

.pillar-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.spotlight-pillar-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--stone-900);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.spotlight-pillar-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--stone-600);
  line-height: 1.45;
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Pack Variant Grid Section */
.pack-variants-section {
  padding-top: 1rem;
}

.pack-variants-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.25rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.pack-variants-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--stone-900);
  margin-top: 0.5rem;
}

.pack-variants-sub {
  color: var(--stone-600);
  max-width: 450px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pack-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.pack-card {
  background: #ffffff;
  border: 1px solid var(--stone-200);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-smooth);
  position: relative;
}

.pack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 15px 30px rgba(180, 83, 9, 0.12);
}

.pack-card-featured {
  border: 2px solid var(--brand-500);
  background: linear-gradient(180deg, #FFFDF7 0%, #ffffff 100%);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.14);
}

.pack-card-header {
  margin-bottom: 1rem;
}

.pack-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--stone-700);
  background: var(--sand-100);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.pack-badge-popular {
  background: #FEF3C7;
  color: #92400E;
}

.pack-badge-best {
  background: #D97706;
  color: #ffffff;
}

.pack-weight {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--stone-900);
  line-height: 1;
}

.pack-weight span {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  color: var(--brand-600);
  font-weight: 700;
}

.pack-card-thumb-frame {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem 0 1rem 0;
  background: radial-gradient(circle at 50% 60%, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  border-radius: 14px;
  padding: 0.5rem;
}

.pack-thumb-img {
  max-height: 165px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(120, 53, 15, 0.18));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pack-card:hover .pack-thumb-img {
  transform: translateY(-6px) scale(1.05);
}

.pack-card-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--stone-900);
  margin-bottom: 0.4rem;
}

.pack-packaging {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-700);
  margin-bottom: 0.5rem;
}

.pack-usage {
  font-size: 0.82rem;
  color: var(--stone-500);
  line-height: 1.45;
  margin-bottom: 1rem;
  min-height: 48px;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  border-top: 1px dashed var(--stone-200);
  padding-top: 0.75rem;
}

.pack-features li {
  font-size: 0.78rem;
  color: var(--stone-700);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.pack-card-footer .btn {
  font-size: 0.85rem;
  padding: 0.55rem 0.75rem;
}

@media (max-width: 1200px) {
  .pack-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .product-page-spotlight-card,
  .product-master-spotlight {
    grid-template-columns: 1fr;
    padding: 2.25rem;
    gap: 2.5rem;
  }
  .product-page-visual-wrap,
  .spotlight-visual-wrap {
    min-height: 340px;
  }
  .pack-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pack-cards-grid {
    grid-template-columns: 1fr;
  }
  .product-page-badge-top,
  .product-page-badge-bottom,
  .spotlight-badge-left,
  .spotlight-badge-right {
    position: static;
    margin-top: 0.5rem;
  }
  .product-page-visual-wrap,
  .spotlight-visual-wrap {
    flex-direction: column;
    min-height: auto;
  }
}

/* ==========================================================================
   07. "WHY GHANTIRAM" ANIMATED INTERACTIVE FEATURE MATRIX (NO IMAGES)
   ========================================================================== */
.why-ghantiram-section {
  background: var(--sand-50);
  border-bottom: 1px solid var(--stone-200);
  position: relative;
  overflow: hidden;
}

.why-animated-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-anim-card {
  background: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 24px;
  padding: 2.25rem 2rem 2rem 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-anim-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 20px 40px rgba(180, 83, 9, 0.12);
}

.why-anim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.why-icon-pod {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1.5px solid rgba(217, 119, 6, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.4s ease;
}

.why-anim-card:hover .why-icon-pod {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
}

.why-icon-glyph {
  font-size: 1.85rem;
  line-height: 1;
  z-index: 2;
}

.icon-pod-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: rgba(245, 158, 11, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.why-anim-card:hover .icon-pod-pulse {
  opacity: 1;
  transform: scale(1.12);
  animation: podPulseAnim 2s infinite;
}

@keyframes podPulseAnim {
  0%, 100% { transform: scale(1.08); opacity: 0.4; }
  50% { transform: scale(1.18); opacity: 0.1; }
}

.why-step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--sand-300);
  line-height: 1;
  transition: color 0.4s ease;
}

.why-anim-card:hover .why-step-num {
  color: var(--brand-500);
}

.why-anim-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
}

.why-anim-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--stone-900);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.why-anim-body p {
  font-size: 0.95rem;
  color: var(--stone-600);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.why-anim-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--sand-200);
}

.why-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #92400E;
  background: #FFFBEB;
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
}

.metric-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10B981;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, #D97706, #B45309);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-anim-card:hover .why-card-glow-line {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .why-animated-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   08. ROTI EXPERIENCE SECTION ("FROM GRAIN TO THE PERFECT ROTI")
   ========================================================================== */
.roti-journey-section {
  background: var(--stone-900);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.roti-journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.15) 0%, transparent 80%);
  pointer-events: none;
}

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

.journey-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.journey-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-500);
  transform: translateY(-6px);
}

.journey-step-img-frame {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.journey-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journey-step-card:hover .journey-step-img {
  transform: scale(1.08);
}

.journey-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-400);
  margin-bottom: 0.35rem;
}

.journey-step-card h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.journey-step-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ==========================================================================
   09. QUALITY & PURITY COMMITMENT GRID
   ========================================================================== */
.quality-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quality-pillar-card {
  background: #ffffff;
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.quality-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.25);
}

.quality-pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--brand-700);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.quality-pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.quality-pillar-card p {
  color: var(--stone-600);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ==========================================================================
   10. BRAND STORY / HERITAGE EMOTIONAL SECTION
   ========================================================================== */
.heritage-story-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.heritage-story-bg {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.heritage-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 10, 9, 0.92) 0%,
    rgba(12, 10, 9, 0.7) 50%,
    rgba(12, 10, 9, 0.3) 100%
  );
  display: flex;
  align-items: center;
  padding: 4rem;
}

.heritage-story-content {
  max-width: 620px;
  color: #ffffff;
}

.heritage-story-content h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.heritage-story-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ==========================================================================
   11. CALL TO ACTION SECTION
   ========================================================================== */
.cta-banner-stage {
  background: linear-gradient(135deg, var(--stone-950) 0%, #2e1605 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--stone-900);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--sand-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--brand-700);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--stone-900);
  border-color: #ffffff;
}

/* ==========================================================================
   12. MASTER FOOTER
   ========================================================================== */
.site-footer {
  background: var(--stone-950);
  color: var(--stone-400);
  padding: 6rem 0 2.5rem 0;
  border-top: 3px solid var(--brand-600);
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.footer-brand-tagline {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-400);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-brand p {
  font-size: 0.8875rem;
  line-height: 1.65;
  color: var(--stone-400);
}

.footer-heading {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--brand-500);
}

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

.footer-links-list a {
  color: var(--stone-400);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--brand-300);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8875rem;
  color: var(--stone-400);
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--brand-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* ==========================================================================
   13. FORM CONTROLS & ALERTS
   ========================================================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone-700);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  border: 1.5px solid var(--stone-200);
  background: #ffffff;
  color: var(--stone-900);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   13.5 CONTACT PAGE LAYOUT
   ========================================================================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--sand-50);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--stone-200);
}

.contact-form-card {
  background: var(--sand-50);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   14. MASTER RESPONSIVE BREAKPOINTS (100% PHONE & TABLET OPTIMIZED)
   ========================================================================== */

/* Tablet & Medium Screens (<= 992px) */
@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .about-intro-grid, .product-stage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-editorial-grid { grid-template-columns: 1fr; }
  .roti-journey-timeline { grid-template-columns: repeat(2, 1fr); }
  .quality-pillars-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  
  .product-page-spotlight-card,
  .product-master-spotlight {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    gap: 2.5rem;
  }
  .product-page-visual-wrap,
  .spotlight-visual-wrap {
    min-height: 420px;
  }
  .pack-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Standard Mobile Phones (<= 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-sm {
    padding: 2.25rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ----------------------------------------------------
     Hero Showcase Section on Mobile Phone
     ---------------------------------------------------- */
  /* ----------------------------------------------------
     Hero Showcase Section on Mobile Phone (Faithfully Matching Web)
     ---------------------------------------------------- */
  .hero-showcase-stage {
    padding: 2rem 0 2.5rem 0;
    min-height: auto;
    overflow: hidden;
  }

  .hero-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: left;
  }

  .hero-narrative-col {
    text-align: left;
  }

  .hero-gold-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
  }

  .hero-grand-title {
    text-align: left;
    font-size: clamp(2.15rem, 7.8vw, 2.7rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
    font-weight: 900;
  }

  .hero-grand-title .title-highlight {
    display: block;
  }

  .hero-grand-desc {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.35rem 0;
    max-width: 100%;
    color: #44403C;
  }

  /* 2x2 Trust Badges Grid on Mobile Phone */
  .hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
  }

  .trust-badge-item {
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(217, 119, 6, 0.22);
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.06);
  }

  .trust-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
  }

  .trust-badge-item strong {
    font-size: 0.8rem;
    display: block;
    line-height: 1.2;
    color: var(--stone-900);
  }

  .trust-badge-item span {
    font-size: 0.68rem;
    display: block;
    color: #78716C;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 0 1.5rem 0;
  }

  .btn-hero-cta {
    padding: 0.85rem 1.4rem;
    font-size: 0.92rem;
    border-radius: 9999px;
  }

  .btn-hero-secondary {
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
    border-radius: 9999px;
  }

  .hero-meta-bar {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    font-size: 0.78rem;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(217, 119, 6, 0.18);
    color: #57534E;
  }

  .meta-separator {
    display: inline-block;
  }

  /* 3D Visual Stage on Mobile Phone: Seamless transparent stage */
  .hero-visual-stage-card {
    position: relative !important;
    width: 100% !important;
    max-width: 390px !important;
    height: 330px !important;
    min-height: auto !important;
    margin: 1rem auto 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .hero-product-halo {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.45) 0%, rgba(245, 158, 11, 0.2) 50%, transparent 70%);
    filter: blur(35px);
    z-index: 1;
  }

  .hero-pack-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }

  .hero-roti-basket-img {
    max-width: 88%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(120, 53, 15, 0.22));
  }

  .hero-purity-stamps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }

  .purity-stamp {
    font-size: 0.8rem !important;
    color: #78350F !important;
    font-weight: 700 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .stamp-check {
    color: #10B981;
    font-weight: 900;
  }

  /* 3 Floating Badges in Exact Desktop Spatial Positions */
  .hero-float-cards-group {
    display: contents !important;
  }

  /* Top-Left: Crown Seal Pill */
  .hero-float-badge-seal {
    position: absolute !important;
    top: -5px !important;
    left: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7) !important;
    border: 1.5px solid rgba(217, 119, 6, 0.5) !important;
    padding: 0.32rem 0.75rem !important;
    border-radius: 9999px !important;
    box-shadow: 0 6px 18px rgba(180, 83, 9, 0.15) !important;
    white-space: nowrap !important;
    transform: none !important;
    animation: floatSealAnim 4s ease-in-out infinite alternate !important;
    margin: 0 !important;
  }

  .hero-float-badge-seal .seal-icon {
    font-size: 1rem;
  }

  .hero-float-badge-seal strong {
    font-size: 0.68rem;
    font-weight: 900;
    color: #92400E;
    display: block;
    line-height: 1.15;
  }

  .hero-float-badge-seal span {
    font-size: 0.58rem;
    color: #B45309;
    display: block;
  }

  /* Top-Right: Golden Wheat Card */
  .hero-float-grain {
    position: absolute !important;
    top: 5px !important;
    right: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1.5px solid rgba(217, 119, 6, 0.35) !important;
    padding: 0.35rem 0.55rem !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.12) !important;
    max-width: 155px !important;
    transform: none !important;
    animation: floatCardAnim 4.5s ease-in-out infinite alternate !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  /* Bottom-Left: Ballooning Phulkas Card */
  .hero-float-roti {
    position: absolute !important;
    bottom: 5px !important;
    left: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1.5px solid rgba(217, 119, 6, 0.35) !important;
    padding: 0.35rem 0.55rem !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.12) !important;
    max-width: 160px !important;
    transform: none !important;
    animation: floatCardAnim 4.5s ease-in-out infinite alternate !important;
    animation-delay: 0.5s !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  .hero-float-card .float-card-thumb {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    flex-shrink: 0;
  }

  .hero-float-card .float-card-tag {
    font-size: 0.55rem;
    font-weight: 800;
    color: #B45309;
  }

  .hero-float-card strong {
    font-size: 0.75rem;
    line-height: 1.15;
    color: #1C1917;
  }

  .hero-float-card .float-card-sub {
    font-size: 0.6rem;
    color: #78716C;
  }

  /* ----------------------------------------------------
     Product Spotlight Section on Mobile Phone
     ---------------------------------------------------- */
  .product-page-spotlight-card,
  .product-master-spotlight {
    padding: 2rem 1.25rem;
    border-radius: 24px;
    gap: 1.75rem;
    grid-template-columns: 1fr;
  }

  .product-page-visual-wrap,
  .spotlight-visual-wrap {
    min-height: auto;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-page-hero-img,
  .spotlight-product-img {
    max-height: 380px;
    width: auto;
    max-width: 85%;
  }

  .product-page-halo,
  .spotlight-glow {
    width: 260px;
    height: 260px;
  }

  .product-page-badge-top,
  .product-page-badge-bottom,
  .spotlight-badge-left,
  .spotlight-badge-right {
    position: static !important;
    transform: none !important;
    animation: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(217, 119, 6, 0.3);
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.08);
    margin: 0.35rem 0.2rem;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-page-title,
  .spotlight-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .product-page-desc,
  .spotlight-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .product-spec-pills {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .spec-pill {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
  }

  .product-page-actions,
  .spotlight-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .product-page-actions .btn,
  .spotlight-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ----------------------------------------------------
     5 Pack Variant Cards on Mobile Phone
     ---------------------------------------------------- */
  .pack-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .pack-card {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .pack-card-thumb-frame {
    height: 170px;
  }

  .pack-thumb-img {
    max-height: 155px;
  }

  .pack-variants-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .pack-variants-title {
    font-size: 1.6rem;
  }

  /* ----------------------------------------------------
     Animated Why Choose Matrix on Mobile Phone
     ---------------------------------------------------- */
  .why-animated-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-anim-card {
    padding: 1.75rem 1.25rem 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .why-anim-body h3 {
    font-size: 1.25rem;
  }

  .why-anim-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .why-icon-pod {
    width: 54px;
    height: 54px;
  }

  .why-icon-glyph {
    font-size: 1.6rem;
  }

  .why-step-num {
    font-size: 1.9rem;
  }

  /* ----------------------------------------------------
     Contact Page on Mobile Phone
     ---------------------------------------------------- */
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .contact-info-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .form-control {
    font-size: 16px; /* prevent iOS auto-zoom */
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }

  /* ----------------------------------------------------
     About, Process, Quality & All Multi-Column Grids
     ---------------------------------------------------- */
  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .about-intro-img {
    height: 300px;
  }

  .about-floating-badge {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .about-feature-bullets {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem 0;
  }

  .quality-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .roti-journey-timeline {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  .journey-step-card {
    padding: 1.15rem 0.85rem;
    border-radius: 16px;
  }

  .journey-step-img-frame {
    height: 120px;
    border-radius: 12px;
  }

  .journey-step-card h4 {
    font-size: 0.95rem;
    margin: 0.4rem 0 0.25rem 0;
  }

  .journey-step-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  /* Any 2/3/4-col general grid */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .grid.grid-cols-2,
  .grid.grid-cols-3,
  .grid.grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* ----------------------------------------------------
     Footer on Mobile Phone
     ---------------------------------------------------- */
  .site-footer {
    padding: 3.5rem 0 2rem 0;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Compact Smartphones (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-grand-title {
    font-size: 1.95rem;
  }

  .hero-trust-grid {
    gap: 0.5rem;
  }

  .trust-badge-item {
    padding: 0.5rem 0.55rem;
  }

  .hero-visual-stage-card {
    max-width: 360px !important;
    height: 310px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .hero-roti-basket-img {
    max-width: 84% !important;
  }

  .hero-float-grain {
    max-width: 145px !important;
  }

  .hero-float-roti {
    max-width: 150px !important;
  }

  .roti-journey-timeline {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .product-page-spotlight-card,
  .product-master-spotlight {
    padding: 1.5rem 1rem;
  }

  .product-page-hero-img,
  .spotlight-product-img {
    max-height: 320px;
  }

  .pack-card {
    padding: 1.25rem 1rem;
  }

  .contact-form-card {
    padding: 1.5rem 1rem;
  }

  .btn {
    font-size: 0.88rem;
    padding: 0.75rem 1.25rem;
  }
}

/* Extra Compact Phones (<= 380px e.g. iPhone SE, Galaxy A) */
@media (max-width: 380px) {
  .hero-grand-title {
    font-size: 1.8rem;
  }

  .hero-visual-stage-card {
    max-width: 320px !important;
    height: 280px !important;
  }

  .hero-roti-basket-img {
    max-width: 76% !important;
  }

  .hero-float-badge-seal {
    padding: 0.25rem 0.55rem !important;
    font-size: 0.65rem !important;
  }

  .hero-float-badge-seal strong {
    font-size: 0.62rem !important;
  }

  .hero-float-grain {
    max-width: 128px !important;
    padding: 0.25rem 0.4rem !important;
  }

  .hero-float-roti {
    max-width: 132px !important;
    padding: 0.25rem 0.4rem !important;
  }

  .hero-float-card .float-card-thumb {
    width: 28px !important;
    height: 28px !important;
  }

  .hero-float-card strong {
    font-size: 0.68rem !important;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
