.product-meta-row { display: none !important; }
/* ==========================================================================
   VAPE STORE BENGALURU (vapestorebengaluru.com) - DESIGN SYSTEM & STYLES
   Aesthetic: Dark Cyber Luxury, Glassmorphism, Neon Accents, Silky Animations
   ========================================================================== */

:root {
  --bg-main: #07090e;
  --bg-card: rgba(16, 21, 33, 0.75);
  --bg-card-hover: rgba(22, 29, 46, 0.9);
  --bg-glass: rgba(14, 18, 28, 0.65);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.35);

  --neon-cyan: #00f0ff;
  --neon-cyan-glow: rgba(0, 240, 255, 0.4);
  --neon-purple: #8a2be2;
  --neon-purple-glow: rgba(138, 43, 226, 0.35);
  --neon-magenta: #ff007a;
  --gold-accent: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --emerald: #10b981;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

  --transition-fast: 0.18s ease;
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #111a2e 0%, #07090e 60%);
  background-attachment: fixed;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-base);
}

input, select {
  font-family: inherit;
  outline: none;
  border: none;
}

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

.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #7000ff 50%, #ff007a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--neon-cyan);
}

.text-green {
  color: var(--emerald);
}

.hidden {
  display: none !important;
}

/* Pulse Dot */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--neon-cyan); }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* ================= 18+ AGE GATE MODAL ================= */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 6, 11, 0.95);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.age-modal-card {
  max-width: 520px;
  width: 100%;
  background: linear-gradient(160deg, rgba(20, 26, 42, 0.95), rgba(11, 15, 25, 0.98));
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
}

.age-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold-accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.age-modal-card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.age-domain-tag {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.statutory-warning-box {
  background: rgba(239, 68, 68, 0.12);
  border-left: 3px solid #ef4444;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: #fca5a5;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.age-subtext {
  font-size: 0.96rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 24px;
}

.age-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}

.age-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Under Age Screen */
.under-age-screen {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: #05070c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.under-age-card {
  max-width: 480px;
  background: #111625;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.icon-warning {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ================= TOP ANNOUNCEMENT BAR ================= */
.top-announcement-bar {
  background: linear-gradient(90deg, #070d1a, #131b2e, #070d1a);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  padding: 8px 0;
  font-size: 0.82rem;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-announcement-bar .sep {
  color: var(--neon-cyan);
  opacity: 0.6;
}

/* ================= MAIN HEADER & NAV ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-base);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  flex-shrink: 0;
}

.logo-symbol svg {
  width: 24px;
  height: 24px;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: block;
  white-space: nowrap;
}

.brand-domain {
  display: block;
  font-size: 0.72rem;
  color: var(--neon-cyan);
  letter-spacing: 0.8px;
  font-family: var(--font-body);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 3px;
  position: relative;
  white-space: nowrap !important;
  letter-spacing: 0.2px;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.nav-item:hover, .nav-item.active {
  color: #fff;
}

.nav-item.active::after, .nav-item:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Search Wrapper */
.search-wrapper {
  position: relative;
  width: 175px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  padding: 7px 14px;
  transition: all var(--transition-base);
}

.search-wrapper:focus-within {
  width: 215px;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
  background: rgba(16, 22, 36, 0.95);
}

.search-icon {
  stroke: var(--text-muted);
  margin-right: 8px;
  flex-shrink: 0;
}

.search-wrapper input {
  background: transparent;
  color: var(--text-primary);
  font-size: 0.82rem;
  width: 100%;
}

.search-wrapper input::placeholder {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.clear-search-btn {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 0 4px;
}

.clear-search-btn:hover {
  color: var(--text-primary);
}

/* Header Buttons */
.btn-pin-shortcut {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--neon-cyan);
  padding: 7px 13px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-pin-shortcut:hover {
  background: rgba(0, 240, 255, 0.18);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.cart-trigger-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-bounce);
}

.cart-trigger-btn:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
}

.cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255, 0, 122, 0.5);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}

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

/* Mobile Nav Menu */
.mobile-nav-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  background: #0d121e;
  border-top: 1px solid var(--border-glass);
}

.mobile-nav-menu.open {
  display: flex;
}

.mobile-nav-item {
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
}

.hero-backdrop-glow {
  position: absolute;
  top: 10%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(138, 43, 226, 0.12) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-glow);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.hero-headline {
  font-size: 3.2rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00f0ff 0%, #0070f3 100%);
  color: #040812;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  transition: all var(--transition-bounce);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
  background: linear-gradient(135deg, #33f3ff 0%, #0080ff 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline-danger {
  padding: 12px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn-outline-danger:hover {
  background: rgba(239, 68, 68, 0.25);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-primary);
}

.trust-item small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Featured Hero Showcase Card */
.hero-visual {
  position: relative;
}

.hero-card-glow {
  background: linear-gradient(165deg, rgba(20, 27, 44, 0.85), rgba(11, 15, 25, 0.95));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.device-graphic-wrapper {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.vape-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float-vape 3.5s ease-in-out infinite;
}

@keyframes float-vape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.vape-mouthpiece {
  width: 24px;
  height: 18px;
  background: #1a2233;
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vape-body {
  width: 80px;
  height: 120px;
  background: linear-gradient(180deg, #101929 0%, #004d66 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5), inset 0 0 15px rgba(0, 240, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6px;
  position: relative;
}

.vape-display {
  background: #050b14;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 6px;
  width: 85%;
  padding: 4px;
  text-align: center;
}

.display-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--neon-cyan);
  display: block;
  line-height: 1;
}

.display-lbl {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.battery-meter {
  width: 90%;
  height: 4px;
  background: #111;
  border-radius: 2px;
  margin: 3px auto 0;
  overflow: hidden;
}

.meter-fill {
  width: 88%;
  height: 100%;
  background: var(--emerald);
  box-shadow: 0 0 5px var(--emerald);
}

.vape-branding {
  text-align: center;
}

.vape-branding span {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

.vape-branding small {
  font-size: 0.5rem;
  color: var(--neon-cyan);
  letter-spacing: 0.8px;
}

.vape-base {
  width: 74px;
  height: 8px;
  background: #0d1320;
  border-radius: 0 0 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.usb-port {
  width: 14px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

.featured-card-details h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.featured-flavor {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.featured-specs-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.featured-price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.featured-price .inr-symbol {
  font-size: 1rem;
  color: var(--neon-cyan);
}

.featured-price .val {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
}

.featured-price .strike {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
}

.btn-add-quick {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-bounce);
}

.btn-add-quick:hover {
  background: var(--neon-cyan);
  color: #040812;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}

.delivery-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border-glass);
  padding-top: 12px;
}

.green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

/* ================= BANGALORE PINCODE SECTION ================= */
.pincode-section {
  padding: 50px 0;
  position: relative;
}

.pincode-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(9, 13, 23, 0.9));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  margin-bottom: 12px;
}

.pincode-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pincode-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.pincode-form {
  margin-bottom: 20px;
}

.pincode-input-box {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.pincode-input-box input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.pincode-input-box input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.btn-check-pin {
  background: var(--neon-cyan);
  color: #050a14;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.btn-check-pin:hover {
  background: #33f3ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.pincode-result {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

.pincode-result.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.pincode-result.warning {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde68a;
}

.quick-areas-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.quick-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.area-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.area-pill:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
}

.pincode-sidebar-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
}

.p-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

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

/* ================= PRODUCT CATALOG SECTION ================= */
.products-section {
  padding: 60px 0;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-wrapper label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.custom-select {
  background: rgba(20, 26, 42, 0.9);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.custom-select:focus {
  border-color: var(--neon-cyan);
}

/* Category Tabs */
.category-tabs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 30px;
}

.category-tabs-row::-webkit-scrollbar {
  height: 4px;
}

.category-tabs-row::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 2px;
}

.cat-pill {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.cat-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cat-pill.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(138, 43, 226, 0.2));
  border-color: var(--neon-cyan);
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
}

.cat-pill.highlight-gold {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--gold-accent);
}

.cat-pill.highlight-gold.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(239, 68, 68, 0.25));
  border-color: var(--gold-accent);
  color: #fff;
}

.search-notice {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.btn-link {
  color: var(--neon-cyan);
  text-decoration: underline;
  font-size: 0.85rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.15);
  transform: translateY(-4px);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--border-glow);
  color: var(--neon-cyan);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.product-card-badge.gold {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--gold-accent);
}

/* Optimized Product Image Framing & Sizing */
.product-img-wrapper {
  width: 100%;
  height: 200px;
  margin: 10px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(16, 22, 36, 0.4) 70%, transparent 100%);
  border-radius: var(--radius-md);
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all var(--transition-base);
}

.product-card:hover .product-img-wrapper {
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, rgba(16, 22, 36, 0.6) 70%, transparent 100%);
  border-color: rgba(0, 240, 255, 0.2);
}

.product-real-img {
  width: 100%;
  height: 100%;
  max-height: 175px;
  max-width: 175px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-bounce), filter var(--transition-fast);
  display: block;
  margin: 0 auto;
}

.product-card:hover .product-real-img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 16px 28px rgba(0, 240, 255, 0.45));
}

.hero-showcase-img {
  max-height: 200px;
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 240, 255, 0.5));
  animation: float-vape 3.5s ease-in-out infinite;
}

.brand-emblem-card {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(20, 26, 42, 0.9), rgba(11, 15, 25, 0.95));
  border: 1px solid var(--border-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
  transition: transform var(--transition-bounce);
}

.brand-emblem-card.gold {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

.product-card:hover .brand-emblem-card {
  transform: scale(1.06);
}

.emblem-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #fff;
}

.emblem-subtitle {
  font-size: 0.68rem;
  color: var(--neon-cyan);
  letter-spacing: 0.8px;
}

.emblem-tag {
  font-size: 0.62rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

/* Quick View Gallery */
.qv-thumbnails-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.qv-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  object-fit: contain;
  padding: 4px;
  transition: all var(--transition-fast);
}

.qv-thumb.active, .qv-thumb:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.45);
  transform: translateY(-2px);
}

.product-info-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.product-category-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-rating {
  font-size: 0.78rem;
  color: var(--gold-accent);
  font-weight: 700;
}

.product-title {
  font-size: 1.12rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-flavor-tag {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.product-specs-list {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.product-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
}

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

.btn-card-add {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-card-add:hover {
  background: var(--neon-cyan);
  color: #040812;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* ================= BENGALURU COVERAGE SECTION ================= */
.coverage-section {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(14, 20, 32, 0.6), transparent);
}

.section-center-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-center-head h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-center-head p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.coverage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-base);
}

.coverage-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.c-badge {
  display: inline-block;
  background: rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.coverage-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.areas-list {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.delivery-status {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 600;
}

/* ================= REVIEWS SECTION ================= */
.reviews-section {
  padding: 60px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card .stars {
  color: var(--gold-accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #050a14;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-meta strong {
  display: block;
  font-size: 0.88rem;
}

.reviewer-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 60px 0 80px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-glow);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--neon-cyan);
  transition: transform var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(9, 13, 23, 0.5);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ================= SLIDE-OUT CART DRAWER ================= */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #0d121f;
  border-left: 1px solid var(--border-glow);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-bounce);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.cart-drawer.open {
  transform: translateX(0);
}

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

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-title h3 {
  font-size: 1.25rem;
}

.cart-items-tag {
  background: rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.cart-close-btn {
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1;
}

.cart-close-btn:hover {
  color: #fff;
}

/* Free Delivery Progress */
.delivery-progress-wrap {
  padding: 12px 24px;
  background: rgba(16, 22, 36, 0.8);
  border-bottom: 1px solid var(--border-glass);
}

.delivery-progress-text {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.delivery-progress-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.delivery-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--emerald));
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: width 0.4s ease;
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empty-cart-view {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-cart-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.empty-cart-view h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-cart-view p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* Cart Item Row */
.cart-item-row {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px;
  position: relative;
}

.cart-item-visual {
  width: 50px;
  height: 60px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-flavor {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-price-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
}

.qty-btn {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0 4px;
}

.qty-btn:hover {
  color: #fff;
}

.qty-val {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 1.1rem;
  position: absolute;
  top: 10px;
  right: 12px;
}

.cart-item-remove:hover {
  color: #ef4444;
}

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-glass);
  background: #090e18;
}

.coupon-box {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.coupon-box input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.coupon-box input:focus {
  border-color: var(--neon-cyan);
}

.btn-coupon {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0 16px;
  border-radius: var(--radius-sm);
}

.coupon-status-msg {
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.coupon-status-msg.success {
  color: var(--emerald);
}

.coupon-status-msg.error {
  color: #ef4444;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.price-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 4px 0;
}

.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.btn-checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00f0ff 0%, #0070f3 100%);
  color: #040812;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.btn-checkout:hover {
  background: linear-gradient(135deg, #33f3ff 0%, #0080ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
}

.checkout-guarantee {
  text-align: center;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ================= MODALS & POPUPS ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.modal-dialog {
  background: #0f1524;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1;
}

.modal-close-btn:hover {
  color: #fff;
}

/* Quick View Layout */
.quick-view-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.qv-image-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qv-info h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.qv-flavor {
  color: var(--neon-cyan);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.qv-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.qv-specs-table {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
}

.qv-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.qv-spec-row span {
  color: var(--text-muted);
}

.qv-spec-row strong {
  color: var(--text-primary);
}

.qv-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Checkout Dialog */
.checkout-dialog {
  max-width: 560px;
}

.checkout-header {
  margin-bottom: 24px;
}

.checkout-header h2 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.checkout-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-group input, .form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: 0.88rem;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--neon-cyan);
}

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

.payment-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.85rem;
}

.payment-radio input {
  accent-color: var(--neon-cyan);
}

.age-declaration-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 6px 0;
}

.age-declaration-check input {
  margin-top: 3px;
  accent-color: var(--neon-cyan);
}

.checkout-summary-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.c-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* Order Success Step */
.order-success-box {
  text-align: center;
  padding: 20px 10px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}

.order-success-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.order-id-tag {
  color: var(--neon-cyan);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.dispatch-details-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

/* ================= MAIN FOOTER ================= */
.main-footer {
  background: #05070c;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col .brand-logo {
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-nav-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.5px;
}

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

.footer-nav-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav-col a:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-statutory-banner {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 30px;
}

.footer-statutory-banner h4 {
  color: #fca5a5;
  font-size: 0.85rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.footer-statutory-banner p {
  color: #fca5a5;
  opacity: 0.85;
  font-size: 0.78rem;
  line-height: 1.5;
}

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

.footer-badge-icons {
  display: flex;
  gap: 16px;
}

.footer-badge-icons span {
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
}

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

.toast {
  background: #111827;
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1), fadeOut 0.3s ease 2.7s forwards;
}

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

@keyframes fadeOut {
  to { opacity: 0; transform: translateY(10px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================= RESPONSIVE DESIGN & MOBILE OPTIMIZATION ================= */

/* Laptops & Standard Desktop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .header-container {
    padding: 12px 20px;
    gap: 16px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-item {
    font-size: 0.82rem;
  }
  .search-wrapper {
    width: 145px;
  }
  .search-wrapper:focus-within {
    width: 180px;
  }
  .btn-pin-shortcut {
    padding: 6px 10px;
    font-size: 0.74rem;
  }
}

/* Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-headline {
    font-size: 2.6rem;
  }
  .pincode-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  /* Header Mobile */
  .header-container {
    padding: 12px 16px;
  }
  .search-wrapper {
    display: none;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-domain {
    font-size: 0.68rem;
  }
  
  /* Hero Mobile */
  .hero-section {
    padding: 40px 0 30px;
  }
  .hero-headline {
    font-size: 2rem;
    line-height: 1.25;
  }
  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  .hero-trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-top: 20px;
  }
  .trust-item strong {
    font-size: 0.78rem;
  }
  .trust-item small {
    font-size: 0.68rem;
  }
  
  /* Pincode Section Mobile */
  .pincode-section {
    padding: 30px 0;
  }
  .pincode-card {
    padding: 24px 18px;
  }
  .pincode-content h2 {
    font-size: 1.5rem;
  }
  .pincode-input-box {
    max-width: 100%;
  }
  
  /* Section Headers */
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .sort-wrapper {
    width: 100%;
    justify-content: space-between;
  }
  .custom-select {
    flex: 1;
    max-width: 240px;
  }
  
  /* Category Tabs horizontal swipe */
  .category-tabs-row {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
  .cat-pill {
    padding: 8px 16px;
    font-size: 0.82rem;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  
  /* Modals Mobile */
  .modal-dialog {
    padding: 22px 18px;
    width: 95%;
    max-height: 88vh;
  }
  .quick-view-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .qv-image-box {
    height: 220px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  /* Footer Mobile */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-badge-icons {
    justify-content: center;
  }
}

/* Small SmartPhones & iPhones (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  /* Header */
  .header-container {
    padding: 10px 12px;
    gap: 8px;
  }
  .logo-symbol {
    width: 32px;
    height: 32px;
  }
  .logo-symbol svg {
    width: 20px;
    height: 20px;
  }
  .brand-title {
    font-size: 0.92rem;
  }
  .brand-domain {
    font-size: 0.62rem;
  }
  .btn-pin-shortcut {
    padding: 7px 10px;
    font-size: 0.72rem;
  }
  .btn-pin-shortcut span {
    display: none; /* Hide text, icon visible on small screens */
  }
  .btn-pin-shortcut::after {
    content: 'PIN';
    font-size: 0.72rem;
    font-weight: 700;
  }
  .cart-trigger-btn {
    width: 38px;
    height: 38px;
  }
  
  /* Hero */
  .hero-headline {
    font-size: 1.65rem;
  }
  .hero-tag {
    font-size: 0.68rem;
    padding: 4px 10px;
    margin-bottom: 14px;
  }
  .hero-card-glow {
    padding: 18px 14px;
  }
  .hero-showcase-img {
    max-height: 160px;
  }
  
  /* Pincode Input on Mobile */
  .pincode-input-box {
    flex-direction: column;
    gap: 10px;
  }
  .pincode-input-box input,
  .btn-check-pin {
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .btn-check-pin {
    padding: 12px;
  }
  .quick-areas-list {
    gap: 6px;
  }
  .area-pill {
    padding: 4px 9px;
    font-size: 0.72rem;
  }
  
  /* E-Commerce 2-Column Grid on Mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-card {
    padding: 12px 10px;
    border-radius: var(--radius-sm);
  }
  .product-card-badge {
    top: 8px;
    left: 8px;
    font-size: 0.58rem;
    padding: 2px 6px;
  }
  .product-img-wrapper {
    height: 135px;
    padding: 6px;
    margin: 6px 0 8px;
  }
  .product-real-img {
    max-height: 120px;
    max-width: 120px;
  }
  .product-meta-row {
    font-size: 0.68rem;
    margin-bottom: 3px;
  }
  .product-category-text {
    font-size: 0.65rem;
  }
  .product-rating {
    font-size: 0.72rem;
  }
  .product-title {
    font-size: 0.84rem;
    line-height: 1.25;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.1em;
  }
  .product-flavor-tag {
    font-size: 0.72rem;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-specs-list {
    display: none; /* Hide dense specs tags in 2-column mobile card view */
  }
  .product-card-footer {
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .product-price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .current-price {
    font-size: 1.05rem;
  }
  .original-price {
    font-size: 0.75rem;
  }
  .btn-card-add {
    width: 100%;
    justify-content: center;
    padding: 8px 0;
    font-size: 0.8rem;
  }
  
  /* Slide-Out Cart on Mobile (Full Screen) */
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }
  .cart-header {
    padding: 16px;
  }
  .cart-items-scroll {
    padding: 14px 16px;
  }
  .cart-footer {
    padding: 16px;
  }
  
  /* Age Gate Modal Mobile */
  .age-modal-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
  .age-modal-card h2 {
    font-size: 1.4rem;
  }
  .statutory-warning-box {
    font-size: 0.76rem;
    padding: 10px;
    margin-bottom: 16px;
  }
  .age-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  .age-modal-actions button {
    width: 100%;
    justify-content: center;
  }
  
  /* Quick View Modal Mobile */
  .modal-dialog {
    padding: 20px 14px;
    max-height: 90vh;
  }
  .qv-image-box {
    height: 180px;
    padding: 10px;
  }
  #qvMainImage {
    max-height: 160px;
    max-width: 160px;
  }
  .qv-thumbnails-row {
    gap: 6px;
  }
  .qv-thumb {
    width: 44px;
    height: 44px;
    padding: 2px;
  }
  .qv-info h2 {
    font-size: 1.25rem;
  }
  .qv-price-row .current-price {
    font-size: 1.4rem;
  }
}



/* ================= WHATSAPP BUY BUTTONS ================= */
.btn-card-whatsapp {
  width: 100%;
  padding: 8px 12px;
  background: #25d366;
  color: #041009 !important;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-card-whatsapp:hover {
  background: #1ebe5d;
  color: #041009 !important;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #041009;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.25s ease;
  text-decoration: none;
}

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


/* ================= LOGO & OFFICIAL SEAL STYLES ================= */
.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25), 0 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 240, 255, 0.35);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.45);
  border-color: var(--neon-cyan);
}

.footer-logo-img {
  width: 52px;
  height: 52px;
}

.official-seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(14, 20, 32, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 10px 18px;
  margin-bottom: 24px;
  max-width: 520px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.15);
  backdrop-filter: blur(12px);
}

.hero-seal-img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #ffffff;
  padding: 3px;
  object-fit: contain;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
  flex-shrink: 0;
}

.seal-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.seal-title {
  font-weight: 800;
  font-size: 0.88rem;
  color: #ffffff;
  letter-spacing: 0.6px;
  font-family: var(--font-heading);
}

.seal-desc {
  font-size: 0.78rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

@media (max-width: 768px) {
  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
  .official-seal-badge {
    padding: 8px 12px;
    gap: 10px;
    width: 100%;
  }
  .hero-seal-img {
    width: 44px;
    height: 44px;
  }
  .seal-title {
    font-size: 0.8rem;
  }
  .seal-desc {
    font-size: 0.72rem;
  }
}
