/* =======================================================
   SNAKZO E-COMMERCE - LUXURY GLASSMORPHIC DESIGN SYSTEM
   Inspired by Apple, Nike, Pringles, Haldiram, Bikaji
   ======================================================= */

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

:root {
  /* Dark Obsidian Glass Theme (Default) */
  --bg-primary: #0b0f17;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(31, 41, 55, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);

  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-light: #d1d5db;

  /* Luxury Snack Accents */
  --accent-gold: #f59e0b;
  --accent-amber: #d97706;
  --accent-red: #dc2626;
  --accent-crimson: #991b1b;
  --accent-green: #10b981;

  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;

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

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(241, 245, 249, 1);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #334155;
}

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

html {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

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

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

/* Glassmorphism Panel Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
}

/* Sticky Luxury Header & Mega Menu */
.top-bar {
  background: linear-gradient(90deg, var(--accent-crimson), var(--accent-red), var(--accent-amber));
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  padding: 5px 12px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  min-height: 28px;
  line-height: 1.25;
}

.top-bar-msg {
  margin: 0;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-short {
  display: none;
}

.top-bar-langs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 11px;
}

.top-bar-langs a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.top-bar-langs a:hover {
  color: #fff;
  text-decoration: underline;
}

.top-bar-langs-sep {
  opacity: 0.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 23, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-fast);
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo-img {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  -webkit-text-fill-color: initial;
  background: none;
}

.brand-logo-img--auth {
  height: 44px;
  max-width: 200px;
}

.header-account-btn {
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-badge {
  font-size: 10px;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  padding: 2px 8px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.nav-link:hover {
  color: var(--accent-gold);
}

/* Category Mega Menu Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle .nav-chevron {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--glass-shadow);
  padding: 8px 0;
  z-index: 1200;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.open .nav-dropdown-menu[hidden],
.nav-dropdown:hover .nav-dropdown-menu[hidden] {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
}

.nav-dropdown-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

.nav-dropdown-all {
  border-top: 1px solid var(--glass-border);
  margin-top: 4px;
  padding-top: 10px !important;
  color: var(--accent-gold) !important;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.search-box {
  position: relative;
  width: 240px;
}

.search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  width: 320px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--glass-shadow);
  display: none;
  z-index: 1100;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px 0;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--glass-border);
}

.search-item:hover {
  background: var(--bg-card-hover);
}

.icon-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.icon-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(153, 27, 27, 0.4), transparent 50%),
              radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.25), transparent 50%);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Premium Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--border-radius-full);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-weight: 700;
  border-radius: var(--border-radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Category Grid */
.section {
  padding: 60px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-title {
  font-size: 32px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.category-icon {
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-crimson);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
  z-index: 10;
}

.product-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: rgba(0,0,0,0.2);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-details {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
}

.product-title {
  font-size: 18px;
  margin: 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-rating {
  font-size: 13px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.current-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
}

.original-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-oos-tag {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 8px;
}
.card-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}
.card-qty-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}
.card-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-primary);
}
.card-qty-stepper .qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.card-qty-stepper .qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.card-qty-stepper .qty-input {
  width: 42px;
  height: 34px;
  border: none;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-main);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.card-qty-stepper .qty-input::-webkit-outer-spin-button,
.card-qty-stepper .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-add-form .product-card-actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  width: 100%;
}
.btn-buy-now,
.btn-add-cart {
  width: 100%;
  justify-content: center;
  min-height: 40px;
  font-size: 13px;
  padding: 8px 10px;
}
.product-card.is-oos {
  opacity: 0.85;
}

/* Horizontal product rails (Amazon / Flipkart style) */
.product-rail-wrap {
  position: relative;
}
.product-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.product-rail::-webkit-scrollbar {
  height: 6px;
}
.product-rail::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.45);
  border-radius: 999px;
}
.product-rail .product-card {
  flex: 0 0 min(240px, 78vw);
  min-width: min(240px, 78vw);
  scroll-snap-align: start;
}
.product-rail .product-img-wrap {
  height: 180px;
}
.product-rail .product-details {
  padding: 14px;
}
.product-rail .product-title {
  font-size: 15px;
}
.rail-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--bg-secondary);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}
.rail-nav:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.rail-prev { left: -6px; }
.rail-next { right: -6px; }
.rail-nav[hidden] { display: none !important; }

/* Floating Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 2100;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-primary);
}

/* Quick View Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Footer */
.site-footer {
  background: #030712;
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px 20px;
  color: var(--text-muted);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 520px;
}

.footer-grid-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  font-size: 14px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 14px 20px;
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--border-radius-sm);
  color: var(--text-main);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.3s ease;
}

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

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 36px; }
  .nav-menu { display: none; }
  .cart-drawer { width: 100%; }
}

/* =======================================================
   PREMIUM STOREFRONT ENHANCEMENTS
   ======================================================= */

/* Hindi language spacing */
body.lang-hi {
  letter-spacing: 0.01em;
  word-spacing: 0.05em;
}
body.lang-hi .hero-title,
body.lang-hi .section-title {
  line-height: 1.25;
}

/* Mobile hamburger menu */
.mobile-menu-btn {
  display: none !important;
}
.main-nav.open .nav-menu {
  display: flex;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .top-bar {
    padding: 4px 10px !important;
    font-size: 11px !important;
    gap: 8px !important;
    min-height: 26px !important;
    line-height: 1.2 !important;
  }

  .top-bar-long {
    display: none !important;
  }

  .top-bar-short {
    display: inline !important;
  }

  .top-bar-langs {
    font-size: 11px !important;
    gap: 4px !important;
  }

  .header-container {
    padding: 6px 10px !important;
    gap: 8px !important;
    min-height: 52px !important;
  }

  .brand-logo {
    font-size: 18px !important;
    gap: 6px !important;
    max-width: none !important;
    flex: 1 1 auto !important;
  }

  .brand-logo .brand-badge {
    display: none !important;
  }

  .brand-logo-img {
    height: 28px !important;
    max-width: 110px !important;
  }

  .brand-logo-img--auth {
    height: 36px !important;
    max-width: 160px !important;
  }

  .header-actions {
    gap: 6px !important;
    flex: 0 0 auto !important;
    margin-left: 0 !important;
  }

  .icon-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
  }

  .badge-count {
    width: 16px !important;
    height: 16px !important;
    font-size: 9px !important;
    top: -3px !important;
    right: -3px !important;
  }

  .header-desktop-only,
  #themeToggleBtn.header-desktop-only {
    display: none !important;
  }

  .header-account-btn {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border-radius: var(--border-radius-full) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
  }

  .header-account-label {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
    order: -1 !important;
  }

  .main-nav {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 78px) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    background: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    padding: 12px 16px 16px !important;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 999 !important;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav.open .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    display: flex !important;
    width: 100%;
  }

  .main-nav.open .nav-menu > li {
    width: 100%;
  }

  .main-nav.open .nav-link,
  .main-nav.open .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 4px;
    width: 100%;
    font-size: 15px;
    text-align: left;
  }

  .main-nav .nav-dropdown-menu,
  .main-nav .nav-dropdown:hover .nav-dropdown-menu,
  .main-nav .nav-dropdown.open .nav-dropdown-menu[hidden] {
    display: none;
  }

  .main-nav .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
    position: static;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: var(--bg-primary);
    padding: 6px 0;
    margin: 4px 0 10px;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .top-bar {
    padding: 3px 8px !important;
    font-size: 10px !important;
  }

  .header-container {
    padding: 6px 8px !important;
  }

  .brand-logo {
    font-size: 16px !important;
  }

  .brand-logo-img {
    height: 24px !important;
    max-width: 96px !important;
  }

  .header-actions {
    gap: 4px !important;
  }

  .icon-btn,
  .header-account-btn,
  .mobile-menu-btn {
    width: 36px !important;
    height: 36px !important;
  }
}

/* Hero slider animations */
.hero-slider {
  overflow: hidden;
  min-height: 580px;
}
.hero-slides {
  position: relative;
  min-height: inherit;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  background: radial-gradient(circle at top right, rgba(153, 27, 27, 0.35), transparent 55%),
              radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.2), transparent 50%);
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  text-align: center;
  position: relative;
}
.hero-product-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--glass-border);
}
.hero-trust-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.hero-trust-badge i {
  font-size: 32px;
  color: var(--accent-gold);
}
.hero-trust-badge span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}
.hero-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}
.hero-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}
.hero-nav:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.hero-dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}
.animate-fade-up {
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section utilities */
.section-eyebrow {
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}
.section-link {
  color: var(--accent-gold);
  font-weight: 700;
}
.section-header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-alt {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
}
.badge-inline {
  position: static !important;
  display: inline-block;
  margin-bottom: 8px;
}
.empty-section-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

/* Flash countdown */
.flash-deals-section {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
}
.flash-countdown-wrap {
  background: var(--bg-primary);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  text-align: center;
}
.flash-countdown-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.flash-countdown {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
  font-variant-numeric: tabular-nums;
}

/* Promo / festival slider */
.promo-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.promo-track {
  display: flex;
  gap: 20px;
}
.promo-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  overflow: hidden;
  display: block;
  transition: var(--transition-smooth);
}
.promo-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
}
.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.promo-card-body {
  padding: 20px;
}
.promo-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.promo-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.promo-link {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 14px;
}

/* Wishlist on cards */
.btn-wishlist-card {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 12;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(11, 15, 23, 0.75);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.btn-wishlist-card:hover,
.btn-wishlist-card.active {
  color: var(--accent-red);
  border-color: var(--accent-red);
}
.product-rating i {
  margin-right: 1px;
}

/* Why choose us — one compact professional row */
.why-choose-section {
  padding-top: 28px;
  padding-bottom: 28px;
}
.why-choose-head {
  margin-bottom: 18px;
}
.why-choose-head .section-title {
  font-size: 26px;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  background: var(--bg-secondary);
  overflow: hidden;
}
.why-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  border-right: 1px solid var(--glass-border);
  transition: var(--transition-fast);
}
.why-card:last-child {
  border-right: none;
}
.why-card:hover {
  background: rgba(245, 158, 11, 0.06);
}
.why-card i {
  font-size: 22px;
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  margin: 0;
}
.why-card-copy h4 {
  font-size: 14px;
  margin: 0 0 2px;
  line-height: 1.25;
}
.why-card-copy p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.35;
}

/* Review cards — homepage single-row horizontal rail */
.reviews-rail-wrap {
  margin-top: 4px;
}
.reviews-rail {
  align-items: stretch;
  gap: 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reviews-rail .review-flip {
  flex: 0 0 min(300px, 85vw);
  width: min(300px, 85vw);
  min-width: min(300px, 85vw);
  max-width: min(300px, 85vw);
  scroll-snap-align: start;
  min-height: 260px;
}
.reviews-rail .review-flip-inner,
.reviews-rail .review-flip-front,
.reviews-rail .review-flip-back {
  min-height: 260px;
}
/* Legacy grid (unused on home; keep for any other pages) */
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  padding: 28px;
}
.review-card.compact {
  padding: 20px;
  margin-bottom: 16px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--glass-border);
  position: relative;
}
.review-card.review-highlighted {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.2);
}
.review-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.review-media-thumb {
  display: block;
  margin: 12px 0;
  max-width: 180px;
}
.review-media-thumb img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  object-fit: cover;
  aspect-ratio: 1;
}
.review-media-video {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 12px 0;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: #000;
}
.review-has-video {
  font-size: 12px;
  color: var(--accent-gold);
}

/* Gallery / Camera media pickers */
.review-media-pickers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.media-picker {
  margin-bottom: 12px;
}
.media-picker-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.media-picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.media-picker-btn {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 13px;
}
.media-picker-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.media-picker-preview-item {
  width: 120px;
}
.media-picker-preview-item img,
.media-picker-preview-item video {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: #000;
  display: block;
}
.media-picker-preview-name {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.media-picker-hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .review-media-pickers {
    grid-template-columns: 1fr;
  }
}
.review-stars {
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.review-comment {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin: 12px 0;
}
.review-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.review-meta a {
  color: var(--accent-gold);
}

/* Review flip cards */
.review-flip {
  perspective: 1000px;
  min-height: 260px;
  cursor: pointer;
}
.review-flip-inner {
  position: relative;
  width: 100%;
  min-height: 260px;
  transition: transform 0.55s ease;
  transform-style: preserve-3d;
}
.review-flip.is-flipped .review-flip-inner {
  transform: rotateY(180deg);
}
.review-flip-front,
.review-flip-back {
  position: absolute;
  inset: 0;
  padding: 24px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-md, 12px);
}
.review-flip-back {
  transform: rotateY(180deg);
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 12px;
}
.review-flip-product-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}
.review-flip-cta {
  margin-top: 4px;
}
.review-flip-hint {
  margin-top: auto;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Stories strip */
.stories-strip-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 8px;
}
.stories-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.story-bubble {
  flex: 0 0 auto;
  width: 84px;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0;
  text-align: center;
}
.story-bubble-ring {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 8px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #c45c26, var(--accent-gold));
}
.story-bubble-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-primary);
  display: block;
}
.story-bubble-label {
  display: block;
  font-size: 11px;
  line-height: 1.3;
  max-width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-muted);
}

.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.story-viewer[hidden] {
  display: none !important;
}
.story-viewer-progress {
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.story-viewer-progress span {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
}
.story-viewer-progress span i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent-gold);
}
.story-viewer-progress span.done i {
  width: 100%;
}
.story-viewer-progress span.active i {
  animation: storyProgress linear forwards;
}
@keyframes storyProgress {
  from { width: 0; }
  to { width: 100%; }
}
.story-viewer-close {
  position: absolute;
  top: 28px;
  right: 18px;
  z-index: 3;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.story-viewer-body {
  position: relative;
  width: min(420px, 92vw);
  text-align: center;
  z-index: 1;
}
.story-viewer-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
  background: #111;
}
.story-viewer-meta {
  margin-top: 16px;
}
.story-viewer-meta h3 {
  margin-bottom: 12px;
  font-size: 20px;
}
.story-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}
.story-viewer-nav.prev { left: 16px; }
.story-viewer-nav.next { right: 16px; }
.story-viewer-tap {
  position: absolute;
  top: 60px;
  bottom: 80px;
  width: 35%;
  background: transparent;
  border: none;
  z-index: 1;
  cursor: pointer;
}
.story-viewer-tap.left { left: 0; }
.story-viewer-tap.right { right: 0; }

.catalog-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}
.catalog-filters-toggle {
  display: none;
  width: 100%;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 44px;
}
.catalog-filters-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--bg-primary);
  background: var(--accent-gold);
  border-radius: 999px;
  padding: 2px 8px;
}
.product-filters {
  padding: 22px;
  position: sticky;
  top: 90px;
}
.product-filters-head h3 {
  font-size: 18px;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-filters-help {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.45;
}
.filter-block {
  margin-bottom: 18px;
}
.filter-label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--text-main);
}
.filter-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  border-radius: 8px;
  font-size: 14px;
}
.filter-price-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.filter-hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
.filter-more {
  margin-bottom: 16px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--bg-secondary);
}
.filter-more-summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  list-style: none;
}
.filter-more-summary::-webkit-details-marker {
  display: none;
}
.filter-more[open] .filter-more-summary {
  margin-bottom: 12px;
  color: var(--accent-gold);
}
.filter-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  bottom: 0;
  padding-top: 8px;
  background: linear-gradient(to top, var(--bg-secondary) 70%, transparent);
}
.filter-apply-btn,
.filter-clear-btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}
.budget-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.budget-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}
.budget-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.budget-chip.active,
.budget-chip:has(input:checked) {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.08);
  font-weight: 700;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
}

.btn-quick-view {
  min-height: 36px;
  min-width: 36px;
  padding: 6px 8px;
  flex-shrink: 0;
}
.order-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}
.order-again-btn {
  white-space: nowrap;
}

/* Instagram grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: #fff;
  font-size: 28px;
}
.instagram-item:hover img {
  transform: scale(1.08);
}
.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  overflow: hidden;
  transition: var(--transition-smooth);
}
.blog-card:hover {
  transform: translateY(-6px);
}
.blog-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 22px;
}
.blog-category {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
}
.blog-card-body h3 {
  margin: 8px 0 10px;
  font-size: 20px;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}

/* Video banner */
.video-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
}
.video-banner-content h2 {
  font-size: 32px;
  margin: 12px 0 16px;
}
.video-banner-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.video-placeholder {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.video-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA banners */
.cta-banner {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  background: linear-gradient(135deg, rgba(153, 27, 27, 0.75), rgba(11, 15, 23, 0.95)),
              url('https://images.unsplash.com/photo-1599488615731-7e5c2823ff28?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  border-radius: var(--border-radius-lg);
}
.cta-content h2 {
  font-size: 32px;
  margin: 12px 0;
  color: #fff;
}
.cta-content p {
  color: #d1d5db;
}
.cta-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cta-card {
  padding: 32px;
  display: block;
  transition: var(--transition-smooth);
}
.cta-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
}
.cta-card i {
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 10px 0 16px;
}
.cta-link {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Newsletter */
.newsletter-section {
  padding-bottom: 80px;
}
.newsletter-wrap {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(153, 27, 27, 0.12));
}
.newsletter-copy h2 {
  font-size: 32px;
  margin: 8px 0 12px;
}
.newsletter-copy p {
  color: var(--text-muted);
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.newsletter-form input {
  flex: 1 1 180px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  color: var(--text-main);
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--accent-gold);
}
.newsletter-message {
  grid-column: 1 / -1;
  font-size: 14px;
  margin-top: 8px;
}
.newsletter-message.success { color: var(--accent-green); }
.newsletter-message.error { color: var(--accent-red); }

/* Product detail page */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.product-zoom-wrap {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}
.product-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.15s ease-out;
}
.zoom-lens {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  pointer-events: none;
  display: none;
  border-radius: 50%;
}
.product-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 16px;
  padding-bottom: 8px;
}
.product-thumb {
  flex: 0 0 80px;
  height: 80px;
  padding: 0;
  border: 2px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.product-thumb.active {
  border-color: var(--accent-gold);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-title {
  font-size: 32px;
  margin: 8px 0 16px;
}
.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.spec-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.text-in-stock { color: var(--accent-green); }
.text-out-stock { color: var(--accent-red); }
.product-pricing-box {
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.detail-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold);
}
.detail-mrp {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 12px;
}
.pricing-gst {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}
.product-add-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  padding: 4px 16px;
}
.qty-stepper input {
  width: 50px;
  background: none;
  border: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 16px;
  outline: none;
}
.btn-add-full {
  flex: 1;
  justify-content: center;
  min-width: 200px;
}
.product-trust-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}
.product-trust-pills > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-trust-pills i {
  font-size: 24px;
  color: var(--accent-gold);
}
.product-trust-pills span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* Product tabs */
.product-tabs {
  padding: 0;
  margin-bottom: 48px;
  overflow: hidden;
}
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--glass-border);
  overflow-x: auto;
}
.tab-btn {
  padding: 16px 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.tab-btn.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}
.tab-panel {
  display: none;
  padding: 32px;
}
.tab-panel.active {
  display: block;
}
.tab-content {
  color: var(--text-light);
  line-height: 1.8;
}

/* FBT bundle */
.fbt-section,
.related-section {
  margin-bottom: 48px;
}
.section-subtitle {
  font-size: 24px;
  margin-bottom: 24px;
}
.fbt-bundle {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.fbt-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.fbt-item {
  text-align: center;
  max-width: 120px;
}
.fbt-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 8px;
}
.fbt-item a {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}
.fbt-plus {
  font-size: 24px;
  color: var(--accent-gold);
  font-weight: 700;
}
.product-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.product-video-item iframe,
.product-video-item video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-sm);
}

/* Filter checkbox */
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}
.filter-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
}

/* Checkout */
.checkout-title {
  font-size: 32px;
  margin-bottom: 28px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 36px;
  align-items: start;
}
.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.checkout-panel {
  padding: 28px;
}
.checkout-panel h3 {
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-guest-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.checkout-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-fields-grid.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}
.checkout-fields-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-panel label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.checkout-panel input,
.checkout-panel textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  border-radius: 8px;
}
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.payment-option {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}
.payment-option.active,
.payment-option:has(input:checked) {
  border-color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.06);
}
.payment-option span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}
.upi-payment-box {
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  border: 1px dashed var(--accent-gold);
}
.upi-id-display {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 12px 0;
  letter-spacing: 0.04em;
}
.upi-note {
  font-size: 13px;
  color: var(--text-muted);
}
.checkout-summary {
  padding: 28px;
  position: sticky;
  top: 100px;
}
.checkout-items {
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 20px;
}
.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}
.checkout-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
}
.checkout-item-title {
  font-weight: 700;
  font-size: 13px;
}
.checkout-item-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.checkout-item-price {
  margin-left: auto;
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 14px;
}
.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.checkout-grand-total {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--text-main) !important;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
  margin-top: 8px;
}
.checkout-grand-total span:last-child {
  color: var(--accent-gold) !important;
}
.checkout-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  margin-top: 20px;
}
.text-success { color: var(--accent-green); }
.gift-card-row {
  display: flex;
  gap: 10px;
}
.gift-card-row input {
  flex: 1;
}
.applied-promo {
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px dashed var(--accent-green);
  color: var(--accent-green);
}

/* Floating cart drawer polish */
.drawer-cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
}
.drawer-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.drawer-item-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
}
.drawer-item-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-controls button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  background: var(--bg-primary);
  color: var(--text-main);
  cursor: pointer;
}
.qty-controls .btn-remove {
  margin-left: auto;
  color: var(--accent-red);
  border-color: transparent;
  font-size: 18px;
}
.cart-drawer.open {
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.55);
}
.drawer-footer .btn-primary,
.drawer-footer .btn-secondary {
  width: 100%;
  justify-content: center;
}

/* Responsive product & checkout */
@media (max-width: 992px) {
  .product-detail-grid,
  .checkout-grid,
  .video-banner,
  .newsletter-wrap {
    grid-template-columns: 1fr;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .payment-methods,
  .checkout-fields-grid,
  .checkout-fields-grid.three-col,
  .product-trust-pills {
    grid-template-columns: 1fr;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual { display: none; }
  .cta-banner { padding: 32px 24px; }
  .newsletter-wrap { padding: 32px 24px; }
}

/* =======================================================
   GLOBAL MOBILE PAGE ADJUSTMENTS (Android / iPhone)
   ======================================================= */

/* Account sidebar */
.account-sidebar {
  padding: 24px;
}

.account-sidebar-profile {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.account-avatar {
  width: 70px;
  height: 70px;
  background: var(--accent-gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 12px;
}

.account-sidebar-profile h3 {
  font-size: 18px;
}

.account-email {
  font-size: 12px;
  color: var(--text-muted);
}

.account-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 14px;
}

.account-nav-link:hover,
.account-nav-link.is-active {
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.08);
  font-weight: 700;
}

.account-nav-link.is-logout {
  color: var(--accent-red);
}

.account-nav-logout {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--glass-border);
}

@media (max-width: 992px) {
  .footer-grid-links {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .trust-badges,
  .combo-grid,
  .recipe-grid,
  .why-grid,
  .feature-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  /* Page shell */
  .section {
    padding: 28px 14px;
    width: 100%;
    max-width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-slider {
    min-height: 0;
  }

  .hero-container {
    padding: 28px 14px;
    gap: 20px;
  }

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

  .btn-primary,
  .btn-secondary {
    max-width: 100%;
  }

  /* Product & category cards */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .product-details {
    padding: 12px;
  }

  .product-title {
    font-size: 14px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .category-card {
    padding: 16px 12px;
  }

  .category-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }

  /* Force common multi-column inline layouts to stack */
  .section [style*="grid-template-columns:260px"],
  .section [style*="grid-template-columns: 260px"],
  .section [style*="grid-template-columns:1fr 380px"],
  .section [style*="grid-template-columns:1fr 340px"],
  .section [style*="grid-template-columns:1fr 450px"],
  .section [style*="grid-template-columns:1fr 1.2fr"],
  .section [style*="grid-template-columns:1.2fr 1fr"],
  .section [style*="grid-template-columns:2fr 1fr"],
  .section [style*="grid-template-columns:1fr 1fr"],
  .section [style*="grid-template-columns:1fr 1fr 1fr"],
  .section [style*="grid-template-columns:repeat(3"],
  .section [style*="minmax(280px"],
  .section [style*="minmax(300px"],
  .section [style*="minmax(320px"],
  .section [style*="minmax(240px"],
  .section [style*="minmax(260px"],
  .product-detail-page [style*="grid-template-columns"],
  .glass-panel [style*="grid-template-columns:1fr 1fr"],
  .glass-panel [style*="grid-template-columns:1fr 1fr 1fr"],
  .glass-panel [style*="grid-template-columns:2fr 1fr"],
  .glass-panel [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Keep 2-col only for dense card grids that already use auto-fill small minmax */
  .section [style*="minmax(150px"],
  .section [style*="minmax(180px"],
  .section [style*="minmax(200px"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  /* Account sidebar → horizontal chips */
  .account-sidebar {
    padding: 12px !important;
    position: sticky;
    top: 56px;
    z-index: 40;
  }

  .account-sidebar-profile {
    display: none;
  }

  .account-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .account-nav::-webkit-scrollbar {
    display: none;
  }

  .account-nav li {
    flex: 0 0 auto;
  }

  .account-nav-logout {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .account-nav-link {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
  }

  .account-nav-link span {
    display: inline;
  }

  /* Forms & inputs */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  input[type="search"],
  select,
  textarea {
    max-width: 100%;
    font-size: 16px; /* prevents iOS zoom */
  }

  /* Tables scroll instead of overflowing */
  .section table,
  .data-table,
  .data-table-container {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .glass-panel {
    max-width: 100%;
  }

  /* Footer — brand full width, links 2×2 */
  .site-footer {
    padding: 36px 14px 16px;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-grid-links {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .catalog-filters-wrap {
    order: -1;
  }

  .catalog-filters-toggle {
    display: inline-flex !important;
  }

  .product-filters {
    display: none;
    position: static;
    margin-bottom: 8px;
  }

  .product-filters.is-open {
    display: block;
  }

  /* Homepage extras */
  .stories-strip-section {
    padding: 14px 14px 4px;
  }

  .story-bubble {
    width: 76px;
  }

  .story-bubble-ring {
    width: 64px;
    height: 64px;
  }

  .story-viewer-nav {
    display: none;
  }

  .review-flip {
    min-height: 240px;
  }
  .reviews-rail .review-flip,
  .reviews-rail .review-flip-inner,
  .reviews-rail .review-flip-front,
  .reviews-rail .review-flip-back {
    min-height: 240px;
  }

  .product-add-form .product-card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .btn-add-cart,
  .btn-buy-now {
    min-height: 44px;
  }

  .order-actions-row {
    justify-content: flex-start;
  }

  .flash-deals-section,
  .newsletter-section,
  .cta-banner,
  .video-banner,
  .newsletter-wrap {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .trust-badges,
  .combo-grid,
  .recipe-grid,
  .why-grid,
  .feature-grid,
  .stats-row,
  .instagram-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .product-detail-grid {
    gap: 20px;
  }

  .product-main-img {
    max-height: 320px;
    width: 100%;
    object-fit: contain;
  }

  /* Cart / checkout buttons full width */
  .section .btn-primary,
  .section .btn-secondary {
    justify-content: center;
  }

  /* Auth cards */
  .section[style*="max-width:450px"],
  .section[style*="max-width:480px"],
  .section[style*="max-width:560px"] {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    gap: 8px;
  }

  .product-img-wrap {
    height: 130px;
  }

  .product-title {
    font-size: 13px;
  }

  .section-title {
    font-size: 22px;
  }

  .hero-title {
    font-size: 24px !important;
  }

  .trust-badges,
  .combo-grid,
  .recipe-grid,
  .why-grid,
  .feature-grid,
  .stats-row {
    grid-template-columns: 1fr !important;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ========== Professional Bulk / B2B ========== */
.b2b-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.b2b-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 15, 23, 0.92) 0%, rgba(11, 15, 23, 0.55) 45%, rgba(11, 15, 23, 0.35) 100%),
    url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}
.b2b-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 72px 0 56px;
}
.b2b-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--accent-gold);
  margin-bottom: 14px;
}
.b2b-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 16ch;
  line-height: 1.08;
  margin-bottom: 14px;
}
.b2b-hero-lead {
  max-width: 42ch;
  color: var(--text-light);
  font-size: 17px;
  margin-bottom: 28px;
}
.b2b-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.b2b-trust {
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}
.b2b-trust-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px 0;
}
.b2b-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
}
.b2b-trust-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: var(--accent-gold);
}
.b2b-trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}
.b2b-lanes-head {
  text-align: center;
  margin-bottom: 28px;
}
.b2b-lanes-head h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.b2b-lanes-head p {
  color: var(--text-muted);
}
.b2b-lanes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.b2b-lane {
  display: block;
  padding: 28px 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  background: var(--bg-secondary);
  transition: var(--transition-fast);
}
.b2b-lane:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}
.b2b-lane i {
  font-size: 26px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.b2b-lane h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.b2b-lane p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.b2b-lane span {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
}
.b2b-quote-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.b2b-quote-copy h2 {
  font-size: 30px;
  margin-bottom: 12px;
}
.b2b-quote-copy > p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.b2b-steps-list {
  padding-left: 18px;
  color: var(--text-light);
  line-height: 1.9;
  font-size: 14px;
}
.b2b-quote-panel {
  padding: 28px;
  position: sticky;
  top: 96px;
}
.b2b-form-head h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.b2b-form-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.b2b-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.b2b-step-dot.is-active,
.b2b-step-dot.is-done {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #111;
}
.b2b-step-line {
  flex: 1;
  height: 2px;
  background: var(--glass-border);
}
.b2b-step-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.b2b-form-step[hidden] {
  display: none !important;
}
.b2b-field {
  margin-bottom: 14px;
}
.b2b-field label,
.b2b-label-text {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.b2b-optional {
  font-weight: 500;
  opacity: 0.8;
}
.b2b-field input,
.b2b-field select,
.b2b-field textarea {
  width: 100%;
  padding: 11px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}
.b2b-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.b2b-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.b2b-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  color: var(--text-light);
}
.b2b-chip:has(input:checked) {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.08);
}
.b2b-chip input {
  accent-color: var(--accent-gold);
}
.b2b-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.b2b-form-actions .btn-primary,
.b2b-form-actions .btn-secondary {
  flex: 1;
  justify-content: center;
  min-height: 44px;
}
.b2b-review {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.b2b-review strong {
  color: var(--accent-gold);
}
.b2b-review-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.b2b-success {
  text-align: center;
  padding: 12px 4px;
}
.b2b-success i {
  font-size: 42px;
  color: var(--accent-green);
  margin-bottom: 12px;
}
.b2b-quote-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 8px 0 12px;
}
.b2b-next {
  text-align: left;
  margin: 18px auto 22px;
  max-width: 280px;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}
.b2b-page {
  max-width: 1100px;
  margin: 0 auto;
}
.b2b-page-hero {
  text-align: center;
  margin-bottom: 40px;
}
.b2b-page-hero .b2b-brand {
  margin-bottom: 10px;
}
.b2b-page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.b2b-page-hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

.b2b-corp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.b2b-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.b2b-moq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-card {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .why-card:nth-child(odd) {
    border-right: 1px solid var(--glass-border);
  }
  .why-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .rail-nav {
    display: none !important;
  }

  .b2b-trust-inner,
  .b2b-lanes-grid,
  .b2b-quote-layout,
  .b2b-two-col,
  .b2b-moq-grid {
    grid-template-columns: 1fr;
  }
  .b2b-corp-steps {
    grid-template-columns: 1fr 1fr;
  }
  .b2b-quote-panel {
    position: static;
  }
  .b2b-hero {
    min-height: 70vh;
  }
  .b2b-field-row {
    grid-template-columns: 1fr;
  }
}


/* ========== Food-app shell (Zomato-like, Snakzo tokens) ========== */
.app-header-mobile {
  display: none;
}
.bottom-tab-bar {
  display: none;
}
.product-offer-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(11, 15, 23, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 6px;
  max-width: 75%;
}
.product-rating-pill {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #15803d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}
.product-rating-pill i {
  font-size: 9px;
}
.product-card.food .product-badge,
.product-card.food .btn-wishlist-card {
  display: none;
}
.product-card.food .product-img-wrap {
  height: 140px;
}
.product-card.food .product-details {
  padding: 10px 12px 12px;
}
.product-card.food .product-title {
  font-size: 14px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 4px;
  line-height: 1.25;
}
.product-meta-line {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.product-card.food .card-qty-label {
  display: none;
}
.product-card.food .card-qty-row {
  justify-content: flex-start;
  margin-top: 6px;
}
.product-card.food .qty-btn {
  width: 28px;
  height: 28px;
}
.product-card.food .qty-input {
  width: 34px;
  height: 28px;
  font-size: 12px;
}
.product-card.food .btn-add-cart,
.product-card.food .btn-buy-now {
  min-height: 36px;
  font-size: 12px;
  padding: 6px 8px;
}
.food-deals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.food-promo-section {
  padding: 12px 16px 8px;
  max-width: 1280px;
  margin: 0 auto;
}
.food-promo-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.food-promo-track::-webkit-scrollbar { display: none; }
.food-promo-card {
  flex: 0 0 min(100%, 520px);
  scroll-snap-align: start;
  min-height: 160px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(120deg, rgba(11,15,23,0.88) 0%, rgba(11,15,23,0.35) 55%, rgba(245,158,11,0.25) 100%),
    var(--promo-img) center/cover no-repeat;
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 20px;
}
.food-promo-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}
.food-promo-card h2 {
  font-size: clamp(20px, 4vw, 28px);
  margin: 0 0 6px;
  max-width: 16ch;
  line-height: 1.15;
  color: #fff;
}
.food-promo-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 12px;
  max-width: 36ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  background: var(--accent-gold);
  padding: 8px 12px;
  border-radius: 999px;
}
.food-promo-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.food-promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--glass-border);
  padding: 0;
  cursor: pointer;
}
.food-promo-dot.active {
  background: var(--accent-gold);
  width: 18px;
  border-radius: 999px;
}
.food-mind-section {
  padding: 8px 16px 4px;
  max-width: 1280px;
  margin: 0 auto;
}
.food-section-title {
  font-size: 18px;
  margin: 0 0 12px;
}
.food-cat-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.food-cat-rail::-webkit-scrollbar { display: none; }
.food-cat-item {
  flex: 0 0 auto;
  width: 72px;
  text-align: center;
  color: var(--text-light);
}
.food-cat-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 2px solid var(--glass-border);
  font-size: 22px;
  color: var(--accent-gold);
  margin-bottom: 6px;
}
.food-cat-all {
  background: rgba(245, 158, 11, 0.12);
}
.food-cat-item.is-active .food-cat-circle,
.food-cat-item:hover .food-cat-circle {
  border-color: var(--accent-gold);
}
.food-cat-item.is-active .food-cat-name {
  color: var(--accent-gold);
  box-shadow: inset 0 -2px 0 var(--accent-gold);
}
.food-cat-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 2px;
}
.food-chips-section {
  padding: 4px 16px 8px;
  max-width: 1280px;
  margin: 0 auto;
}
.food-filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.food-filter-chips::-webkit-scrollbar { display: none; }
.food-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--bg-secondary);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}
.food-chip:hover,
.food-chip-gold {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.food-deals-section {
  padding-top: 12px;
}

@media (max-width: 900px) {
  .top-bar-desktop {
    display: none !important;
  }
  .header-desktop-bar {
    padding: 0 !important;
    min-height: 0 !important;
    border: none !important;
  }
  .header-desktop-bar > .header-desktop-only {
    display: none !important;
  }
  .app-header-mobile {
    display: block;
    padding: 10px 14px 12px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
  }
  .app-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
  }
  .app-deliver-to {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    flex: 1;
    color: inherit;
  }
  .app-deliver-to > i {
    color: var(--accent-gold);
    margin-top: 4px;
  }
  .app-deliver-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .app-deliver-eyebrow {
    font-size: 11px;
    color: var(--text-muted);
  }
  .app-deliver-city {
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .app-deliver-city i {
    font-size: 10px;
    margin-left: 2px;
  }
  .app-deliver-sub {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
  }
  .app-header-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .app-profile-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
  }
  .app-search-box {
    width: 100%;
    max-width: none;
    display: flex !important;
  }
  .app-search-box .search-input {
    width: 100%;
  }
  .main-nav {
    top: calc(env(safe-area-inset-top, 0px) + 118px) !important;
  }
  body.has-bottom-tabs {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .bottom-tab-bar {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 1100;
    background: rgba(17, 24, 39, 0.96);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 8px 6px;
    justify-content: space-around;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  }
  [data-theme="light"] .bottom-tab-bar {
    background: rgba(255,255,255,0.96);
  }
  .bottom-tab {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 6px 4px;
    border-radius: 12px;
  }
  .bottom-tab i {
    font-size: 16px;
  }
  .bottom-tab.is-active {
    color: var(--accent-gold);
    background: rgba(245, 158, 11, 0.12);
  }
  .bottom-tab-badge {
    position: absolute;
    top: 0;
    right: calc(50% - 22px);
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--accent-crimson);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }
  .food-deals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .food-promo-card {
    flex-basis: 92%;
    min-height: 170px;
  }
}

@media (min-width: 901px) {
  .food-deals-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .food-promo-card {
    flex: 0 0 560px;
    min-height: 200px;
  }
  .product-card.food .product-img-wrap {
    height: 180px;
  }
}

/* Login OTP panel — deter casual copy (inputs remain selectable for typing) */
.no-select-secure {
  -webkit-user-select: none;
  user-select: none;
}
.no-select-secure input,
.no-select-secure textarea,
.no-select-secure button {
  -webkit-user-select: text;
  user-select: text;
}

/* DevTools soft block overlay (anti-inspect.js) */
#snakzo-devtools-block {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(11, 15, 23, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: #f9fafb;
}
#snakzo-devtools-block.is-visible {
  display: flex;
}
html.snakzo-devtools-blur body {
  filter: blur(6px);
  pointer-events: none;
}
.snakzo-devtools-block-inner {
  max-width: 360px;
}
.snakzo-devtools-block-inner i {
  font-size: 40px;
  color: #f59e0b;
  margin-bottom: 12px;
}
.snakzo-devtools-block-inner h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.snakzo-devtools-block-inner p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
}
