/* ==========================================================================
   1. GLOBAL VARIABLES & SYSTEM TOKENS
   ========================================================================== */
:root {
  --bg-darker: #060608;
  --bg-dark: #0c0c10;
  --bg-card: #121218;
  --border-color: rgba(255, 255, 255, 0.05);
  
  --text-white: #ffffff;
  --text-gray-100: #f3f4f6;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --text-gray-500: #6b7280;
  
  /* Brand Neons */
  --accent-cyan: #06b6d4;
  --accent-purple: #a855f7;
  --accent-green: #10b981;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  --grad-card: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.00) 100%);
  --grad-neon-pink: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  
  /* Shadows & Radius */
  --shadow-glow: 0 0 20px rgba(168, 85, 247, 0.15);
  --shadow-neon-cyan: 0 0 15px rgba(6, 182, 212, 0.4);
  --shadow-neon-green: 0 0 15px rgba(16, 185, 129, 0.4);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Animation Speeds */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --max-width: 1200px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-darker: #f1f5f9;
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #cbd5e1;
  
  --text-white: #0f172a;
  --text-gray-100: #1e293b;
  --text-gray-300: #334155;
  --text-gray-400: #475569;
  --text-gray-500: #64748b;
  
  --grad-card: linear-gradient(180deg, rgba(15, 23, 42, 0.01) 0%, rgba(15, 23, 42, 0.00) 100%);
  --shadow-glow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* ==========================================================================
   2. RESET & GLOBAL STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-darker);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, .navbar-logo, .footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

ul {
  list-style: none;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* Unified Main Content Container */
.main-content-wrapper {
  min-height: calc(100vh - 400px); /* footer spacer */
}

.page-view {
  display: none; /* Hide by default in SPA */
}

.page-view.active {
  display: block; /* Show active route view */
  animation: fadeIn 0.4s ease;
}

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

/* Primary Button glows */
.glow-button {
  background: var(--grad-primary);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  text-align: center;
  display: inline-block;
}

.glow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.glow-button:active {
  transform: translateY(0);
}

/* Section Headings */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-gray-400);
  font-size: 0.95rem;
}

/* ==========================================================================
   3. HEADER / NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  transition: height var(--transition-fast), background var(--transition-fast);
}

[data-theme="light"] .navbar {
  background: rgba(241, 245, 249, 0.85);
}

.navbar-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Wordmark Logo with Pulsing Ring */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.8rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  letter-spacing: -0.04em;
}

.logo-text-vape {
  color: var(--text-white);
}

.logo-text-stop {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-ring {
  position: absolute;
  top: -5px;
  right: -10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: var(--shadow-glow);
  animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 1; box-shadow: 0 0 10px var(--accent-purple); }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Autocomplete Search wrapper */
.navbar-search-wrapper {
  position: relative;
  max-width: 320px;
  width: 100%;
  display: none; /* Hide on smaller mobile, visible on tablet+ */
}

.nav-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 16px;
  width: 100%;
  transition: var(--transition-fast);
}

[data-theme="light"] .nav-search-bar {
  background: rgba(15, 23, 42, 0.03);
}

.nav-search-bar:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.nav-search-input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 0.85rem;
  width: 100%;
}

.nav-search-icon {
  width: 16px;
  height: 16px;
  color: var(--text-gray-400);
  margin-left: 8px;
}

/* Autocomplete Dropdown List */
.nav-autocomplete-dropdown {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  max-height: 350px;
  overflow-y: auto;
  z-index: 1001;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.autocomplete-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .autocomplete-item:hover {
  background: rgba(15, 23, 42, 0.02);
}

.autocomplete-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.autocomplete-info {
  display: flex;
  flex-direction: column;
}

.autocomplete-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

.autocomplete-meta {
  font-size: 0.75rem;
  color: var(--text-gray-400);
  margin-top: 2px;
}

.autocomplete-no-results {
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray-500);
}

/* Navbar Links Desktop */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-gray-300);
  cursor: pointer;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.navbar-links li:hover,
.navbar-links li.active {
  color: var(--text-white);
}

/* Underline Hover Transition */
.navbar-links li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: var(--transition-fast);
}

.navbar-links li:hover::after,
.navbar-links li.active::after {
  width: 100%;
}

/* ==========================================================================
   MEGA MENU DROPDOWN
   ========================================================================== */
.shop-nav-item {
  position: relative;
}

.nav-shop-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow-down {
  border: solid var(--text-gray-400);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: var(--transition-fast);
}

.shop-nav-item:hover .arrow-down {
  transform: rotate(-135deg) translateY(-2px);
  border-color: var(--text-white);
}

.mega-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  padding: 40px 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.shop-nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mega-menu-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 16px;
  border-radius: var(--border-radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

[data-theme="light"] .mega-menu-column {
  background: rgba(15, 23, 42, 0.01);
  border-color: rgba(15, 23, 42, 0.04);
}

.mega-menu-column:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.mega-menu-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
}

/* Icons base64/SVG elements */
.icon-disposable { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2306b6d4" stroke-width="2"><rect x="7" y="2" width="10" height="20" rx="3"/><line x1="12" y1="2" x2="12" y2="5"/><circle cx="12" cy="18" r="1.5"/></svg>'); }
.icon-pods { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23a855f7" stroke-width="2"><path d="M8 2h8v6H8z"/><rect x="6" y="8" width="12" height="14" rx="2"/></svg>'); }
.icon-mods { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ec4899" stroke-width="2"><rect x="5" y="4" width="14" height="18" rx="2"/><circle cx="12" cy="9" r="2"/><rect x="8" y="14" width="8" height="4" rx="1"/></svg>'); }
.icon-liquids { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2310b981" stroke-width="2"><path d="M12 2v6"/><path d="M12 8a5 5 0 00-5 5v5a5 5 0 0010 0v-5a5 5 0 00-5-5z"/></svg>'); }
.icon-coils { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f59e0b" stroke-width="2"><circle cx="12" cy="12" r="9"/><path d="M12 6v12"/><path d="M8 12h8"/></svg>'); }
.icon-acc { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236366f1" stroke-width="2"><path d="M18 11V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2h7"/><circle cx="18" cy="18" r="3"/><line x1="20" y1="20" x2="22" y2="22"/></svg>'); }

.mega-menu-column h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-white);
}

.mega-menu-column p {
  font-size: 0.75rem;
  color: var(--text-gray-400);
  line-height: 1.4;
}

/* ==========================================================================
   ACTIONS AREA
   ========================================================================== */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Light/Dark Toggle */
.theme-toggle-btn {
  color: var(--text-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  color: var(--text-white);
  border-color: var(--text-gray-400);
  background: rgba(255, 255, 255, 0.02);
}

.theme-icon-svg {
  width: 18px;
  height: 18px;
}

/* Cart Button */
.cart-trigger-container {
  position: relative;
}

.cart-btn {
  color: var(--text-gray-300);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-btn:hover {
  color: var(--text-white);
  border-color: var(--text-gray-400);
}

.cart-icon-svg {
  width: 18px;
  height: 18px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-purple);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

/* WhatsApp Nav button */
.navbar-wa-cta {
  display: none; /* Hide on mobile/tablet, show desktop */
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition-fast);
}

.navbar-wa-cta:hover {
  background: var(--accent-green);
  color: #060608;
  box-shadow: var(--shadow-neon-green);
  border-color: transparent;
}

.wa-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: waPulse 1.5s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Hamburger mobile */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

/* ==========================================================================
   4. HERO BANNER SLIDER
   ========================================================================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  background-color: var(--bg-darker);
  overflow: hidden;
  margin-top: 80px; /* offset navbar height */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Slide in from right by default */
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease, visibility 0.8s;
  z-index: 1;
}

.hero-slide.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.hero-slide-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 8, 0.9) 0%,
    rgba(6, 6, 8, 0.8) 30%,
    rgba(6, 6, 8, 0.2) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.hero-slide-content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: left;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  transition-delay: 0.3s;
  z-index: 10;
}

.hero-slide.active .hero-slide-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 650px;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 35px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  font-weight: 600;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.hero-cta:hover .arrow-icon {
  transform: translateX(4px);
}

/* Floating particles Canvas */
.smoke-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.indicator-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.indicator-dot.active {
  background: var(--accent-cyan);
  box-shadow: var(--shadow-neon-cyan);
  width: 28px;
  border-radius: 50px;
}

/* ==========================================================================
   5. SHOP BY CATEGORY GRID (HOMEPAGE)
   ========================================================================== */
.section-categories {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.category-card {
  background: var(--grad-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-glow);
}

.category-icon-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--text-gray-400);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.category-arrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* ==========================================================================
   6. PRODUCT CARD & 3D HOVER GLASS SHINE EFFECT
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-card {
  background: var(--grad-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color var(--transition-fast), transform 0.1s ease, box-shadow 0.1s ease;
  transform-style: preserve-3d;
}

.product-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

/* 3D Reflection Shine Overlay */
.card-shine {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--border-radius-md);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 5;
}

.status-badge.in-stock {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.no-stock {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.product-card-image-container {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
}

.product-card-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-normal);
  z-index: 2;
}

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

.product-image-radial-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

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

.product-brand {
  font-size: 0.75rem;
  color: var(--text-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--text-white);
}

.product-flavor-line {
  font-size: 0.8rem;
  color: var(--accent-purple);
  font-weight: 500;
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 800;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-gray-400);
  margin-right: 2px;
}

.price-val {
  font-size: 1.15rem;
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.btn-quick-wa {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-quick-wa:hover {
  background: var(--accent-green);
  color: #060608;
  box-shadow: var(--shadow-neon-green);
}

.wa-icon-svg {
  width: 16px;
  height: 16px;
}

.btn-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-gray-300);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
}

.product-card:hover .btn-details {
  background: var(--text-white);
  color: var(--bg-darker);
}

/* Out of stock card */
.product-card.out-of-stock {
  opacity: 0.6;
}

/* ==========================================================================
   7. BEST SELLERS
   ========================================================================== */
.section-best-sellers {
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(18,18,24,0.4) 0%, rgba(6,6,8,0) 80%);
}

[data-theme="light"] .section-best-sellers {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(241, 245, 249, 0) 80%);
}

/* ==========================================================================
   8. FLAVOUR SPOTLIGHT SECTION
   ========================================================================== */
.flavour-spotlight {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.spotlight-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 8, 0.95) 0%,
    rgba(6, 6, 8, 0.8) 50%,
    rgba(6, 6, 8, 0.1) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.spotlight-content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.spotlight-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 20px;
}

.spotlight-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.spotlight-content p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.spotlight-cta {
  width: auto;
  font-size: 0.95rem;
  padding: 12px 30px;
}

/* ==========================================================================
   9. WHY US STRIP
   ========================================================================== */
.why-us-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 24px;
}

.why-us-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-us-item {
  text-align: center;
}

.why-us-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.why-us-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.why-us-item p {
  color: var(--text-gray-400);
  font-size: 0.85rem;
}

/* ==========================================================================
   10. REVIEWS SECTION
   ========================================================================== */
.section-reviews {
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto;
}

.reviews-carousel {
  position: relative;
  min-height: 220px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(10px);
  text-align: center;
}

.review-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.review-rating {
  font-size: 1.4rem;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--text-white);
}

.review-author h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.review-author span {
  font-size: 0.75rem;
  color: var(--text-gray-500);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.review-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
}

[data-theme="light"] .review-dots .dot {
  background: rgba(15, 23, 42, 0.2);
}

.review-dots .dot.active {
  background: var(--accent-purple);
  box-shadow: var(--shadow-glow);
  width: 20px;
  border-radius: 50px;
}

/* ==========================================================================
   11. WHATSAPP NEWSLETTER COMMUNITY
   ========================================================================== */
.wa-community-banner {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.wa-community-content {
  max-width: 600px;
  margin: 0 auto;
}

.wa-community-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.wa-community-content p {
  color: var(--text-gray-400);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.community-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-green);
  color: #060608;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-neon-green);
}

.community-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
}

.footer-trust-strip {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 24px;
}

.trust-strip-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-gray-400);
}

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

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
  cursor: pointer;
}

.footer-logo .logo-vape {
  color: var(--text-white);
}

.footer-logo .logo-stop {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-purple);
  margin-left: 2px;
  box-shadow: var(--shadow-glow);
}

.footer-about {
  color: var(--text-gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 63, 94, 0.3);
  background: rgba(244, 63, 94, 0.05);
  color: #f43f5e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.1);
}

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

.footer-links-col h3,
.footer-contact-col h3 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col li {
  font-size: 0.9rem;
  color: var(--text-gray-400);
  cursor: pointer;
}

.footer-links-col li:hover {
  color: var(--text-white);
  transform: translateX(4px);
}

.contact-address,
.contact-hours {
  color: var(--text-gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-whatsapp {
  margin-top: 20px;
}

.wa-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.wa-link-button:hover {
  background: var(--accent-green);
  color: var(--bg-darker);
  box-shadow: var(--shadow-neon-green);
  border-color: transparent;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  background: var(--bg-darker);
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-text {
  color: var(--text-gray-500);
  font-size: 0.8rem;
}

.legal-disclaimer {
  color: var(--text-gray-400);
}

.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-gray-400);
}

[data-theme="light"] .payment-tag {
  background: rgba(15, 23, 42, 0.02);
}

.payment-tag.bank-transfer:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

.payment-tag.easypaisa:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: var(--shadow-neon-green);
}

.payment-tag.jazzcash:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

/* ==========================================================================
   13. SHOP VIEW LAYOUT & SIDEBAR FILTERS
   ========================================================================== */
.shop-banner {
  height: 200px;
  background-image: url('images/hero-devices.png');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 80px; /* navbar offset */
}

.shop-banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 8, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.shop-banner-overlay h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.shop-banner-overlay p {
  color: var(--text-gray-300);
  font-size: 0.95rem;
}

.shop-container {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.mobile-filter-bar {
  display: none; /* Hide desktop */
}

/* Sidebar Filters */
.shop-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 30px 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

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

.sidebar-header h3 {
  font-size: 1.15rem;
}

.sidebar-close-btn {
  display: none; /* hide desktop */
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 16px;
  border-left: 3px solid var(--accent-cyan);
  padding-left: 8px;
}

/* Search input */
.search-input-wrapper input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

[data-theme="light"] .search-input-wrapper input {
  background: rgba(15, 23, 42, 0.02);
}

.search-input-wrapper input:focus {
  border-color: var(--accent-cyan);
}

/* Categories List */
.category-filter-list li {
  font-size: 0.9rem;
  color: var(--text-gray-400);
  padding: 8px 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.category-filter-list li:hover,
.category-filter-list li.active {
  color: var(--accent-cyan);
  padding-left: 4px;
}

/* Checkbox lists */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 5px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-gray-400);
  cursor: pointer;
}

.check-label input {
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.check-label:hover {
  color: var(--text-white);
}

/* Price range slider */
.price-slider-wrapper input {
  width: 100%;
  accent-color: var(--accent-cyan);
  cursor: pointer;
  margin-bottom: 12px;
}

.price-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-gray-400);
}

.current-price-label {
  color: var(--accent-cyan);
  font-weight: 700;
}

.btn-reset-filters {
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.2);
  color: #f43f5e;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  width: 100%;
}

.btn-reset-filters:hover {
  background: #f43f5e;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}

/* Catalog headers */
.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

.results-count {
  font-size: 0.9rem;
  color: var(--text-gray-400);
}

.results-count span {
  color: var(--text-white);
  font-weight: 700;
}

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

.catalog-sort label {
  font-size: 0.85rem;
  color: var(--text-gray-400);
}

.catalog-sort select {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 8px;
  outline: none;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Empty Catalog result */
.no-results-view {
  text-align: center;
  padding: 80px 24px;
  max-width: 400px;
  margin: 0 auto;
}

.no-results-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.4;
}

.no-results-view h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.no-results-view p {
  color: var(--text-gray-400);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-reset-no-res {
  font-size: 0.9rem;
}

/* ==========================================================================
   14. HARDWARE COMPARISON MATRIX (POD SYSTEMS EXCLUSIVE)
   ========================================================================== */
.compare-pods-section {
  background: var(--grad-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 35px 24px;
  margin-bottom: 40px;
}

.compare-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.compare-pods-section h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.compare-intro {
  color: var(--text-gray-400);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.compare-table th {
  background: rgba(255, 255, 255, 0.01);
  padding: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .compare-table th {
  background: rgba(15, 23, 42, 0.01);
}

.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray-300);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-name {
  font-weight: 700;
  color: var(--text-white);
}

.compare-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-cyan);
}

/* ==========================================================================
   15. PRODUCT DETAILS OVERLAY DIALOG MODAL
   ========================================================================== */
.details-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 6, 8, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.details-modal {
  background: radial-gradient(180deg, #181822 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-glow), 0 30px 60px rgba(0, 0, 0, 0.8);
  margin: auto;
}

[data-theme="light"] .details-modal {
  background: radial-gradient(180deg, #f1f5f9 0%, var(--bg-card) 100%);
}

.details-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--text-gray-400);
  line-height: 1;
  z-index: 10;
}

.details-close:hover {
  color: var(--text-white);
}

.details-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* Left Image columns */
.details-image-area {
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  height: 380px;
}

.details-main-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.details-image-radial {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Right Details Columns */
.details-brand {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.details-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.details-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.details-stars {
  font-size: 0.9rem;
  color: #fbbf24;
}

.details-stars span {
  color: var(--text-gray-400);
  margin-left: 4px;
}

.details-stock-alert {
  font-size: 0.75rem;
  color: #f59e0b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.alert-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
  animation: waPulse 1s infinite;
}

.details-price {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 20px;
}

.det-price-lbl {
  font-size: 1rem;
  color: var(--text-gray-400);
}

.det-price-val {
  font-size: 2.2rem;
}

.details-desc {
  color: var(--text-gray-300);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Swatches Groupings */
.details-swatches-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.swatch-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.swatch-label {
  font-size: 0.8rem;
  color: var(--text-gray-400);
  font-weight: 600;
}

.swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-gray-300);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

[data-theme="light"] .swatch-btn {
  background: rgba(15, 23, 42, 0.02);
}

.swatch-btn:hover {
  border-color: var(--text-gray-400);
  color: var(--text-white);
}

.swatch-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: var(--shadow-glow);
}

/* Quantity Selection & Actions */
.details-buy-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

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

.qty-label {
  font-size: 0.85rem;
  color: var(--text-gray-400);
}

.details-qty-selector {
  display: flex;
  align-items: center;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  color: var(--text-gray-300);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.qty-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 12px;
}

.btn-add-cart-detail {
  padding: 12px 24px;
}

.btn-wa-direct-detail {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.btn-wa-direct-detail:hover {
  background: var(--accent-green);
  color: #060608;
  box-shadow: var(--shadow-neon-green);
  border-color: transparent;
}

.out-of-stock-alert-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Accordions Specs */
.details-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

[data-theme="light"] .accordion-item {
  background: rgba(15, 23, 42, 0.01);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 16px;
}

.accordion-panel p {
  padding-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-gray-400);
  line-height: 1.5;
}

.product-details-specs h4 {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.specs-table td {
  padding: 8px;
  border-bottom: 1px solid var(--border-color);
}

.spec-key {
  color: var(--text-gray-400);
  width: 40%;
}

.spec-val {
  color: var(--text-white);
  font-weight: 600;
}

/* Reviews Panel */
.details-reviews-panel {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.details-reviews-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.details-review-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
}

[data-theme="light"] .details-review-item {
  background: rgba(15, 23, 42, 0.01);
}

.review-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.reviewer-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.reviewer-rating {
  color: #fbbf24;
  font-size: 0.8rem;
}

.reviewer-text {
  font-size: 0.85rem;
  color: var(--text-gray-300);
  line-height: 1.4;
}

.no-reviews-placeholder {
  color: var(--text-gray-500);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px 0;
}

/* Review Write Form */
.write-review-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.write-review-form h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-input {
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-cyan);
}

.form-input.form-select {
  width: 120px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  width: 100%;
}

.btn-submit-review {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* Mobile sticky bottom buy bar */
.mobile-sticky-order-bar {
  display: none; /* hidden desktop */
}

/* ==========================================================================
   16. SHOPPING CART DRAWER MODAL
   ========================================================================== */
.cart-drawer-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 6, 8, 0);
  backdrop-filter: blur(0);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease, visibility 0.4s;
}

.cart-drawer-wrapper.open {
  opacity: 1;
  visibility: visible;
  background: rgba(6, 6, 8, 0.7);
  backdrop-filter: blur(10px);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1510;
}

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

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

.cart-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-gray-400);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.cart-close-btn:hover {
  color: var(--text-white);
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* Empty State */
.empty-cart-view {
  margin: auto;
  text-align: center;
  max-width: 300px;
}

.empty-cart-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
}

.empty-cart-view h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.empty-cart-view p {
  color: var(--text-gray-400);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-shop-now {
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  display: flex;
  gap: 16px;
  position: relative;
  transition: border-color var(--transition-fast);
}

[data-theme="light"] .cart-item {
  background: rgba(0, 0, 0, 0.015);
}

.cart-item:hover {
  border-color: rgba(6, 182, 212, 0.2);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 4px;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
}

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

.cart-item-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-white);
  padding-right: 15px;
}

.cart-item-specs {
  color: var(--accent-purple);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.cart-item-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.qty-adjust {
  width: 28px;
  height: 28px;
  color: var(--text-gray-300);
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qty-adjust:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.qty-adjust:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cart-qty-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 10px;
  color: var(--text-white);
}

.cart-remove-item {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-gray-500);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

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

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-darker);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.summary-label {
  color: var(--text-gray-400);
  font-size: 0.9rem;
}

.summary-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.cart-disclaimer {
  color: var(--text-gray-400);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.btn-whatsapp-checkout {
  font-size: 0.95rem;
  padding: 14px;
  width: 100%;
}

/* ==========================================================================
   17. FLOATING WHATSAPP CHAT CONSOLE DRAWER WIDGET
   ========================================================================== */
#whatsapp-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-floating-btn {
  background: var(--accent-green);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
  position: relative;
  transition: transform var(--transition-fast);
}

.wa-floating-btn:hover {
  transform: scale(1.05);
}

.wa-floating-svg {
  width: 32px;
  height: 32px;
}

.wa-badge-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f43f5e;
  border: 2px solid #ffffff;
  animation: logoPulse 1.5s infinite;
}

/* Speech Prompt */
.wa-speech-prompt {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 200px;
  animation: speechBounce 1s ease-out;
}

@keyframes speechBounce {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.speech-close {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 16px;
  color: var(--text-gray-400);
}

.speech-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
  padding-right: 8px;
}

/* Chat drawer popup window */
.wa-chat-drawer {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  z-index: 1003;
  animation: fadeIn 0.3s ease;
}

.wa-drawer-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wa-drawer-header {
  background: #10b981; /* WhatsApp green */
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-avatar-icon {
  font-size: 1.4rem;
}

.wa-online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid #10b981;
}

.wa-header-info h4 {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
}

.wa-header-info span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

.wa-drawer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ffffff;
  font-size: 24px;
}

.wa-drawer-body {
  height: 250px;
  overflow-y: auto;
  padding: 20px;
  background-color: var(--bg-darker);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-chat-bubble {
  max-width: 80%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  position: relative;
}

.wa-chat-bubble.system {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-gray-100);
  align-self: flex-start;
  border-top-left-radius: 0;
}

.wa-message-time {
  display: block;
  font-size: 0.65rem;
  color: var(--text-gray-500);
  margin-top: 4px;
  text-align: right;
}

.wa-drawer-footer {
  padding: 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}

.wa-footer-input {
  flex-grow: 1;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 10px 16px;
  color: var(--text-white);
  font-size: 0.85rem;
  outline: none;
}

.wa-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.wa-send-btn svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.wa-send-btn:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   18. ABOUT PAGE MOCKUP MAP ROAD VECTOR GRAPHIC
   ========================================================================== */
.about-story-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-gray-300);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.story-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 350px;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-glow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(0deg, rgba(6,6,8,0.8) 0%, rgba(6,6,8,0) 60%);
}

.about-pillars {
  margin-bottom: 80px;
  text-align: center;
}

.pillars-main-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 30px 20px;
  text-align: center;
}

.pillar-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pillar-card p {
  color: var(--text-gray-400);
  font-size: 0.85rem;
  line-height: 1.5;
}

.about-location-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.location-info h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.location-detail,
.location-timing {
  font-size: 0.95rem;
  color: var(--text-gray-300);
  margin-bottom: 12px;
}

.location-notes {
  color: var(--text-gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.wa-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.wa-location-btn:hover {
  background: var(--accent-green);
  color: var(--bg-darker);
  box-shadow: var(--shadow-neon-green);
  border-color: transparent;
}

/* Cyberpunk Mock Map graphic */
.location-map-placeholder {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 320px;
}

.mock-map {
  background: var(--bg-darker);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 20px 20px;
}

[data-theme="light"] .mock-map {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

.map-road-iqbal {
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 100%;
  height: 35px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: 0.65rem;
  color: var(--text-gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-road-market {
  position: absolute;
  top: 0;
  left: 45%;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-gray-500);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

[data-theme="light"] .map-road-iqbal,
[data-theme="light"] .map-road-market {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.04);
  color: var(--text-gray-400);
}

.map-marker {
  position: absolute;
  bottom: 25%;
  left: 45%;
  transform: translate(-10px, -40px);
  z-index: 5;
  text-align: center;
}

.marker-pin {
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent-purple);
  transform: rotate(-45deg);
  margin: 0 auto 6px;
  box-shadow: var(--shadow-glow);
}

.marker-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-white);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.map-marker-glow {
  position: absolute;
  bottom: 25%;
  left: 45%;
  width: 60px;
  height: 60px;
  transform: translate(-15px, -30px);
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 60%);
  pointer-events: none;
  animation: logoPulse 2s infinite;
}

/* ==========================================================================
   19. FAQ PAGE ACCORDIONS LIST
   ========================================================================== */
.faq-banner {
  height: 200px;
  background-image: url('images/hero-flavours.png');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 80px;
}

.faq-banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 8, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-banner-overlay h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.faq-banner-overlay p {
  color: var(--text-gray-300);
  font-size: 0.95rem;
}

.faq-container {
  max-width: 750px;
  margin: 50px auto;
  padding: 0 24px;
}

.faq-search-wrapper {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px 20px;
  box-shadow: var(--shadow-glow);
}

.faq-search-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 0.95rem;
  height: 40px;
}

.clear-search-btn {
  font-size: 24px;
  color: var(--text-gray-400);
  cursor: pointer;
  line-height: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

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

.faq-item:hover {
  border-color: rgba(6, 182, 212, 0.2);
}

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

.faq-icon-indicator {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  transition: transform var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-gray-400);
  line-height: 1.6;
}

.no-faq-results {
  text-align: center;
  padding: 40px;
  color: var(--text-gray-500);
  font-size: 0.95rem;
}

.faq-support-strip {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
}

.faq-support-strip h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.faq-support-strip p {
  color: var(--text-gray-400);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-faq-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.btn-faq-wa:hover {
  background: var(--accent-green);
  color: var(--bg-darker);
  box-shadow: var(--shadow-neon-green);
  border-color: transparent;
}

/* ==========================================================================
   20. SHIPPING TERMS & WARRANTY
   ========================================================================== */
.returns-banner {
  height: 200px;
  background-image: url('images/hero-delivery.png');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 80px;
}

.returns-banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 8, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.returns-banner-overlay h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.returns-banner-overlay p {
  color: var(--text-gray-300);
  font-size: 0.95rem;
}

.returns-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-block {
  position: relative;
  border-left: 2px solid var(--accent-purple);
  padding-left: 24px;
}

.policy-number {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
}

[data-theme="light"] .policy-number {
  color: rgba(15, 23, 42, 0.03);
}

.policy-block h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.policy-block p {
  color: var(--text-gray-300);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.policy-block ul,
.policy-block ol {
  padding-left: 20px;
  color: var(--text-gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.policy-block li {
  margin-bottom: 8px;
}

.wa-returns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.wa-returns-btn:hover {
  background: var(--accent-green);
  color: var(--bg-darker);
  box-shadow: var(--shadow-neon-green);
  border-color: transparent;
}

/* ==========================================================================
   21. VAPING GUIDES BLOG
   ========================================================================== */
.guides-banner {
  height: 200px;
  background-image: url('images/hero-devices.png');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 80px;
}

.guides-banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 8, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.guides-banner-overlay h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.guides-banner-overlay p {
  color: var(--text-gray-300);
  font-size: 0.95rem;
}

.guides-container {
  max-width: var(--max-width);
  margin: 50px auto;
  padding: 0 24px;
}

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

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-normal);
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: var(--shadow-glow);
}

.guide-img-container {
  position: relative;
  height: 200px;
  width: 100%;
}

.guide-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--grad-primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: var(--shadow-glow);
}

.guide-card-info {
  padding: 24px;
}

.guide-card-date {
  font-size: 0.75rem;
  color: var(--text-gray-500);
  display: block;
  margin-bottom: 8px;
}

.guide-card-info h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.guide-card-info p {
  color: var(--text-gray-400);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.guide-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Single Guide Detail view */
.single-guide-header {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 80px;
}

.single-guide-header-overlay {
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 8, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.single-guide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.single-guide-tag {
  background: var(--grad-primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
}

.single-guide-date {
  font-size: 0.8rem;
  color: var(--text-gray-400);
}

.single-guide-header-overlay h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 800px;
}

.single-guide-author {
  font-size: 0.85rem;
  color: var(--text-gray-400);
}

.single-guide-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 24px;
}

.btn-back-guides {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  color: var(--text-gray-300);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.btn-back-guides:hover {
  background: var(--text-white);
  color: var(--bg-darker);
}

.single-guide-article {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
}

.single-guide-article p {
  color: var(--text-gray-300);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.single-guide-article h3 {
  font-size: 1.35rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text-white);
  border-left: 4px solid var(--accent-cyan);
  padding-left: 12px;
}

.single-guide-article ul {
  padding-left: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-guide-article li {
  font-size: 0.95rem;
  color: var(--text-gray-400);
  line-height: 1.6;
}

/* ==========================================================================
   22. RESPONSIVE MEDIA QUERIES (MOBILE FIRST COMPATIBILITY)
   ========================================================================== */
@media (min-width: 1024px) {
  .navbar-search-wrapper {
    display: block;
  }
}

@media (min-width: 992px) {
  .navbar-wa-cta {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

@media (max-width: 991px) {
  /* Navigation mobile side-sliding drawer */
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-normal);
    z-index: 1000;
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links li {
    font-size: 1.2rem;
  }

  .nav-shop-trigger .arrow-down {
    display: none;
  }

  /* Disable hover mega-menu on mobile, let it show list details */
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    transform: none;
    display: none;
  }

  .shop-nav-item:hover .mega-menu,
  .shop-nav-item.active .mega-menu {
    display: block;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 10px;
  }

  .mega-menu-column {
    padding: 12px 6px;
  }

  .mega-menu-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .mega-menu-column h3 {
    font-size: 0.8rem;
  }

  .mega-menu-column p {
    display: none;
  }

  /* Hamburger rotations */
  .hamburger.toggle .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
  .hamburger.toggle .bar2 { opacity: 0; }
  .hamburger.toggle .bar3 { transform: rotate(45deg) translate(-5px, -6px); }

  /* Grids adjustments */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid,
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Sidebar filters popup overlay on mobile */
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    z-index: 1100;
    transition: left var(--transition-normal);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.6);
  }

  .shop-sidebar.active {
    left: 0;
  }

  .sidebar-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
  }

  .sidebar-close-btn {
    display: block;
    font-size: 28px;
    color: var(--text-gray-400);
  }

  .filter-scroll-area {
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding-bottom: 40px;
  }

  .mobile-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .mobile-filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 8px;
  }

  .mobile-results-count {
    font-size: 0.85rem;
    color: var(--text-gray-400);
  }

  .about-story-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

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

  .location-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .hero-carousel {
    height: 70vh;
    min-height: 480px;
  }
  
  .hero-tag {
    margin-bottom: 12px;
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 6, 8, 0.75) 0%,
      rgba(6, 6, 8, 0.98) 85%
    );
    align-items: flex-end;
    padding-bottom: 60px;
  }
  
  .hero-slide-content {
    text-align: center;
  }
  
  .hero-title {
    margin: 0 auto 12px;
  }
  
  .hero-subtitle {
    margin: 0 auto 20px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .products-grid,
  .shop-products-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-warning-badge {
    justify-content: center;
  }

  .trust-strip-container {
    justify-content: center;
    gap: 10px 20px;
  }

  .why-us-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Details Modal on mobile */
  .details-modal {
    padding: 24px;
    margin: 60px auto 30px; /* space for scrolling */
  }

  .details-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .details-image-area {
    height: 250px;
  }

  .details-title {
    font-size: 1.4rem;
  }

  /* Mobile Sticky Bottom buy bar overrides spacing */
  .details-buy-section {
    padding-bottom: 60px; /* space for bar */
  }

  .mobile-sticky-order-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.4);
  }

  .sticky-price-col {
    display: flex;
    flex-direction: column;
  }

  .st-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-cyan);
  }

  .st-flavor {
    font-size: 0.7rem;
    color: var(--text-gray-400);
  }

  .btn-sticky-cart {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .single-guide-article {
    padding: 20px;
  }

  .single-guide-article p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .why-us-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom-container {
    flex-direction: column;
  }
}

@media (max-width: 375px) {
  .hero-carousel {
    height: 65vh;
    min-height: 410px;
  }
  
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  
  .hero-subtitle {
    font-size: 0.75rem;
    margin-bottom: 16px;
    line-height: 1.4;
  }
}

/* ==========================================================================
   23. AGE GATE VERIFICATION BACKDROP (UNUSED)
   ========================================================================== */
.age-gate-overlay {
  display: none !important; /* Force hidden per final instruction */
}
