/* ==========================================================================
   7 Hills Pooja Store — Production E-Commerce Design System
   Brand: 7 Hills Pooja Store
   Colors: Sacred Saffron, Temple Gold, Auspicious Crimson, Warm Cream
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-maroon: #5C0612;
  --primary-maroon-dark: #3F020A;
  --primary-maroon-light: #7E1220;
  
  --primary-saffron: #E65100;
  --primary-saffron-light: #FF8F00;
  --primary-saffron-hover: #BF360C;
  
  --accent-gold: #D4AF37;
  --accent-gold-light: #F7E7B4;
  --accent-gold-dark: #9A7B1C;
  
  /* Backgrounds & Surfaces */
  --bg-page: #FBF8F2;
  --bg-surface: #FFFFFF;
  --bg-surface-secondary: #F4EFE6;
  --bg-cream: #FAF4EB;
  
  /* Text & Neutral Colors */
  --text-main: #211D1D;
  --text-secondary: #574F4F;
  --text-muted: #7D7373;
  --text-light: #A49B9B;
  --text-white: #FFFFFF;
  
  /* Borders & Shadows */
  --border-subtle: #EBE3D5;
  --border-medium: #D9CDBC;
  --border-gold: rgba(212, 175, 55, 0.4);
  
  --shadow-xs: 0 1px 3px rgba(63, 2, 10, 0.05);
  --shadow-sm: 0 2px 8px rgba(63, 2, 10, 0.07);
  --shadow-md: 0 6px 18px rgba(63, 2, 10, 0.09);
  --shadow-lg: 0 12px 28px rgba(63, 2, 10, 0.12);
  --shadow-xl: 0 20px 40px rgba(63, 2, 10, 0.16);
  
  /* Functional Colors */
  --success: #1B5E20;
  --success-bg: #E8F5E9;
  --success-border: #A5D6A7;
  
  --danger: #C62828;
  --danger-bg: #FFEBEE;
  
  --warning: #EF6C00;
  --warning-bg: #FFF3E0;
  
  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Layout Sizing */
  --max-content-width: 1280px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

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

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, var(--primary-maroon-dark), var(--primary-maroon));
  color: var(--accent-gold-light);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid var(--accent-gold);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-link {
  color: var(--accent-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity var(--transition-fast);
}

.top-bar-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* ==========================================================================
   DESKTOP MAIN HEADER
   ========================================================================== */
.site-header {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-saffron), var(--primary-maroon));
  border: 1.5px solid var(--accent-gold);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-xs);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  color: var(--primary-maroon);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--primary-saffron);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Header Location Selector */
.header-location-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 12px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  max-width: 170px;
}

.header-location-pill:hover {
  border-color: var(--primary-saffron);
}

.loc-icon {
  color: var(--primary-saffron);
  font-size: 16px;
}

.loc-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: var(--text-main);
}

/* Search Bar (Real & Prominent) */
.header-search-wrapper {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.search-form-container {
  display: flex;
  align-items: center;
  background-color: var(--bg-page);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 3px 6px 3px 16px;
  transition: all var(--transition-normal);
}

.search-form-container:focus-within {
  border-color: var(--primary-saffron);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.12);
}

.search-category-select {
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  padding-right: 8px;
  border-right: 1px solid var(--border-medium);
  cursor: pointer;
  outline: none;
  max-width: 130px;
}

.main-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
}

.main-search-input::placeholder {
  color: var(--text-muted);
}

.search-action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.search-action-btn:hover {
  background-color: var(--bg-surface-secondary);
  color: var(--primary-saffron);
}

.search-submit-btn {
  background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(230, 81, 0, 0.25);
}

.search-submit-btn:hover {
  background: var(--primary-saffron-hover);
}

/* Instant Search Suggestions Box */
.search-suggestions-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  overflow: hidden;
  display: none;
}

.suggestion-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-fast);
}

.suggestion-row:last-child {
  border-bottom: none;
}

.suggestion-row:hover {
  background-color: var(--bg-cream);
}

.suggestion-thumb {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  background: #EEE;
}

.suggestion-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.suggestion-cat {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

/* Header Actions (Wishlist, Account, Cart) */
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  position: relative;
  transition: background-color var(--transition-fast);
  cursor: pointer;
}

.header-action-item:hover {
  background-color: var(--bg-cream);
  color: var(--primary-maroon);
}

.action-icon-wrapper {
  font-size: 22px;
  position: relative;
  display: flex;
  align-items: center;
}

.badge-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--primary-saffron);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.action-label-box {
  display: flex;
  flex-direction: column;
}

.action-subtext {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.1;
}

.action-maintext {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-maroon);
  line-height: 1.2;
}

/* Sub Navbar (Category Links on Desktop) */
.header-subnav {
  border-top: 1px solid var(--border-subtle);
  background-color: #FFFFFF;
}

.subnav-categories-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.subnav-categories-list::-webkit-scrollbar {
  display: none;
}

.subnav-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.subnav-item a:hover, .subnav-item.active a {
  color: var(--primary-saffron);
  background-color: var(--bg-cream);
}

.subnav-icon {
  font-size: 15px;
}

/* ==========================================================================
   MOBILE HEADER & BOTTOM NAVIGATION
   ========================================================================== */
.mobile-header-bar {
  display: none;
  padding: 10px 16px;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  justify-content: space-between;
}

.mobile-search-row {
  display: none;
  padding: 8px 16px 12px 16px;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-medium);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  z-index: 999;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.mobile-nav-tab.active {
  color: var(--primary-saffron);
}

.mobile-nav-icon {
  font-size: 20px;
  position: relative;
  margin-bottom: 2px;
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--bg-page);
  box-shadow: var(--shadow-xl);
  transition: left var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer-overlay.active .mobile-drawer-content {
  left: 0;
}

.drawer-header {
  background: linear-gradient(135deg, var(--primary-maroon-dark), var(--primary-maroon));
  color: #FFFFFF;
  padding: 24px 20px;
  border-bottom: 2px solid var(--accent-gold);
}

.drawer-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--accent-gold);
  color: var(--primary-maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.drawer-menu-list {
  padding: 16px 0;
  list-style: none;
}

.drawer-menu-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: background-color var(--transition-fast);
}

.drawer-menu-item a:hover, .drawer-menu-item.active a {
  background-color: var(--bg-cream);
  color: var(--primary-saffron);
}

/* ==========================================================================
   PAGE ROOT & VIEW SYSTEM
   ========================================================================== */
#app-root {
  flex: 1;
  min-height: calc(100vh - 200px);
}

.page-view {
  display: none;
  animation: fadeIn 0.3s ease;
}

.page-view.active {
  display: block;
}

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

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1.5px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.28);
}

.btn-primary:hover {
  background: var(--primary-saffron-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 81, 0, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--bg-surface);
  border-color: var(--border-medium);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--primary-saffron);
  background-color: var(--bg-cream);
  color: var(--primary-saffron);
}

.btn-maroon {
  background: linear-gradient(135deg, var(--primary-maroon), var(--primary-maroon-light));
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
}

.btn-maroon:hover {
  background: var(--primary-maroon-dark);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #B89726);
  color: var(--primary-maroon-dark);
  font-weight: 700;
}

.btn-gold:hover {
  filter: brightness(1.06);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   PRODUCT CARDS & GRIDS
   ========================================================================== */
.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.product-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xs);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.product-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--bg-surface-secondary);
  overflow: hidden;
}

.product-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  z-index: 2;
}

.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all var(--transition-fast);
  z-index: 2;
}

.card-wishlist-btn:hover, .card-wishlist-btn.active {
  color: #E53935;
  background: #FFFFFF;
  transform: scale(1.1);
}

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

.product-card-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 0.4px;
}

.product-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin: 4px 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
  line-height: 1.4;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background-color: var(--success);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
}

.rating-count {
  font-size: 11px;
  color: var(--text-muted);
}

.product-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 8px;
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.selling-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-maroon);
  line-height: 1;
}

.mrp-price {
  font-size: 11px;
  color: var(--text-light);
  text-decoration: line-through;
  line-height: 1;
}

.discount-tag {
  font-size: 10px;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1.2;
}

.card-actions-row {
  display: flex;
  gap: 6px;
  align-items: center;
  width: 100%;
}

.card-add-btn {
  width: 100%;
  background-color: #FFFFFF;
  border: 1.5px solid #16a34a;
  color: #16a34a;
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.card-add-btn:hover, .card-add-btn:active {
  background: #16a34a;
  color: #FFFFFF;
}

/* Quantity Stepper when added to cart */
.qty-stepper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #16a34a;
  border-radius: 6px;
  overflow: hidden;
  background-color: #16a34a;
  height: 30px;
}

.stepper-btn {
  width: 32px;
  height: 30px;
  background: transparent;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.1s;
}

.stepper-btn:active {
  background: rgba(0, 0, 0, 0.15);
}

.stepper-val {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  padding: 0 4px;
}

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

.stepper-val {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   HOME PAGE HERO & PROMOTIONAL SECTIONS
   ========================================================================== */
.hero-section {
  padding: 24px 0;
}

.hero-banner-card {
  background: linear-gradient(135deg, #42060D 0%, #680E1B 45%, #921727 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.hero-mandala-bg {
  position: absolute;
  right: -80px;
  top: -80px;
  font-size: 360px;
  color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
  user-select: none;
  animation: slowSpin 120s linear infinite;
}

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

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title span {
  color: var(--accent-gold-light);
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 26px;
  line-height: 1.6;
}

.hero-actions-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-features-strip {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 20px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-gold-light);
}

/* Category Quick Visual Grid */
.home-section {
  padding: 32px 0;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 10px;
}

.section-title-group h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-maroon);
}

.section-title-group p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-saffron);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-all-link:hover {
  text-decoration: underline;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.category-card-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--bg-cream);
  border: 1px solid var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 12px;
}

.category-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.category-card-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Flash Deals Section */
.deals-banner-strip {
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.deal-timer-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-saffron);
}

.timer-chip {
  background: var(--primary-maroon);
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  font-family: monospace;
  font-size: 14px;
}

/* Trust Badges Banner */
.trust-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin: 40px 0;
  box-shadow: var(--shadow-sm);
}

.trust-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  font-size: 32px;
  color: var(--primary-saffron);
}

.pillar-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   PRODUCT DETAILS VIEW
   ========================================================================== */
.product-details-container {
  padding: 32px 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
}

.breadcrumb-nav a:hover {
  color: var(--primary-saffron);
}

.pdp-main-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 48px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

/* PDP Gallery */
.pdp-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-main-image-box {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--bg-surface-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.pdp-main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-thumbnails-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-medium);
  object-fit: cover;
  cursor: pointer;
  background-color: var(--bg-surface-secondary);
  transition: border-color var(--transition-fast);
}

.pdp-thumb.active {
  border-color: var(--primary-saffron);
}

/* PDP Info */
.pdp-info-column {
  display: flex;
  flex-direction: column;
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-maroon);
  line-height: 1.25;
  margin-bottom: 10px;
}

.pdp-rating-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pdp-price-box {
  background-color: var(--bg-cream);
  border: 1px solid var(--accent-gold-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp-selling-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.pdp-mrp {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.pdp-discount-badge {
  background-color: var(--danger);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
}

.pdp-tax-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Pincode checker */
.pincode-checker-box {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 18px 0;
  max-width: 360px;
}

.pincode-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.pdp-actions-row {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.pdp-btn-add {
  flex: 1.2;
}

.pdp-btn-buy {
  flex: 1.2;
}

.pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.pdp-specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-specs-table td {
  padding: 10px 12px;
  font-size: 13px;
}

.pdp-specs-table td:first-child {
  font-weight: 600;
  color: var(--text-muted);
  width: 35%;
}

/* Frequently Bought Together Bundle */
.bundle-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.bundle-items-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.bundle-item-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  object-fit: cover;
}

/* ==========================================================================
   CART & CHECKOUT PAGES
   ========================================================================== */
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 32px 0;
}

.cart-items-wrapper {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.cart-item-row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-surface-secondary);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.cart-sidebar-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.coupon-field {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px dashed var(--border-medium);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bill-summary-table {
  width: 100%;
  margin: 16px 0;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.bill-row.total {
  border-top: 1.5px dashed var(--border-medium);
  padding-top: 14px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-maroon);
}

/* ==========================================================================
   ORDER TRACKING & TIMELINE
   ========================================================================== */
.tracking-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin: 32px 0;
  padding-left: 36px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background-color: var(--border-medium);
}

.timeline-step {
  position: relative;
}

.timeline-node {
  position: absolute;
  left: -36px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background-color: var(--bg-surface);
  border: 3px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.timeline-step.completed .timeline-node {
  background-color: var(--success);
  border-color: var(--success);
  color: #FFFFFF;
}

.timeline-step.active .timeline-node {
  background-color: var(--primary-saffron);
  border-color: var(--primary-saffron);
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--primary-maroon-dark);
  color: #FFFFFF;
  border-top: 3px solid var(--accent-gold);
  margin-top: auto;
  padding-top: 48px;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent-gold-light);
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links-list a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.footer-bottom-strip {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-msg {
  background-color: var(--primary-maroon);
  color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP -> TABLET -> MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .product-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .pdp-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-announcement-bar,
  .site-header {
    display: none;
  }

  .mobile-header-bar {
    display: flex;
  }

  .mobile-search-row {
    display: block;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .hero-banner-card {
    padding: 24px 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .product-grid-4, .product-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .trust-pillars-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-page-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

/* ========================================== */
/* 24. PUSH NOTIFICATION BANNER (SIMULATED)  */
/* ========================================== */
.app-notification-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  padding: 12px 16px;
  pointer-events: none;
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-notification-banner.active {
  transform: translateY(0);
  pointer-events: auto;
}

.notification-banner-content {
  background: #2A0408;
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  max-width: 520px;
  width: 100%;
}

.notification-banner-icon {
  font-size: 24px;
  background: rgba(244, 180, 26, 0.15);
  padding: 8px;
  border-radius: var(--radius-circle);
  flex-shrink: 0;
}

.notification-banner-text {
  flex: 1;
}

.notification-banner-text strong {
  display: block;
  font-size: 13px;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.notification-banner-text p {
  font-size: 13px;
  color: #FAF8F5;
  margin: 0;
}

.notification-banner-close {
  background: none;
  border: none;
  color: #CCC;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.notification-banner-close:hover {
  color: #FFF;
}

/* ========================================== */
/* 25. ONBOARDING & QR / OTP SCREENS         */
/* ========================================== */
.onboarding-screen-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: radial-gradient(circle at 50% 30%, rgba(244, 180, 26, 0.1) 0%, rgba(92, 6, 18, 0.05) 60%, transparent 100%);
}

.onboarding-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.onboarding-progress-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.progress-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-subtle);
  transition: all var(--transition-base);
}

.progress-dot.active {
  background: var(--primary-maroon);
  width: 44px;
}

.progress-dot.completed {
  background: var(--accent-gold);
}

.qr-viewfinder {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 20px auto 28px;
  background: #FFFFFF;
  border: 2px dashed var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(244, 180, 26, 0.2);
  overflow: hidden;
}

.qr-scan-laser {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E53935, var(--accent-gold), transparent);
  box-shadow: 0 0 12px #E53935;
  animation: qrLaserMove 2.2s ease-in-out infinite alternate;
}

@keyframes qrLaserMove {
  0% { top: 10px; }
  100% { top: 205px; }
}

.qr-code-graphic {
  width: 140px;
  height: 140px;
  background: #FAF8F5;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}

.otp-digit-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 16px;
}

.otp-box-input {
  width: 52px;
  height: 56px;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--primary-maroon);
  transition: all var(--transition-fast);
}

.otp-box-input:focus {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 3px rgba(92, 6, 18, 0.15);
  outline: none;
}

.location-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 24px;
}

.location-chip-btn {
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.location-chip-btn:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold);
  color: var(--primary-maroon);
}

.delivery-choice-card {
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #FFFFFF;
}

.delivery-choice-card:hover, .delivery-choice-card.selected {
  border-color: var(--primary-maroon);
  background: rgba(92, 6, 18, 0.02);
  box-shadow: 0 4px 12px rgba(92, 6, 18, 0.08);
}

/* ==========================================================================
   26. NATIVE MOBILE APP SHELL & UI SYSTEM
   Inspired by Swiggy Instamart, Blinkit, and Flipkart Mobile Trends
   ========================================================================== */

.mobile-app-body {
  background-color: #EDE8DF;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Desktop View Mode Toggle */
.desktop-mode-switch {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 100000;
}

.mode-switch-btn {
  background: rgba(42, 4, 8, 0.9);
  color: #F4B41A;
  border: 1px solid rgba(244, 180, 26, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: all var(--transition-fast);
}

.mode-switch-btn:hover {
  background: #2A0408;
  color: #FFF;
  transform: translateY(-1px);
}

/* Mobile Application Shell Container */
.mobile-app-shell {
  max-width: 440px;
  margin: 0 auto;
  min-height: 100vh;
  background: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.18);
  padding-bottom: 60px;
  overflow-x: hidden;
}

.mobile-app-shell.full-viewport-mode {
  max-width: 100%;
  box-shadow: none;
}

@media (max-width: 480px) {
  .mobile-app-shell {
    max-width: 100%;
    box-shadow: none;
  }
  .desktop-mode-switch {
    display: none;
  }
}

/* 1. Top Quick-Commerce Utility Bar */
.app-top-utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background: #2A0408;
  color: #FFFFFF;
  font-size: 11px;
  z-index: 1010;
}

.utility-loc-box {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  max-width: 65%;
}

.util-pin {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.util-loc-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.util-loc-hint {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.util-loc-name {
  font-size: 11px;
  font-weight: 700;
  color: #FAF8F5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.util-btn {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.util-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.util-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  gap: 4px;
}

.util-btn-whatsapp:hover {
  background: #20BA5A;
}

/* 2. Main Mobile App Navigation Header */
.app-nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 12px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-header-root, .nav-header-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--primary-maroon);
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.icon-btn:hover {
  background: var(--bg-cream);
}

.app-brand-title {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary-maroon);
  flex: 1;
}

.brand-flame-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5C0612, #8E1526);
  color: #F4B41A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-maroon);
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.brand-sub {
  font-size: 9px;
  color: var(--accent-gold-dark);
  font-weight: 600;
}

.sub-header-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--primary-maroon);
  font-weight: 700;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

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

/* 3. Integrated Mobile Quick-Search Pill */
.app-search-wrapper {
  margin-top: 8px;
  position: relative;
}

.search-pill-box {
  display: flex;
  align-items: center;
  background: #F4EFE6;
  border: 1.5px solid #E2D7C5;
  border-radius: 999px;
  padding: 6px 12px;
  gap: 8px;
  transition: border-color var(--transition-fast);
}

.search-pill-box:focus-within {
  border-color: var(--primary-maroon);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(92, 6, 18, 0.08);
}

.search-lens-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.app-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  color: var(--text-main);
  min-width: 0;
}

.search-inline-btn {
  background: none;
  border: none;
  color: var(--primary-maroon);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 50%;
}

.search-inline-btn:hover {
  background: rgba(92, 6, 18, 0.08);
}

/* 4. Fixed Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  height: 58px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.06);
}

.mobile-app-shell.full-viewport-mode .mobile-bottom-nav {
  max-width: 100%;
}

.mobile-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-tab.active {
  color: var(--primary-maroon);
}

.cart-tab-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 5. Interactive ADD to Stepper on Product Cards */
.card-add-action-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.card-add-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--primary-maroon);
  color: var(--primary-maroon);
  font-weight: 800;
  font-size: 12px;
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 4px rgba(92, 6, 18, 0.1);
  transition: all var(--transition-fast);
}

.card-add-btn:hover {
  background: var(--primary-maroon);
  color: #FFFFFF;
}

.card-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--primary-maroon);
  color: #FFFFFF;
  border-radius: 6px;
  padding: 3px 6px;
  font-weight: 800;
  font-size: 12px;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(92, 6, 18, 0.2);
}

.card-stepper-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.card-stepper-qty {
  min-width: 14px;
  text-align: center;
}

/* 6. Sticky Action Bar on PDP & Cart */
.mobile-pdp-sticky-bar {
  position: fixed;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 998;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
}

.mobile-app-shell.full-viewport-mode .mobile-pdp-sticky-bar {
  max-width: 100%;
}

.mobile-cart-sticky-bar {
  position: fixed;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 998;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
}

.mobile-app-shell.full-viewport-mode .mobile-cart-sticky-bar {
  max-width: 100%;
}

/* Modal Bottom Sheets */
.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 92%;
  margin: auto;
  padding: 24px 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-medium);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.voice-pulse-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-maroon);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(244, 180, 26, 0.4);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 50%;
}

.drawer-footer-box {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-muted);
  background-color: var(--bg-cream);
}

/* ===================================================
   HYDERABAD VEDIC PANCHANGAM TICKER
=================================================== */
.hyderabad-panchangam-ticker {
  background: linear-gradient(135deg, #3A050B, #5C0612);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 12px 0 16px 0;
  box-shadow: 0 4px 12px rgba(92, 6, 18, 0.15);
  color: #FFF;
}

.ticker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
}

.ticker-loc-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticker-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s infinite;
}

.ticker-temple-tag {
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent-gold-light);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
}

.panchangam-chips-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.panchangam-chip {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
}

.panchangam-chip .p-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.panchangam-chip .p-val {
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panchangam-chip.highlight-muhurtham {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.panchangam-chip.highlight-muhurtham .p-val {
  color: #34D399;
}

.panchangam-chip.rahu-kalam {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.panchangam-chip.rahu-kalam .p-val {
  color: #F87171;
}

/* Devotional Innovations Bar */
.devotional-innovations-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.devotional-quick-pill {
  background: #FFF;
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-maroon);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}

.devotional-quick-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.devotional-quick-pill .pill-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.devotional-quick-pill .pill-text span {
  font-size: 10px;
  color: var(--text-muted);
}

/* ===================================================
   DIGITAL SANKALPAM VIEW STYLES
=================================================== */
.sankalpam-hero-box {
  background: linear-gradient(135deg, #4A050D, #2B0207);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #FFF;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.sankalpam-mantra-card {
  background: #FAF5E8;
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 16px 0;
  font-family: var(--font-heading);
  font-size: 13px;
  color: #4A050D;
  line-height: 1.8;
  text-align: center;
}

.ritual-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}

/* ===================================================
   STOTRAM & TEMPLE BELL COMPANION
=================================================== */
.stotram-bell-card {
  background: linear-gradient(135deg, #2B0207, #4A050D);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  color: #FFF;
  margin-bottom: 20px;
}

.btn-bell-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5A93C, #B37D19);
  border: 3px solid #FFF;
  color: #2B0207;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(229, 169, 60, 0.6);
  transition: transform 0.15s, box-shadow 0.15s;
  margin: 14px 0;
}

.btn-bell-ring:active {
  transform: scale(0.92);
}

.akhanda-jyoti-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
}

.akhanda-flame {
  display: inline-block;
  color: #F59E0B;
  filter: drop-shadow(0 0 14px #F59E0B);
  transition: all 0.3s;
}

.akhanda-flame.lit {
  color: #FFD700;
  filter: drop-shadow(0 0 22px #FFA500) drop-shadow(0 0 35px #FF4500);
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0% { transform: scale(1) rotate(-1deg); }
  50% { transform: scale(1.06) rotate(1deg); }
  100% { transform: scale(0.98) rotate(-0.5deg); }
}

/* ===================================================
   TRUE MOBILE-FIRST RESPONSIVE ARCHITECTURE (SWIGGY/ZOMATO POLISH)
=================================================== */

/* Safe Area Insets & Base Resets */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --bottom-nav-height: 58px;
  --floating-cart-height: 52px;
}

body.mobile-app-body {
  background-color: var(--bg-page);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-overflow-scrolling: touch;
}

/* Mobile-First Main Shell (Full width on phones, centered max-width container on tablet/desktop) */
.mobile-app-shell {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background: var(--bg-surface);
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 12px);
  overflow-x: hidden;
  box-shadow: none;
}

/* Tablet & Desktop Scaling (768px+) */
@media (min-width: 768px) {
  body.mobile-app-body {
    background: linear-gradient(180deg, #F9F6F0 0%, #EFE9DE 100%);
    padding: 0;
  }
  .mobile-app-shell {
    max-width: 960px;
    box-shadow: 0 4px 30px rgba(92, 6, 18, 0.08);
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
  }
}

@media (min-width: 1200px) {
  .mobile-app-shell {
    max-width: 1140px;
  }
}

/* Fluid Scoped Container with Comfortable Mobile Gutters */
.mobile-app-shell .container {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(16px, 4.5vw, 22px);
  padding-right: clamp(16px, 4.5vw, 22px);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Safe Area Utility Bar */
.app-top-utility-bar {
  padding-top: max(8px, var(--safe-top));
  padding-left: clamp(16px, 4.5vw, 22px);
  padding-right: clamp(16px, 4.5vw, 22px);
  background: linear-gradient(90deg, var(--primary-maroon-dark), var(--primary-maroon));
  color: #FFFFFF;
}

/* ===================================================
   UPCOMING SACRED FESTIVAL OCCASION BANNER
=================================================== */
.festival-occasion-banner {
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF5E5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 10px 0 16px 0;
  box-shadow: 0 4px 16px rgba(92, 6, 18, 0.05);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.festival-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(230, 81, 0, 0.12);
  color: var(--primary-saffron);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.festival-banner-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--primary-maroon);
  line-height: 1.35;
  margin-bottom: 6px;
}

.festival-banner-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.festival-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===================================================
   SWIGGY-STYLE HORIZONTAL CATEGORY SNAP STRIP
=================================================== */
.category-snap-strip-wrapper {
  width: 100%;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 0 10px 0;
  margin: 8px 0 14px 0;
  position: relative;
}

.category-snap-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 18px;
}

.category-snap-strip::-webkit-scrollbar {
  display: none;
}

.category-snap-pill,
.category-snap-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  width: 68px;
  transition: transform 0.15s ease;
}

.category-snap-pill:active,
.category-snap-item:active {
  transform: scale(0.92);
}

.category-snap-circle,
.category-snap-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1.5px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-maroon);
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.category-snap-circle svg,
.category-snap-icon svg {
  width: 22px;
  height: 22px;
}

.category-snap-pill.active .category-snap-circle,
.category-snap-item.active .category-snap-icon,
.category-snap-pill:hover .category-snap-circle,
.category-snap-item:hover .category-snap-icon {
  border-color: var(--primary-saffron);
  background: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.2);
  color: var(--primary-saffron);
}

.category-snap-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 68px;
}

.category-snap-pill.active .category-snap-label,
.category-snap-item.active .category-snap-label {
  color: var(--primary-saffron);
  font-weight: 700;
}

/* ===================================================
   STICKY CATEGORY FILTER BAR (PINNED ON SCROLL)
=================================================== */
.sticky-category-filter-bar {
  position: sticky;
  top: 60px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  transition: all 0.2s ease;
}

.sticky-category-filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip-btn {
  flex: 0 0 auto;
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s ease;
}

.filter-chip-btn.active, .filter-chip-btn:hover {
  background: var(--primary-maroon);
  color: #FFFFFF;
  border-color: var(--primary-maroon);
}

/* ===================================================
   RESPONSIVE PRODUCT & CATEGORY GRIDS
=================================================== */
/* 2-Column Base on Mobile (360px-480px), scales to 3-4 on Tablet/Desktop */
.product-grid-4, .product-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 2.5vw, 16px);
  margin-top: 12px;
}

@media (min-width: 600px) {
  .product-grid-4, .product-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .product-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 4-Column Category Grid on Home */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(6px, 2vw, 12px);
}

@media (min-width: 600px) {
  .category-cards-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .category-cards-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.category-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
}

.category-card:active {
  transform: scale(0.95);
}

.category-card-icon-circle {
  width: clamp(40px, 11vw, 48px);
  height: clamp(40px, 11vw, 48px);
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  margin: 0 auto 6px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-maroon);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.category-card-icon-circle svg {
  width: 22px;
  height: 22px;
}

.category-card-name {
  font-size: clamp(10px, 2.7vw, 11.5px);
  font-weight: 600;
  color: var(--primary-maroon);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 28px;
  margin: 0;
  word-break: break-word;
}

/* Category View Toggle Bar */
.category-view-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 4px;
}

.view-toggle-btns {
  display: inline-flex;
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2px;
}

.btn-toggle-view {
  border: none;
  background: transparent;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.15s;
}

.btn-toggle-view.active {
  background: #FFFFFF;
  color: var(--primary-maroon);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* List View Layout for Products */
.product-grid-list-mode {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.product-grid-list-mode .product-card {
  display: flex !important;
  flex-direction: row !important;
  padding: 10px !important;
  gap: 12px !important;
  align-items: center !important;
}

.product-grid-list-mode .product-card-img-wrapper {
  width: 80px !important;
  height: 80px !important;
  flex-shrink: 0 !important;
  border-radius: 8px !important;
}

.product-grid-list-mode .product-card-body {
  padding: 0 !important;
  flex: 1 !important;
}

.product-grid-list-mode .product-card-title {
  height: auto !important;
  margin-bottom: 4px !important;
}

.product-grid-list-mode .card-actions-row {
  max-width: 100px;
  margin-left: auto;
}

/* ===================================================
   PRODUCT CARD MOBILE-FIRST COMPACT DESIGN
=================================================== */
.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:active {
  transform: scale(0.98);
}

.product-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-surface-secondary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 6px;
}

.product-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img-wrapper img {
  transform: scale(1.05);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2px 2px 0 2px;
}

.product-card-title {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  height: 34px;
  overflow: hidden;
  color: var(--text-main);
  margin: 2px 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ===================================================
   SWIGGY-STYLE MINI FLOATING CART BAR
=================================================== */
.floating-cart-bar {
  display: none !important;
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 480px;
  height: var(--floating-cart-height);
  background: linear-gradient(135deg, #057A55, #0E9F6E);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(5, 122, 85, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 1050;
  cursor: pointer;
  animation: floatUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.floating-cart-bar.visible {
  display: flex !important;
}

@keyframes floatUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.floating-cart-left {
  display: flex;
  flex-direction: column;
}

.floating-cart-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
}

.floating-cart-sep {
  opacity: 0.7;
}

.floating-cart-hint {
  font-size: 10px;
  opacity: 0.9;
  letter-spacing: 0.2px;
}

.floating-cart-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ===================================================
   QUICK DEVOTIONAL REORDER CAROUSEL (SWIGGY/ZOMATO STYLE)
=================================================== */
.quick-reorder-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 14px 2px;
}

.quick-reorder-carousel::-webkit-scrollbar {
  display: none;
}

.reorder-card {
  flex: 0 0 145px;
  max-width: 145px;
  scroll-snap-align: start;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xs);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reorder-card:active {
  transform: scale(0.97);
}

.reorder-card-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  margin-bottom: 8px;
  border: 1px solid var(--border-subtle);
}

.reorder-card-info {
  margin-bottom: 8px;
}

.reorder-card-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 29px;
  margin-bottom: 4px;
}

.reorder-card-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.btn-reorder-action {
  width: 100%;
  padding: 6px 0;
  background: var(--bg-cream);
  border: 1px solid var(--accent-gold);
  color: var(--primary-maroon);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.btn-reorder-action:hover,
.btn-reorder-action:active {
  background: var(--primary-maroon);
  color: #FFFFFF;
  border-color: var(--primary-maroon);
}

/* ===================================================
   RESPONSIVE PAGE LAYOUT GRIDS (MOBILE-FIRST 1-COLUMN)
=================================================== */
.listing-layout-grid,
.cart-page-layout,
.checkout-page-layout,
.account-page-layout,
.contact-layout-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (min-width: 900px) {
  .listing-layout-grid {
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    gap: 24px !important;
  }
  .cart-page-layout,
  .checkout-page-layout {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 32px !important;
  }
  .account-page-layout {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 32px !important;
  }
  .contact-layout-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
}

/* ===================================================
   AMAZON-STYLE MOBILE CART UI
=================================================== */
.amazon-cart-subtotal-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}

.amazon-subtotal-title {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.amazon-subtotal-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.amazon-free-delivery-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 12px;
}

.amazon-btn-proceed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  background: linear-gradient(180deg, #FAD663 0%, #F5B024 100%);
  border: 1px solid #D69715;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(245, 176, 36, 0.35);
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease;
}

.amazon-btn-proceed:active {
  transform: scale(0.98);
}

.amazon-cart-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
}

.amazon-cart-top {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.amazon-cart-img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.amazon-cart-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.amazon-cart-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  text-decoration: none;
}

.amazon-cart-stock {
  font-size: 11px;
  color: #007600;
  font-weight: 700;
  margin-bottom: 4px;
}

.amazon-cart-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.amazon-cart-selling {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.amazon-cart-mrp {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

.amazon-cart-off {
  font-size: 11px;
  font-weight: 700;
  color: var(--danger);
}

.amazon-cart-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

.amazon-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-medium);
  border-radius: 6px;
  background: #FAFAFA;
  overflow: hidden;
}

.amazon-stepper-btn {
  width: 32px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0EDE6;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-maroon);
  cursor: pointer;
}

.amazon-stepper-btn:active {
  background: #E2DBD0;
}

.amazon-stepper-val {
  min-width: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.amazon-btn-action {
  font-size: 12px;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 5px 9px;
  border-radius: 6px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.amazon-btn-action.delete {
  color: var(--danger);
  border-color: rgba(198, 40, 40, 0.25);
}

/* ===================================================
   SWIGGY/ZOMATO-STYLE MOBILE CHECKOUT UI
=================================================== */
.swiggy-checkout-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}

.swiggy-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.swiggy-step-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.swiggy-change-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-saffron);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.swiggy-address-card-selected {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  border: 1px solid var(--accent-gold-light);
}

.swiggy-address-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.swiggy-address-info {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.swiggy-address-tag {
  display: inline-block;
  background: var(--primary-maroon);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 6px;
}

.swiggy-bill-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.swiggy-bill-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.swiggy-bill-item.highlight-green {
  color: var(--success);
  font-weight: 600;
}

.swiggy-bill-sep {
  border-top: 1px dashed var(--border-medium);
  margin: 4px 0;
}

.swiggy-bill-item.grand {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.swiggy-savings-banner {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #1B5E20;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.swiggy-sticky-order-bar {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  z-index: 1060;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .swiggy-sticky-order-bar {
    display: none !important;
  }
}

/* ===================================================
   STICKY THUMB-FRIENDLY BOTTOM NAVIGATION
=================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: calc(var(--bottom-nav-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .mobile-bottom-nav {
    max-width: 1140px;
  }
}

.mobile-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.15s ease;
}

.mobile-nav-tab svg {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-tab.active {
  color: var(--primary-maroon);
}

.mobile-nav-tab.active svg {
  transform: scale(1.18);
  stroke: var(--primary-maroon);
  stroke-width: 2.4;
}

/* Active Indicator Dot */
.mobile-nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: var(--primary-maroon);
  border-radius: 50%;
}

.cart-tab-icon-wrap, .cart-icon-animated-wrap {
  position: relative;
  display: inline-flex;
}

.badge-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary-saffron);
  color: #FFFFFF;
  font-size: 9.5px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid #FFFFFF;
}

.cart-badge-bounce {
  animation: badgePop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
  0% { transform: scale(0.6); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* ===================================================
   SLIDE-UP CART BOTTOM SHEET DRAWER
=================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

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

.cart-drawer-sheet {
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
  z-index: 99991;
  pointer-events: auto;
}

.cart-drawer-overlay.active .cart-drawer-sheet {
  transform: translateY(0);
}

.cart-drawer-handle-bar {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.cart-drawer-notch {
  width: 44px;
  height: 4.5px;
  background: #D1D5DB;
  border-radius: 3px;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--primary-maroon);
  font-weight: 700;
}

.cart-drawer-count-badge {
  background: var(--bg-cream);
  color: var(--primary-maroon);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 12px;
  border: 1px solid var(--accent-gold);
}

.cart-drawer-subtitle {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.btn-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-drawer-close:hover {
  background: #E5E7EB;
}

/* Cart Body & Swipeable Items */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px;
  max-height: calc(88vh - 190px);
}

.cart-drawer-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  background: #FFFFFF;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cart-drawer-item-row.swiped {
  transform: translateX(-70px);
}

.cart-drawer-item-img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg-surface-secondary);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

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

.cart-drawer-item-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-drawer-item-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.cart-drawer-delete-action {
  position: absolute;
  right: -70px;
  top: 0;
  bottom: 0;
  width: 70px;
  background: #DC2626;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

/* Cart Drawer Footer */
.cart-drawer-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 10px 16px max(12px, var(--safe-bottom)) 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 100001;
  pointer-events: auto;
}

.cart-bill-collapsible {
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 8px 12px;
  position: relative;
  z-index: 100002;
  pointer-events: auto;
}

.cart-bill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.bill-header-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}

.bill-header-savings {
  font-size: 11px;
  font-weight: 800;
  color: #15803d;
  margin-left: 8px;
}

.cart-bill-header-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-saffron);
}

.cart-bill-details {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border-medium);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bill-line {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-secondary);
}

.bill-line.discount {
  color: #15803d;
  font-weight: 600;
}

.btn-drawer-checkout {
  width: 100%;
  background: linear-gradient(135deg, #16A34A, #15803D);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 100003;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-drawer-checkout:active {
  transform: scale(0.98);
}

.drawer-checkout-left {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.drawer-checkout-total {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.drawer-checkout-sub {
  font-size: 9.5px;
  opacity: 0.85;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.drawer-checkout-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

/* ===================================================
   SWIPE-TO-DELETE UNDO SNACKBAR
=================================================== */
.undo-snackbar {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #1F2937;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 1300;
  animation: snackbarSlideUp 0.25s ease;
}

@keyframes snackbarSlideUp {
  from { opacity: 0; transform: translate(-50%, 15px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.undo-snackbar-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
}

.btn-undo-action {
  background: transparent;
  border: none;
  color: #FBBF24;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.5px;
}

/* ===================================================
   SHIMMER SKELETON LOADERS (NO CLS)
=================================================== */
.skeleton-shimmer {
  background: linear-gradient(90deg, #F3EFE6 25%, #FFFBF5 50%, #F3EFE6 75%);
  background-size: 200% 100%;
  animation: shimmerMove 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmerMove {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===================================================
   WARM DEVOTIONAL DARK MODE (TEMPLE BRONZE & GOLD)
=================================================== */
[data-theme="dark"] {
  --bg-page: #120A0C;
  --bg-surface: #1C1215;
  --bg-surface-secondary: #261A1E;
  --bg-cream: #22161A;
  --text-main: #FBF8F5;
  --text-secondary: #D4C9C9;
  --text-muted: #9E9292;
  --border-subtle: #36242A;
  --border-medium: #4A333B;
  --primary-maroon: #E5A93C;
  --primary-maroon-dark: #C98B28;
}

[data-theme="dark"] .mobile-app-shell {
  background: var(--bg-surface);
  border-color: #36242A;
}

[data-theme="dark"] .product-card,
[data-theme="dark"] .cart-drawer-sheet,
[data-theme="dark"] .modal-card,
[data-theme="dark"] .category-card-icon-circle {
  background: #1C1215 !important;
  border-color: #36242A !important;
  color: #FBF8F5 !important;
}

[data-theme="dark"] .product-card-title,
[data-theme="dark"] .cart-drawer-item-title,
[data-theme="dark"] .category-card-name {
  color: #FBF8F5 !important;
}

[data-theme="dark"] .mobile-bottom-nav {
  background: #1C1215 !important;
  border-top-color: #36242A !important;
}

[data-theme="dark"] .sticky-category-filter-bar {
  background: rgba(28, 18, 21, 0.95) !important;
  border-bottom-color: #36242A !important;
}

/* ===================================================
   AR DEITY MANDIR PREVIEW & SUBSCRIPTION MODALS
=================================================== */
.ar-preview-modal-card {
  width: 92%;
  max-width: 480px;
  background: #180204;
  color: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ar-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ar-modal-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
}

.ar-modal-hint {
  font-size: 11px;
  color: #E2D9D9;
}

.ar-viewport {
  position: relative;
  width: 100%;
  height: 260px;
  background: radial-gradient(circle, #3D080F 0%, #170104 100%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 169, 60, 0.3);
}

.ar-mandir-canvas-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(229, 169, 60, 0.15) 1px, transparent 1px);
  background-size: 16px 16px;
}

.ar-deity-draggable {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transition: transform 0.1s ease;
}

.ar-deity-draggable img {
  max-height: 180px;
  filter: drop-shadow(0 0 16px rgba(229, 169, 60, 0.6));
}

.ar-scale-indicator {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--accent-gold);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.ar-controls-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #FFF;
}

.ar-controls-bar input[type="range"] {
  flex: 1;
  accent-color: var(--accent-gold);
}

.ar-actions-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* Language Selection Modal */
.lang-selection-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.lang-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-surface);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}

.lang-opt-btn strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-main);
}

.lang-opt-btn small {
  font-size: 11px;
  color: var(--text-muted);
}

.lang-opt-btn.active {
  border-color: var(--primary-saffron);
  background: #FFF9F5;
}

.lang-opt-btn.active .lang-check {
  color: var(--primary-saffron);
  font-weight: 800;
}

.sub-freq-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-freq-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  cursor: pointer;
}

/* 2-Column Mobile Category Catalog Grid scaling to tablet and desktop */
.category-full-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2.5vw, 16px);
}
@media (min-width: 640px) {
  .category-full-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .category-full-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

.category-full-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-full-card:active {
  transform: scale(0.98);
}
.category-full-card-thumb {
  height: clamp(110px, 28vw, 160px);
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg-cream);
}
.category-full-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-full-card-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.category-full-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.category-full-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 4px;
}
.category-full-card-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.btn-category-explore {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Quick feature buttons on product cards */
.btn-card-quick-feat {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-maroon);
  background: var(--bg-cream);
  border: 1px solid var(--accent-gold-light);
  border-radius: 4px;
  padding: 2px 6px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-top: 4px;
}
.btn-card-quick-feat:hover {
  background: var(--accent-gold-light);
}

/* ===================================================
   RAZORPAY PAYMENT GATEWAY STYLES
=================================================== */
.razorpay-method-card {
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.razorpay-method-card:hover {
  border-color: var(--primary-maroon) !important;
}
.razorpay-method-card.active-method {
  border-color: var(--primary-maroon) !important;
  background: #FFF9F5 !important;
  box-shadow: 0 2px 8px rgba(122, 12, 26, 0.08);
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: #555;
  background: #FFF;
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
}

/* Fallback / Test Mode Razorpay Modal */
.rzp-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: rzpFadeIn 0.2s ease-out;
}
@keyframes rzpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.rzp-modal-card {
  background: #FFF;
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: rzpSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes rzpSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.rzp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
  background: #FFF;
}
.rzp-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #94A3B8;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  border-radius: 6px;
}
.rzp-close-btn:hover {
  color: #0F172A;
  background: #F1F5F9;
}
.rzp-modal-body {
  padding: 20px;
}
.rzp-action-btn {
  width: 100%;
  border: none;
  color: #FFF;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.rzp-action-btn:hover {
  opacity: 0.94;
}
.rzp-action-btn:active {
  transform: scale(0.98);
}
.rzp-modal-footer {
  padding: 12px 20px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  text-align: center;
}

/* ==========================================================================
   PRE-LAUNCH / FUNCTIONING SOON & APP INSTALLATION COMPONENTS
   ========================================================================== */

/* 1. Top Pre-Launch Banner */
.prelaunch-banner {
  background: linear-gradient(135deg, #4A050F 0%, #7E1220 50%, #B45309 100%);
  color: #FFFFFF;
  padding: 8px 14px;
  border-bottom: 1.5px solid #F59E0B;
  position: relative;
  z-index: 99;
}
.prelaunch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.prelaunch-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid #F59E0B;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FDE68A;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pulsing-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}
@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.prelaunch-msg {
  flex: 1;
  font-size: 12.5px;
  color: #FFFBEB;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.prelaunch-msg strong {
  color: #FDE68A;
}
.prelaunch-subtext {
  color: #FEF3C7;
  opacity: 0.9;
}
.prelaunch-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-prelaunch-install {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #1F2937;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #FDE68A;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn-prelaunch-install:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-prelaunch-download {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
  font-weight: 600;
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-prelaunch-download:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* 2. Floating App Install Bar */
.sticky-app-floater {
  position: fixed;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 520px;
  z-index: 998;
  pointer-events: auto;
  animation: slideUpFloater 0.4s ease-out;
}
@keyframes slideUpFloater {
  from { transform: translate(-50%, 40px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
.sticky-floater-inner {
  background: linear-gradient(135deg, #2D050B 0%, #4D0913 100%);
  border: 1.5px solid #F59E0B;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(245, 158, 11, 0.25);
}
.floater-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.floater-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #F59E0B;
  background: #3F020A;
  object-fit: cover;
  flex-shrink: 0;
}
.floater-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.floater-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #FFFBEB;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.floater-badge {
  font-size: 11px;
  color: #FDE68A;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.pulse-amber {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulseAmber 1.8s infinite;
}
@keyframes pulseAmber {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
.floater-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-floater-install {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #1F2937;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #FDE68A;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease;
}
.btn-floater-install:active {
  transform: scale(0.96);
}
.btn-floater-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-floater-download:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* 3. Pre-Launch / Functioning Soon Modal */
.prelaunch-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeInModal 0.25s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.prelaunch-modal-card {
  background: #FFFDF7;
  border: 2px solid #F59E0B;
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.prelaunch-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #D97706;
  background: #FFFBEB;
  color: #92400E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s ease;
}
.prelaunch-modal-close:hover {
  background: #FDE68A;
}
.prelaunch-modal-header {
  background: linear-gradient(135deg, #4D0913 0%, #7E1220 100%);
  color: #FFFFFF;
  padding: 24px 20px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.prelaunch-modal-emblem {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #FFFBEB;
  padding: 4px;
  border: 2px solid #F59E0B;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prelaunch-modal-emblem img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}
.prelaunch-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.25);
  border: 1px solid #F59E0B;
  color: #FDE68A;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.prelaunch-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFBEB;
  margin: 0 0 6px 0;
  font-family: 'Cinzel', serif;
}
.prelaunch-modal-desc {
  font-size: 12.5px;
  color: #FEF3C7;
  margin: 0;
  line-height: 1.4;
  max-width: 360px;
}
.prelaunch-modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prelaunch-perk-box {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}
.perk-item svg {
  color: #B45309;
  flex-shrink: 0;
  margin-top: 2px;
}
.perk-item strong {
  display: block;
  color: #92400E;
  font-size: 12.5px;
  margin-bottom: 2px;
}
.perk-item p {
  margin: 0;
  color: #78350F;
  line-height: 1.35;
}
.prelaunch-action-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-modal-install-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #5C0612 0%, #7E1220 50%, #B45309 100%);
  color: #FFF;
  border: 1.5px solid #F59E0B;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(92, 6, 18, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn-modal-install-primary:hover {
  filter: brightness(1.08);
}
.btn-modal-install-primary:active {
  transform: scale(0.98);
}
.btn-modal-download-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFBEB;
  color: #92400E;
  border: 1.5px solid #D97706;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-modal-download-secondary:hover {
  background: #FDE68A;
}
.prelaunch-notify-box {
  background: #FFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px;
}
.notify-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #4B5563;
  margin-bottom: 8px;
}
.notify-input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  overflow: hidden;
  background: #FFF;
}
.country-prefix {
  padding: 8px 10px;
  background: #F3F4F6;
  color: #4B5563;
  font-weight: 700;
  font-size: 13px;
  border-right: 1px solid #D1D5DB;
}
.notify-input {
  flex: 1;
  border: none;
  padding: 9px 10px;
  font-size: 13px;
  outline: none;
}
.btn-notify-submit {
  background: #5C0612;
  color: #FFF;
  border: none;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-notify-submit:hover {
  background: #7E1220;
}
.notify-feedback {
  font-size: 11.5px;
  margin-top: 6px;
  display: none;
}
.prelaunch-modal-footer {
  padding: 10px 20px 14px 20px;
  background: #FFFBEB;
  border-top: 1px solid #FDE68A;
  text-align: center;
  font-size: 11px;
  color: #92400E;
}





