ï»¿* {
  font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   Thakur Ji Bakers - Bakingo-Inspired Minimalist Aesthetic & Design System
   Palette: Warm Beige (#FAF7F2), Deep Garnet Red (#B81B2E), Gold (#E6A100)
   ========================================================================== */

:root {
  /* Brand Aesthetic Colors */
  --bg-beige: #FAF7F2;
  --bg-white: #FFFFFF;
  --bg-cream-card: #FDFBF7;
  --bg-peach: #FFF0EB;
  --bg-garnet-light: #FDF0F2;
  --bg-gold-light: #FFF9E6;

  /* Primary Brand Garnet Red */
  --primary-garnet: #B81B2E;
  --primary-garnet-hover: #9A1324;
  --primary-garnet-active: #7E0D1B;

  /* Accents */
  --gold-accent: #D48806;
  --gold-vibrant: #E6A100;
  --gold-border: #F0D49C;
  --green-veg: #00843D;
  --green-bg: #E6F4EA;

  /* Typography Colors */
  --text-dark: #2C221E;
  --text-body: #4A3E39;
  --text-muted: #7A6F68;
  --text-light: #A49B95;
  --border-light: #EFE8DE;
  --border-subtle: #F4EFEB;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hindi: 'Mukta', sans-serif;

  /* Elevation & Shadows */
  --shadow-xs: 0 2px 6px rgba(44, 34, 30, 0.04);
  --shadow-sm: 0 4px 14px rgba(44, 34, 30, 0.06);
  --shadow-md: 0 10px 30px rgba(44, 34, 30, 0.08);
  --shadow-lg: 0 20px 48px rgba(44, 34, 30, 0.12);
  --shadow-garnet: 0 6px 20px rgba(184, 27, 46, 0.25);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-beige);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 78px; /* Safe space for mobile bottom nav */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

input, select, textarea {
  font-family: inherit;
  font-size: 16px !important; /* Prevents auto-zoom on iOS mobile */
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Navigation & Header
   ========================================================================== */
.header-veg-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #FFFFFF;
  border: 1.5px solid #2E7D32;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(46, 125, 50, 0.12);
  cursor: default;
  flex-shrink: 0;
}

.header-veg-indicator .veg-square {
  display: inline-flex;
  width: 14px;
  height: 14px;
  border: 1.5px solid #2E7D32;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  flex-shrink: 0;
}

.header-veg-indicator .veg-dot {
  width: 6px;
  height: 6px;
  background: #2E7D32;
  border-radius: 50%;
  display: block;
}

.header-veg-indicator .veg-text {
  font-size: 0.72rem;
  font-weight: 800;
  color: #2E7D32;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo,
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  max-height: 56px;
  transition: transform var(--transition-fast);
}

.brand-logo:hover,
.brand-logo-link:hover {
  transform: scale(1.02);
}

.brand-logo img,
.brand-logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

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

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-garnet);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green-veg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links,
.nav-links-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.header-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.header-cart-btn:hover {
  border-color: var(--primary-garnet);
  color: var(--primary-garnet);
  transform: translateY(-1px);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary-garnet);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(184, 27, 46, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--primary-garnet);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-garnet);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.firebase-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.pincode-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.pincode-pill:hover {
  border-color: var(--gold-vibrant);
  background-color: var(--bg-gold-light);
  transform: translateY(-1px);
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.cart-btn:hover {
  border-color: var(--primary-garnet);
  color: var(--primary-garnet);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary-garnet);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(184, 27, 46, 0.4);
}

/* ==========================================================================
   Buttons & Core Components
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-garnet-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 27, 46, 0.35);
}

.btn-primary:active {
  background-color: var(--primary-garnet-active);
  transform: translateY(0);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: var(--bg-beige);
  border-color: var(--text-muted);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background-color: #1A1310;
}

@media (max-width: 768px) {
  .hero-slider-container {
    height: 420px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 1.2s ease-out;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 19, 16, 0.25) 0%, rgba(26, 19, 16, 0.75) 85%);
  display: flex;
  align-items: flex-end;
  padding: 3rem 1.5rem;
}

.hero-content {
  max-width: 750px;
  color: #FFFFFF;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(230, 161, 0, 0.92);
  color: #1A1310;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }
}

.hero-desc {
  font-size: 1rem;
  color: #E6E1DC;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dots .dot.active {
  width: 26px;
  border-radius: var(--radius-full);
  background: var(--gold-vibrant);
}

/* ==========================================================================
   Vision & Purity Banner
   ========================================================================== */
.vision-section {
  padding: 2.5rem 0 1rem;
}

.vision-banner-card {
  background: linear-gradient(135deg, #135824 0%, #1E7E34 50%, #0B3813 100%);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  box-shadow: 0 12px 35px rgba(30, 126, 52, 0.28);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

.vision-banner-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(105, 240, 174, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.vision-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  background-image: radial-gradient(circle at top right, #FFF7EB 0%, #FFFFFF 65%);
}

.vision-tagline {
  font-size: 2rem;
  color: var(--primary-garnet);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.vision-subtext {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Delivery Scope Pills */
.delivery-scope-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

.delivery-scope-badge.hyperlocal {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid #FAD2CF;
}

.delivery-scope-badge.panindia {
  background: #E8F0FE;
  color: #1A73E8;
  border: 1px solid #D2E3FC;
}

/* ==========================================================================
   Pincode Checker Section
   ========================================================================== */
.pincode-section {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}

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

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

.pincode-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.pincode-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  outline: none;
  transition: border-color var(--transition-fast);
}

.pincode-input:focus {
  border-color: var(--primary-garnet);
}

.pincode-result {
  margin-top: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 600;
}

.pincode-result.success {
  background: #E6F4EA;
  color: var(--green-veg);
  border: 1px solid #CEEAD6;
}

.pincode-result.error {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid #FAD2CF;
}

/* ==========================================================================
   Category Chips & Menu Section
   ========================================================================== */
.products-section {
  padding: 2.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--primary-garnet);
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.chips-wrapper {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.chip-btn {
  padding: 0.55rem 1.1rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.chip-btn:hover {
  border-color: var(--primary-garnet);
  color: var(--primary-garnet);
  background-color: var(--bg-garnet-light);
}

.chip-btn.active {
  background-color: var(--primary-garnet);
  color: #FFFFFF;
  border-color: var(--primary-garnet);
  box-shadow: 0 4px 12px rgba(184, 27, 46, 0.25);
}

/* ==========================================================================
   Product Grid & Cards (Bakingo Card Style)
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.35rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Product Grid & Premium Item Cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid #F0EAE1;
  box-shadow: 0 4px 18px rgba(23, 15, 11, 0.05);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(122, 12, 26, 0.09);
  border-color: #E2D7CB;
}

.product-img-wrapper,
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #F6F1EA;
  cursor: pointer;
}

.product-img-wrapper img,
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrapper img,
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.veg-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border: 1.5px solid #137333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.veg-dot {
  width: 8px;
  height: 8px;
  background: #137333;
  border-radius: 50%;
}

.stock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 15, 11, 0.6);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-info-wrapper,
.product-content {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #170F0B;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  cursor: pointer;
  transition: color 0.2s ease;
  flex: 1;
  min-width: 0;
}

.product-title:hover {
  color: var(--primary-garnet);
}

.product-desc-snippet,
.product-desc {
  font-size: 0.82rem;
  color: #756357;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.35em;
}

.delivery-scope-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.delivery-scope-badge.hyperlocal {
  background: #FDF2F4;
  color: #B81B2E;
  border: 1px solid #F5C6CB;
}

.delivery-scope-badge.panindia {
  background: #E8F0FE;
  color: #1A73E8;
  border: 1px solid #C2E7FF;
}

.product-price-row,
.product-bottom {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1.5px solid #F3EDE5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-garnet);
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  border: 1px solid #1EBE5D;
  font-weight: 800;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   Product Detail & Sizing Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(23, 15, 11, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-2xl);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1.5px solid #F0EAE1;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--primary-garnet);
  color: #FFFFFF;
  border-color: var(--primary-garnet);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 420px;
  max-height: 90vh;
}

@media (max-width: 640px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
}

.modal-image-col,
.modal-img-col {
  background: #F6F1EA;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.modal-image-col img,
.modal-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-info-col {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: #FFFFFF;
}

.modal-cat-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #8C786E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #170F0B;
  margin: 0.35rem 0 0.2rem;
  line-height: 1.25;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary-garnet);
  margin-bottom: 0.45rem;
}

.modal-desc {
  font-size: 0.85rem;
  color: #6B574C;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.size-selector-section {
  margin-top: 0.5rem;
}

.size-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #170F0B;
  margin-bottom: 0.5rem;
  display: block;
}

.size-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.size-option-card {
  padding: 0.65rem 0.5rem;
  border: 1.5px solid #E5DBD0;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FFFFFF;
}

.size-option-card:hover {
  border-color: var(--primary-garnet);
  background: #FDF4F5;
}

.size-option-card.selected {
  border-color: var(--primary-garnet);
  background: #FDF2F4;
  box-shadow: 0 0 0 1px var(--primary-garnet);
}

.size-weight {
  font-size: 0.84rem;
  font-weight: 800;
  color: #170F0B;
}

.size-cost,
.size-price {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--primary-garnet);
  margin-top: 0.2rem;
}

.cake-msg-input {
  width: 100%;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  transition: border-color var(--transition-fast);
}

.cake-msg-input:focus {
  border-color: var(--primary-garnet);
}

.modal-actions-row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1.5px solid #F3EDE5;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  background: #FAF7F2;
  border: 1.5px solid #E5DBD0;
  border-radius: var(--radius-full);
  overflow: hidden;
  padding: 0.2rem 0.35rem;
  gap: 0.25rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #FFFFFF;
  color: var(--primary-garnet);
  font-size: 1.15rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: all 0.15s ease;
}

.qty-btn:hover {
  background: var(--primary-garnet);
  color: #FFFFFF;
}

.qty-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #170F0B;
  min-width: 28px;
  text-align: center;
}

#modal-add-cart-btn {
  flex: 1;
  padding: 0.8rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #B81B2E 0%, #8E1120 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(184, 27, 46, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

#modal-add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 27, 46, 0.45);
}

/* ==========================================================================
   Shopping Cart Drawer & Checkout Form
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: rgba(23, 15, 11, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-drawer-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.cart-drawer-card,
.cart-drawer {
  width: 100%;
  max-width: 480px;
  height: 100%;
  max-height: 100vh;
  background: #FFFFFF;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  pointer-events: auto;
}

.cart-drawer-backdrop.active .cart-drawer-card,
.cart-drawer-backdrop.active .cart-drawer {
  transform: translateX(0) !important;
}

.cart-drawer-header {
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--border-light);
  background: var(--bg-beige);
  flex-shrink: 0;
}

.cart-drawer-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  -webkit-overflow-scrolling: touch;
}

.cart-item-card,
.cart-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.cart-item-card:hover {
  border-color: #E2D7CB;
}

.cart-item-img-col {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  min-height: 68px !important;
  max-height: 68px !important;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F6F1EA;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.cart-item-img-col img {
  width: 100% !important;
  height: 100% !important;
  max-width: 68px !important;
  max-height: 68px !important;
  object-fit: cover !important;
  display: block;
}

.cart-item-info-col {
  flex: 1;
  min-width: 0;
}

.cart-item-actions-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-beige);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.cart-qty-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.cart-qty-val {
  padding: 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  min-width: 18px;
  text-align: center;
}

.cart-item-remove-btn {
  background: none;
  border: none;
  color: #C5221F;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
}

.cart-item-remove-btn:hover {
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 1.15rem 1.25rem;
  background: var(--bg-beige);
  border-top: 1.5px solid var(--border-light);
  flex-shrink: 0;
  max-height: 55vh;
  overflow-y: auto;
}

.cart-pricing-summary {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.75rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: var(--text-body);
}

.pricing-row.grand-total-row {
  border-top: 1.5px dashed var(--border-light);
  padding-top: 0.45rem;
  margin-top: 0.45rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.grand-total-val {
  color: var(--primary-garnet);
  font-size: 1.15rem;
  font-weight: 900;
}

/* ==========================================================================
   Order Success Modal
   ========================================================================== */
.order-success-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
}

.success-check-icon {
  width: 64px;
  height: 64px;
  background: #E6F4EA;
  color: var(--green-veg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

/* ==========================================================================
   Store Admin Dashboard
   ========================================================================== */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: var(--bg-white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.orders-table-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.order-row-card {
  background: var(--bg-beige);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.85rem;
}

.order-status-select {
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  border: 1.5px solid var(--border-light);
  outline: none;
  background: #FFFFFF;
  cursor: pointer;
}

/* Switch toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #CCC;
  transition: .3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--green-veg);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* ==========================================================================
   Mobile Bottom Navigation
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(44, 34, 30, 0.06);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }
  .nav-links {
    display: none;
  }
}

.mobile-bottom-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.mobile-nav-btn.active, .mobile-nav-btn:hover {
  color: var(--primary-garnet);
}

.mobile-nav-btn-icon {
  font-size: 1.25rem;
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast,
.toast-notification {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(44, 34, 30, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 90%;
}

.toast.show,
.toast-notification.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Site Footer */
.site-footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 2.5rem 0 3.5rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
/* Order Tracking Styles */
.tracking-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  margin-top: 1.25rem;
}

.tracking-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2rem 0;
}

.tracking-stepper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 4px;
  background: #EFE8DE;
  z-index: 1;
}

.tracking-stepper-progress {
  position: absolute;
  top: 18px;
  left: 30px;
  height: 4px;
  background: var(--green-veg);
  z-index: 2;
  transition: width 0.4s ease;
}

.tracking-step {
  position: relative;
  z-index: 3;
  text-align: center;
  flex: 1;
}

.tracking-step-node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid #EFE8DE;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tracking-step.active .tracking-step-node {
  border-color: var(--green-veg);
  background: var(--green-veg);
  color: #FFFFFF;
  box-shadow: 0 0 0 5px rgba(0, 132, 61, 0.15);
}

.tracking-step.current .tracking-step-node {
  border-color: var(--primary-garnet);
  background: var(--primary-garnet);
  color: #FFFFFF;
  box-shadow: 0 0 0 6px rgba(184, 27, 46, 0.2);
}

.tracking-step-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.tracking-step.active .tracking-step-title {
  color: var(--text-dark);
}

.tracking-step.current .tracking-step-title {
  color: var(--primary-garnet);
  font-weight: 800;
}

@media (max-width: 640px) {
  .tracking-stepper {
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
  }
  .tracking-stepper::before {
    top: 20px;
    bottom: 20px;
    left: 18px;
    width: 4px;
    height: auto;
    right: auto;
  }
  .tracking-stepper-progress {
    top: 20px;
    left: 18px;
    width: 4px;
    height: 0;
    transition: height 0.4s ease;
  }
  .tracking-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }
  .tracking-step-node {
    margin: 0;
    flex-shrink: 0;
  }
}


/* ==========================================================================
   Split Hero Section (Text Left, Image Showcase Right)
   ========================================================================== */
.hero-split-section {
  position: relative;
  background: radial-gradient(circle at 75% 50%, #2A1C16 0%, #170F0B 60%, #0F0A07 100%);
  color: #FFFFFF;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  overflow: hidden;
  border-bottom: 2px solid #2E2019;
  box-sizing: border-box;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column: Text & CTAs */
.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(230, 161, 0, 0.12);
  color: var(--gold-vibrant);
  border: 1.5px solid rgba(230, 161, 0, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-main-title {
  font-size: 3.8rem;
  line-height: 1.12;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-title-top {
  display: block;
  font-family: var(--font-heading);
  color: #FFFFFF;
}

.hero-title-accent {
  display: block;
  font-family: var(--font-heading);
  color: var(--gold-vibrant);
  font-style: italic;
  font-weight: 700;
}

.hero-lead-text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #D6CBC5;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Metrics Row */
.hero-metrics-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.metric-val span {
  color: var(--gold-vibrant);
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #A39690;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

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

.btn-hero-primary {
  background: #FFFFFF;
  color: #170F0B;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
  background: var(--gold-vibrant);
  color: #170F0B;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 161, 0, 0.35);
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-hero-whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  transform: translateY(-2px);
}

/* Right Column: Visual Showcase */
.hero-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-glow-circle {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 161, 0, 0.28) 0%, rgba(184, 27, 46, 0.15) 45%, transparent 70%);
  filter: blur(25px);
  z-index: 1;
}

.hero-circle-mask {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #1D130E;
  box-shadow: 0 0 0 10px rgba(230, 161, 0, 0.08), 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.hero-image-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-product-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-product-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s ease;
}

.hero-product-slide.active .hero-showcase-img {
  animation: heroFloat 5s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.03) translateY(-8px); }
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  z-index: 4;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.badge-top-left {
  top: 15px;
  left: -10px;
  background: var(--gold-vibrant);
  color: #170F0B;
  border: 2px solid #FFD066;
}

.badge-bottom-right {
  bottom: 25px;
  right: -15px;
  background: rgba(23, 15, 11, 0.9);
  color: #FFFFFF;
  border: 1.5px solid rgba(230, 161, 0, 0.4);
}

/* Navigation Arrows */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  line-height: 1;
}

.hero-nav-arrow:hover {
  background: var(--gold-vibrant);
  color: #170F0B;
  border-color: var(--gold-vibrant);
}

.arrow-left { left: -45px; }
.arrow-right { right: -45px; }

/* Slide Indicator Dots */
.hero-slide-dots {
  position: absolute;
  bottom: -25px;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--gold-vibrant);
}

/* Responsive adjustments (Mobile Order: Text -> Image -> CTA Buttons) */
@media (max-width: 992px) {
  .hero-split-section {
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 1.75rem;
    box-sizing: border-box;
  }
  .hero-split-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    width: 100%;
  }
  .hero-text-col {
    display: contents; /* Unwraps items to participate in flex order */
  }
  .hero-tag-pill {
    order: 1;
    margin-bottom: 0.35rem;
    padding: 0.25rem 0.85rem;
    font-size: 0.72rem;
  }
  .hero-main-title {
    order: 2;
    font-size: 2.1rem;
    margin-bottom: 0.4rem;
    line-height: 1.15;
  }
  .hero-lead-text {
    order: 3;
    max-width: 100%;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.45;
  }
  .hero-metrics-row {
    order: 4;
    justify-content: center;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    width: 100%;
    max-width: 420px;
    gap: 1.25rem;
  }
  .hero-visual-col {
    order: 5;
    min-height: auto;
    padding: 0.4rem 0 0.85rem;
    width: 100%;
  }
  .hero-cta-group {
    order: 6;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-top: 0.5rem;
    gap: 0.5rem;
    justify-content: center;
  }
  .hero-cta-group .btn {
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }
  .arrow-left { left: 10px; width: 34px; height: 34px; font-size: 1.1rem; }
  .arrow-right { right: 10px; width: 34px; height: 34px; font-size: 1.1rem; }
}

@media (max-width: 600px) {
  .hero-split-section {
    min-height: calc(100vh - 60px - 62px);
    min-height: calc(100dvh - 60px - 62px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0 1.5rem;
    box-sizing: border-box;
  }
  .hero-tag-pill {
    padding: 0.2rem 0.75rem;
    font-size: 0.68rem;
    margin-bottom: 0.3rem;
  }
  .hero-main-title {
    font-size: 1.65rem;
    margin-bottom: 0.3rem;
    line-height: 1.12;
  }
  .hero-lead-text {
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    max-width: 330px;
  }
  .hero-metrics-row {
    gap: 0.85rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .metric-val {
    font-size: 1.15rem;
  }
  .metric-label {
    font-size: 0.62rem;
  }
  .metric-divider {
    height: 20px;
  }
  .hero-visual-col {
    padding: 0.25rem 0 0.6rem;
  }
  .hero-circle-mask {
    width: 200px;
    height: 200px;
  }
  .hero-glow-circle {
    width: 215px;
    height: 215px;
  }
  .floating-badge {
    padding: 0.2rem 0.55rem;
    font-size: 0.65rem;
  }
  .badge-top-left { top: -4px; left: 8px; }
  .badge-bottom-right { bottom: 6px; right: 8px; }
  .hero-cta-group {
    margin-top: 0.4rem;
    max-width: 280px;
    gap: 0.4rem;
  }
  .btn-hero-primary {
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }
  .btn-hero-whatsapp {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }
  .arrow-left { left: 4px; width: 30px; height: 30px; }
  .arrow-right { right: 4px; width: 30px; height: 30px; }
}


/* ==========================================================================
   Bottom Status Bar (Mobile-Only Display)
   ========================================================================== */
.bottom-status-bar {
  display: none; /* Hidden by default on Desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #ECE6DF;
  box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  padding: 0.4rem 0.5rem 0.5rem;
}

@media (max-width: 768px) {
  .bottom-status-bar {
    display: block; /* Visible only on Mobile / Tablets */
  }
  .bakingo-rich-footer,
  .site-footer {
    padding-bottom: 5.5rem !important;
  }
}

.bottom-status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 520px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.status-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.1rem;
  color: var(--text-dark);
  font-family: inherit;
  transition: transform 0.15s ease;
}

.status-nav-btn:active {
  transform: scale(0.92);
}

.status-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}

.status-nav-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #33221C;
  line-height: 1.1;
  white-space: nowrap;
}

.status-nav-btn.active .status-nav-label,
.status-nav-btn.highlight .status-nav-label {
  color: var(--primary-garnet);
  font-weight: 800;
}/* Tracking Stepper Styles */
.tracking-container {
  max-width: 680px;
  margin: 2.5rem auto 3.5rem;
  padding: 0 1rem;
}

.tracking-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.tracking-search-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tracking-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2rem 0 1.75rem;
}

.tracking-stepper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: #E8E0D7;
  z-index: 1;
}

.tracking-stepper-progress {
  position: absolute;
  top: 18px;
  left: 24px;
  height: 3px;
  background: var(--green-veg);
  z-index: 2;
  transition: width 0.4s ease;
}

.tracking-step-node {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 75px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #E8E0D7;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tracking-step-node.completed .step-circle {
  background: var(--green-veg);
  border-color: var(--green-veg);
  color: #FFFFFF;
}

.tracking-step-node.current .step-circle {
  background: var(--primary-garnet);
  border-color: var(--primary-garnet);
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(184, 27, 46, 0.2);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.45rem;
  line-height: 1.2;
}

.tracking-step-node.completed .step-label,
.tracking-step-node.current .step-label {
  color: var(--text-dark);
  font-weight: 800;
}


/* ==========================================================================
   Bakingo-Style Visual Category Cards Grid
   ========================================================================== */
.category-showcase-section {
  padding: 3rem 0 2rem;
  background: var(--bg-beige);
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

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

.visual-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-category-card:hover {
  transform: translateY(-5px);
}

.category-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: #FFF;
  border: 2px solid rgba(230, 161, 0, 0.15);
}

.category-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.visual-category-card:hover .category-img-container img {
  transform: scale(1.06);
}

.category-card-label {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: #170F0B;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.visual-category-card:hover .category-card-label {
  color: var(--primary-garnet);
}

/* Category Page Specific Styles */
.category-page-container {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

/* Category Horizontal Scroll Rail */
.category-scroll-rail {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 0.85rem;
  margin-bottom: 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-scroll-rail::-webkit-scrollbar {
  display: none;
}

.category-scroll-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #FFFFFF;
  border: 1.5px solid #EFE8DE;
  color: #33221C;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.category-scroll-pill:hover {
  border-color: var(--primary-garnet);
  color: var(--primary-garnet);
  transform: translateY(-1px);
}

.category-scroll-pill.active {
  background: var(--primary-garnet);
  color: #FFFFFF;
  border-color: var(--primary-garnet);
  box-shadow: 0 4px 12px rgba(122, 12, 26, 0.25);
}

.category-page-header {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(23, 15, 11, 0.04);
  margin-bottom: 1.5rem;
}

.category-header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.category-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.category-breadcrumb a {
  color: var(--primary-garnet);
  text-decoration: none;
  font-weight: 700;
}

.category-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-beige);
  color: var(--primary-garnet);
  border: 1.5px solid var(--border-light);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-back-btn:hover {
  background: var(--primary-garnet);
  color: #FFFFFF;
  border-color: var(--primary-garnet);
}

.category-title-badge-group {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.category-items-count-badge {
  background: var(--bg-peach);
  color: var(--primary-garnet);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
}

.category-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-top: 0.75rem;
}

.category-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.category-search-input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  background: var(--bg-beige);
  color: var(--text-dark);
  font-family: inherit;
  transition: all 0.2s ease;
}

.category-search-input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--primary-garnet);
  box-shadow: 0 0 0 3px rgba(122, 12, 26, 0.12);
}

@media (max-width: 768px) {
  .category-page-header {
    padding: 1rem 1rem 1.15rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
  }
  .category-page-header h1 {
    font-size: 1.45rem !important;
  }
  .category-scroll-rail {
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
  }
  .category-scroll-pill {
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
  }
}

/* Other Categories Bottom Grid */
.other-categories-section {
  padding: 3.5rem 0 4.5rem;
  background: #FFFDF8;
  border-top: 1.5px solid var(--border-light);
  margin-top: 4rem;
}

/* Rich Bakingo-Style Footer */
.bakingo-rich-footer {
  background: #FAF7F2;
  border-top: 2px solid #EFE8DE;
  padding: 3.5rem 0 6rem;
  color: #33221C;
}

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

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

@media (max-width: 500px) {
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.footer-col-title {
  color: var(--primary-garnet);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.15rem;
}

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-links a {
  color: #59463D;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-col-links a:hover {
  color: var(--primary-garnet);
  text-decoration: underline;
}

.footer-social-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-garnet);
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background: var(--primary-garnet);
  color: #FFFFFF;
}

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

/* ==========================================================================
   Cart Policy Links & Razorpay Compliance Modals
   ========================================================================== */
.cart-policy-notice {
  margin: 0.85rem 0 0.5rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.policy-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--primary-garnet);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  display: inline;
}

.policy-link-btn:hover {
  color: var(--gold-vibrant);
}

.policy-modal-card {
  max-width: 540px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem 1.75rem;
}

.policy-section-block {
  margin-bottom: 1.25rem;
}

.policy-section-block h4 {
  font-size: 0.96rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.policy-section-block p,
.policy-section-block ul {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.policy-section-block ul {
  padding-left: 1.2rem;
  margin-top: 0.35rem;
}

/* End Policy Section Styles */

/* ==========================================================================
   Lucky Draw Winners Reels & Store Status Styles
   ========================================================================== */

.reels-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg-beige) 0%, #F5EDE4 100%);
  position: relative;
}

.reels-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.reels-carousel::-webkit-scrollbar {
  height: 6px;
}
.reels-carousel::-webkit-scrollbar-thumb {
  background: var(--gold-vibrant);
  border-radius: 10px;
}

.reel-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-light);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-vibrant);
}

.reel-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  background: #170F0B;
  overflow: hidden;
}

.reel-video-wrapper img,
.reel-video-wrapper video,
.reel-video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(184, 27, 46, 0.9);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--primary-garnet);
}

.reel-badge-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold-vibrant);
  color: #170F0B;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 2;
}

.reel-info-bar {
  padding: 0.95rem 1rem;
  background: var(--bg-white);
}

.reel-winner-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.reel-prize-text {
  font-size: 0.84rem;
  color: var(--primary-garnet);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.reel-date-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Store Closed Alert Header Bar */
.store-status-alert-bar {
  background: linear-gradient(90deg, #991B1B 0%, #DC2626 50%, #991B1B 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 2px 10px rgba(153, 27, 27, 0.4);
  z-index: 999;
}

.store-open-pill {
  background: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.store-closed-pill {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid #FAD2CF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Reel Video Modal */
.reel-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.reel-modal-card {
  background: #170F0B;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 2px solid var(--gold-vibrant);
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Optimization Suite (≤ 768px & ≤ 480px)
   ========================================================================== */

/* 1. Mobile Floating Cart Bar */
.mobile-floating-cart-bar {
  display: none;
  position: fixed;
  bottom: 72px;
  left: 12px;
  right: 12px;
  background: linear-gradient(135deg, #137333 0%, #0D5323 100%);
  color: #FFFFFF;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(19, 115, 51, 0.45);
  z-index: 150;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  animation: slideUpFloat 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.mobile-floating-cart-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-cart-items-pill {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.mobile-cart-total-price {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mobile-floating-cart-action {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
}

/* 2. Media Queries for Mobile Screens (≤ 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* Offset for fixed bottom navigation bar */
  }

  .site-header {
    padding: 0.15rem 0;
  }

  .navbar {
    height: 60px;
    padding: 0 0.5rem;
  }

  .brand-logo-img {
    height: 38px;
    max-height: 38px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-tagline {
    font-size: 0.55rem;
  }

  .nav-links-center,
  .nav-links {
    display: none !important;
  }

  .header-actions {
    gap: 0.35rem;
    display: flex;
    align-items: center;
  }

  .header-veg-indicator {
    padding: 0.22rem 0.45rem;
    gap: 0.25rem;
  }

  .header-veg-indicator .veg-square {
    width: 12px;
    height: 12px;
  }

  .header-veg-indicator .veg-dot {
    width: 5px;
    height: 5px;
  }

  .header-veg-indicator .veg-text {
    font-size: 0.65rem;
  }

  .store-open-pill,
  .store-closed-pill {
    padding: 0.2rem 0.45rem;
    font-size: 0.68rem;
  }

  .pincode-pill {
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
  }

  .header-cart-btn {
    width: 38px;
    height: 38px;
  }

  .mobile-floating-cart-bar {
    display: flex;
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-light);
    z-index: 140;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }

  .mobile-bottom-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    align-items: center;
  }

  .mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0.3rem 0;
  }

  .mobile-nav-btn.active,
  .mobile-nav-btn:hover {
    color: var(--primary-garnet);
    font-weight: 800;
  }

  .bakingo-rich-footer,
  .site-footer {
    padding-bottom: 6.5rem !important;
  }
}

/* 3. Media Queries for Phone Screens (≤ 600px) */
@media (max-width: 600px) {
  .container {
    padding: 0 0.85rem;
  }

  /* Category Horizontal Rail */
  .category-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.4rem 0.25rem 0.85rem;
    gap: 0.85rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .visual-category-card {
    flex: 0 0 88px;
    scroll-snap-align: start;
  }

  .category-img-container {
    width: 88px;
    height: 88px;
    border-radius: 16px;
  }

  .category-card-label {
    font-size: 0.74rem;
    margin-top: 0.35rem;
  }

  /* 2-Column Product Grid for Mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card {
    border-radius: var(--radius-lg);
  }

  .product-img-wrapper,
  .product-img-wrap {
    height: 150px;
  }

  .product-info-wrapper,
  .product-content {
    padding: 0.75rem 0.65rem 0.85rem;
  }

  .product-title {
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
    min-height: 2.3em;
  }

  .product-desc-snippet,
  .product-desc {
    font-size: 0.72rem;
    -webkit-line-clamp: 1;
    min-height: auto;
    margin-bottom: 0.45rem;
  }

  .delivery-scope-badge {
    font-size: 0.58rem;
    padding: 0.1rem 0.35rem;
  }

  .product-price-row,
  .product-bottom {
    padding-top: 0.45rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .product-price {
    font-size: 1.05rem;
    text-align: left;
  }

  .product-price-row button,
  .product-price-row a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.38rem 0.55rem;
    font-size: 0.76rem;
  }

  .veg-badge {
    top: 0.5rem;
    left: 0.5rem;
    width: 16px;
    height: 16px;
  }

  .veg-dot {
    width: 6px;
    height: 6px;
  }

  /* Product Modal as Bottom Sheet */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal-card {
    border-radius: 22px 22px 0 0;
    max-height: 92vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-bottom: none;
  }

  .modal-body-grid {
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-img-col {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    flex-shrink: 0;
  }

  .modal-info-col {
    padding: 1.25rem 1.25rem 2.5rem;
  }

  .modal-title {
    font-size: 1.35rem;
  }

  .modal-price {
    font-size: 1.25rem;
  }

  .modal-actions-row {
    position: sticky;
    bottom: 0;
    background: #FFFFFF;
    margin-top: 1rem;
    padding: 0.75rem 0;
    border-top: 1.5px solid #F3EDE5;
    z-index: 10;
  }

  .size-options-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .size-option-card {
    padding: 0.45rem 0.25rem;
  }

  .size-weight {
    font-size: 0.76rem;
  }

  .size-cost {
    font-size: 0.84rem;
  }

  /* Full Screen Cart Drawer */
  .cart-drawer-card,
  .cart-drawer {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .cart-drawer-header {
    padding: 0.9rem 1rem;
  }

  .cart-drawer-items-list {
    padding: 0.85rem 1rem;
  }

  .cart-item-card {
    padding: 0.6rem;
    gap: 0.65rem;
  }

  .cart-item-img-col {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
  }

  .cart-drawer-footer {
    padding: 0.85rem 1rem;
    max-height: 60vh;
  }

  /* Admin Dashboard Mobile */
  .admin-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .metric-card {
    padding: 0.85rem;
  }

  .orders-table-wrapper {
    padding: 0.85rem;
  }
}

/* Extra Small Phones (≤ 360px) */
@media (max-width: 360px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-img-wrapper,
  .product-img-wrap {
    height: 185px;
  }
}

/* Category Header Inner */
.category-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 0.35rem;
}

/* About Section Split Grid */
.about-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-img-col {
  order: 2;
}

.about-text-col {
  order: 1;
}

@media (max-width: 768px) {
  .about-split-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .about-img-col {
    order: 1 !important; /* Cake image on top */
    width: 100%;
  }

  .about-text-col {
    order: 2 !important; /* Text below the cake image */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text-col .section-title {
    text-align: center !important;
  }

  .about-badges-row {
    justify-content: center !important;
  }
}

/* Contact Section Split Grid */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-address-col {
  order: 1;
}

.contact-map-col {
  order: 2;
}

@media (max-width: 768px) {
  .contact-split-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-address-col {
    order: 1 !important; /* Address card on top */
    width: 100%;
  }

  .contact-map-col {
    order: 2 !important; /* Map card on bottom */
    width: 100%;
    min-height: 280px;
  }
}