/* 
  Vape Shop Bengaluru CSS Design System
  Theme: Premium Luxury Minimal Dark
  Accent: Neon Purple (#a855f7)
*/

:root {
  /* Colors - WCAG AAA High Contrast Optimized */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f5f9;
  --text-primary: #18181b;
  --text-secondary: #334155;
  --text-muted: #475569;
  --brand-espresso: #41270b;
  --accent: #f4eae1;
  --accent-hover: #e8d9cc;
  --accent-glow: rgba(244, 234, 225, 0.8);
  --border-color: #e4e4e7;
  --border-focus: #d4d4d8;
  --error: #ef4444;
  --warning: #f59e0b;
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Performance & Paint Optimization - High Core Web Vitals Score */
.trust-badges-section, .categories-section, .featured-products-section, .bengaluru-delivery-section, .local-seo-box, .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

svg {
  display: inline-block;
  vertical-align: middle;
}

ul {
  list-style: none;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* /* Announcement Bar - Espresso Theme (#41270b) */
.announcement-bar {
  background-color: #41270b !important;
  border-bottom: 1px solid #57350f !important;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #f4eae1 !important;
  z-index: 100;
  position: relative;
}

.announcement-bar-secondary {
  background-color: #2e1b07 !important;
  color: #f4eae1 !important;
  padding: 7px 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  z-index: 100;
  position: relative;
  border-bottom: 1px solid #41270b !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Products Section */
.products-section, .featured-products-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.products-section .section-header, .featured-products-section .section-header {
  text-align: center;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.filter-header-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 40px auto;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  text-align: center;
}

.filter-search-wrap {
  width: 320px;
  max-width: 100%;
}

.filter-search-wrap input {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  font-size: 0.85rem;
  text-align: center;
}

.filter-search-wrap input:focus {
  border-color: var(--accent);
}

.filter-select-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bar-badge {
  background-color: #57350f !important;
  color: #ffffff !important;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #6e4313 !important;
  font-weight: 600;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .announcement-bar {
    text-align: center !important;
    padding: 8px 12px !important;
  }
  .bar-content {
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .bar-content span {
    text-align: center !important;
  }
}

/* Site Header */
/* Site Header */
.site-header {
  height: 70px;
  background: #09080e;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 20px;
}

/* Logo styling */
.logo-link {
  display: flex;
  align-items: center;
  line-height: 1.1;
  flex-shrink: 0;
}

.site-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.8);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #e6d7c8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.site-logo {
  width: 170px;
  height: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo-subtext {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--accent);
}

/* Navigation Menu */
.desktop-nav {
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 18px;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 24px 0;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #a855f7;
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-item {
  position: relative;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 0;
  width: 180px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.dropdown-item:hover .dropdown-menu,
.dropdown-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.dropdown-menu li a:hover {
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
}

.chevron {
  font-size: 0.6rem;
  margin-left: 4px;
  color: var(--text-muted);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-whatsapp-cta {
  background-color: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.header-whatsapp-cta:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 12px var(--accent);
}

/* Search Box */
.search-container {
  position: relative;
}

.header-search-form {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 0 10px;
  width: 170px; /* Reduced width to give navigation items breathing room */
  height: 38px;
  transition: var(--transition-smooth);
}

.header-search-form:focus-within {
  width: 220px;
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.header-search-form input[type="search"] {
  width: 100%;
  background: none;
  border: none;
  font-size: 0.85rem;
  padding-right: 5px;
}

.search-btn {
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

/* Search Suggestions panel */
.search-suggestions {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  min-width: 320px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
  z-index: 100;
  padding: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.suggestion-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 4px;
}

.suggestion-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--accent);
}

.suggestion-item .item-details {
  display: flex;
  flex-direction: column;
}

.suggestion-item .item-price {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* Mobile Hamburguer */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: #ffffff !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

/* Mobile Sidebar Menu (Fixed Over Top Header) */
.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background-color: #41270b !important;
  color: #ffffff !important;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid #57350f;
}

.mobile-nav-sidebar.open {
  right: 0;
}

.sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #57350f;
  background-color: #41270b;
}

.sidebar-header .logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.close-sidebar-btn {
  font-size: 1.8rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.close-sidebar-btn:hover {
  color: #f4eae1;
}

.sidebar-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: #41270b;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f4eae1 !important;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #57350f;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mobile-link:hover,
.mobile-link.active {
  color: #ffffff !important;
  border-color: #f4eae1 !important;
  font-weight: 700;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid #57350f;
  background-color: #41270b;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: #41270b !important;
  color: #ffffff !important;
  border: 1px solid #2e1b07 !important;
}

.btn-primary:hover {
  background-color: #5b370f !important;
  border-color: #2e1b07 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(65, 39, 11, 0.4) !important;
}

.btn-secondary {
  background-color: #ffffff !important;
  color: #41270b !important;
  border: 1px solid #41270b !important;
}

.btn-secondary:hover {
  border-color: #41270b !important;
  background-color: #41270b !important;
  color: #ffffff !important;
}

.btn-whatsapp {
  background-color: #25D366 !important;
  color: #ffffff !important;
  border: 1px solid #1ebe5d !important;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4) !important;
}

.full-width {
  width: 100%;
  display: flex;
}

/* Hero Section */
.hero-section {
  padding: 60px 0;
  background: radial-gradient(circle at 80% 50%, var(--accent-glow) 0%, transparent 60%);
  border-bottom: 1px solid var(--border-color);
}

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

.badge-premium {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}

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

.hero-subhead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-trust-metrics {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-visual-col {
  display: flex;
  justify-content: center;
}

.hero-card-display {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-banner-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-gradient-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.featured-device-mockup {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-glow {
  position: absolute;
  top: 40px;
  width: 40px;
  height: 130px;
  background: var(--accent);
  filter: blur(20px);
  opacity: 0.15;
}

.device-text {
  margin-top: 15px;
}

.device-brand {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.device-flavor {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* Trust Badges Section - Glassmorphism Style */
.trust-badges-section {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(230, 215, 200, 0.5);
  border-bottom: 1px solid rgba(230, 215, 200, 0.5);
}

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

.badge-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e6d7c8;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.badge-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
  border-color: #d8c7b6;
}

.badge-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #18181b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-card h4::before {
  content: '✦';
  color: #18181b;
  font-size: 0.8rem;
}

.badge-card p {
  font-size: 0.85rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.5;
}

/* Featured Categories Circle Navigation */
.categories-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-h2 {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.circle-visual {
  width: 90px;
  height: 90px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.category-circle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  padding: 10px;
}

.category-circle-card:hover .circle-visual {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-4px);
}

.category-circle-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.category-circle-card:hover span {
  color: var(--text-primary);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  border-color: #d8c7b6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf7f4;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
  height: 190px;
  overflow: hidden;
}

.badge-stock {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 5;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.in-stock-badge {
  background-color: #10b981;
  color: #ffffff;
}

.out-stock-badge {
  background-color: #ef4444;
  color: #ffffff;
}

.card-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-product-img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.card-brand {
  font-size: 0.8rem;
  color: #41270b;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
  min-height: 2.6em;
}

.card-title a {
  color: #18181b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: #41270b;
}

/* Price Block (Main Price, Original Price Strikethrough, Discount Badge) */
.card-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  margin-top: auto;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.card-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #18181b;
  letter-spacing: -0.02em;
}

.card-original-price {
  font-size: 0.9rem;
  color: #71717a;
  text-decoration: line-through;
  font-weight: 600;
}

.card-discount-badge {
  display: inline-block;
  background-color: #fef08a;
  color: #854d0e;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  align-self: flex-start;
  letter-spacing: 0.03em;
  border: 1px solid #fef08a;
}

/* Desktop-Only Center Alignment for Product Cards */
@media (min-width: 769px) {
  .product-card {
    text-align: center;
    align-items: center;
  }

  .card-body {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .card-brand {
    text-align: center;
    width: 100%;
  }

  .card-title {
    text-align: center;
    width: 100%;
  }

  .card-price-block {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .price-main-row {
    justify-content: center;
    width: 100%;
  }

  .card-discount-badge {
    align-self: center;
    margin: 0 auto;
  }

  .card-action-row {
    width: 100%;
    justify-content: center;
  }
}

/* Action Row (WhatsApp Green ORDER Button + Quick View Eye Button) */
.card-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-card-action {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  height: 44px;
}

.btn-card-action.btn-whatsapp {
  flex: 1;
  background-color: #25D366 !important;
  color: #ffffff !important;
  border: 1px solid #1ebe5d !important;
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-card-action.btn-whatsapp:hover {
  flex-grow: 0;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-quickview:hover {
  background-color: var(--border-focus);
}

.shop-all-footer-cta {
  text-align: center;
  margin-top: 50px;
}

/* Local SEO Content Section */
.seo-longform-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.seo-content-box {
  max-width: 900px;
  margin: 0 auto;
}

.seo-h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.seo-h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px 0;
}

.seo-h4 {
  font-size: 1.15rem;
  margin: 20px 0 10px 0;
}

.seo-p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: justify;
}

.lead-p {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.seo-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 40px 0;
}

/* FAQ Accordion styling */
.faq-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

.faq-trigger {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.faq-card.open .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Blog Feed grid section */
.blog-feed-section {
  padding: 80px 0;
}

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

.blog-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Single Product Detail Layout */
.product-page-wrapper {
  padding: 20px 0;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.breadcrumbs a:hover {
  color: var(--text-primary);
}

.breadcrumbs .sep {
  color: var(--text-muted);
}

.breadcrumbs .current {
  color: var(--text-secondary);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.product-image-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.product-detail-img {
  max-height: 380px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.luxury-fallback-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.luxury-badge-brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.luxury-badge-flavor {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.luxury-vector {
  margin: 20px 0;
}

.trust-micro-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.micro-badge {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

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

.info-brand-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.info-product-name {
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.info-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.info-stock-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

.info-short-description {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1rem;
}

.info-selectors-wrap {
  margin-bottom: 30px;
}

.selector-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.flavor-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flavor-chip {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 550;
  transition: var(--transition-smooth);
}

.flavor-chip.active, .flavor-chip:hover {
  border-color: var(--accent);
  color: #000;
  background-color: var(--accent);
}

.info-checkout-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
}

.checkout-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

/* Specs and tabs section */
.product-specs-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.specs-grid-container {
  max-width: 800px;
  margin: 0 auto;
}

.specs-section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.features-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.features-list li::before {
  content: '✔';
  color: var(--accent);
  position: absolute;
  left: 0;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.specs-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

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

.product-faq-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.faq-container-box {
  max-width: 800px;
  margin: 0 auto;
}

.related-products-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

/* Category Archive Page grid */
.category-page-wrapper {
  padding: 20px 0;
}

.category-intro-section {
  margin-bottom: 40px;
}

.category-header-wrap {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.category-h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.category-seo-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.category-seo-description p {
  margin-bottom: 15px;
}

.category-main-section {
  margin-bottom: 60px;
}

.category-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

.filter-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

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

.clear-filters-btn {
  font-size: 0.75rem;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
}

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

.filter-group-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.custom-checkbox input {
  cursor: pointer;
}

.price-slider-wrap {
  padding: 0 5px;
}

.price-slider-wrap input {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

.price-val-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 5px;
}

.grid-content-area {
  display: flex;
  flex-direction: column;
}

.grid-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

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

.grid-sort-select {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.85rem;
}

.category-faq-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

/* Single Blog Page details */
.blog-post-header {
  padding: 60px 0 40px 0;
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(circle at top center, var(--accent-glow) 0%, transparent 60%);
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-cat-badge {
  display: inline-block;
  background-color: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.blog-meta-row {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  justify-content: center;
}

.blog-main-grid {
  padding: 60px 0;
}

.blog-layout-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.blog-toc-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.toc-sticky-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
}

.toc-title {
  font-size: 0.95rem;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-list a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: block;
}

.toc-list a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.blog-article-content {
  max-width: 750px;
}

.article-text-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.article-text-body h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 40px 0 15px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.article-text-body h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 30px 0 12px 0;
}

.article-text-body h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 25px 0 10px 0;
}

.article-text-body p {
  margin-bottom: 20px;
}

.article-text-body ul, .article-text-body ol {
  margin: 0 0 20px 20px;
}

.article-text-body li {
  margin-bottom: 8px;
}

.blog-related-products {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

/* Site Footer */
.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 20px 0;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-col .logo-text {
  font-size: 1.6rem;
}

.brand-pitch {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 15px 0 20px 0;
  line-height: 1.5;
}

.store-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.maps-placeholder {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.map-inner {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.map-inner svg {
  color: var(--accent);
  margin-bottom: 5px;
}

.map-inner span {
  display: block;
  line-height: 1.3;
}

.footer-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-list a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-locations {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  margin-bottom: 30px;
}

.locations-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--text-primary);
}

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

.loc-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.loc-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.warning-text {
  background-color: rgba(245, 158, 11, 0.05);
  border: 1px solid var(--warning);
  color: var(--text-secondary);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  line-height: 1.4;
}

.copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-badges {
  display: flex;
  gap: 8px;
}

.payment-badges .badge {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* Quick View Drawer */
.quickview-drawer {
  position: fixed;
  top: 0;
  right: -550px;
  width: 550px;
  height: 100%;
  background-color: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

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

.close-drawer {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.close-drawer:hover {
  color: var(--text-primary);
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 190;
  transition: var(--transition-smooth);
}

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

/* Sticky Mobile Bottom Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #121212f5;
  border-top: 1px solid var(--border-color);
  z-index: 80;
  justify-content: space-around;
  align-items: center;
  transform: translateZ(0);
}

.sticky-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  flex-grow: 1;
  padding: 8px 0;
}

.sticky-action-item svg {
  margin-bottom: 4px;
  color: var(--text-muted);
}

.sticky-action-item:hover, .sticky-action-item.active {
  color: var(--text-primary);
}

.whatsapp-accent {
  color: #25d366 !important;
}

.whatsapp-circle {
  background-color: #25d366;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -24px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  border: 4px solid var(--bg-primary);
}

.whatsapp-circle svg {
  color: #000 !important;
  margin-bottom: 0 !important;
}

/* Static general info pages */
.info-page-wrapper {
  padding: 30px 0;
}

.info-content-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.info-page-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.info-h1 {
  font-size: 2.2rem;
}

.info-body-content {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-body-content p {
  margin-bottom: 20px;
}

.info-body-content h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 35px;
  margin-bottom: 15px;
}

.info-body-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
}

.info-body-content li {
  margin-bottom: 8px;
}

/* HTML Sitemap Section */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.sitemap-col {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.sitemap-col h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  color: var(--accent);
}

.sitemap-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sitemap-col a:hover {
  color: var(--text-primary);
}

.mobile-filter-toggle-btn {
  display: none;
}

/* Responsive Media Queries */

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

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }
  
  .desktop-nav, .desktop-only {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .hero-h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .category-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-sidebar {
    position: relative;
    top: 0;
  }
  
  .blog-layout-container {
    grid-template-columns: 1fr;
  }
  
  .blog-toc-sidebar {
    display: none;
  }
  
  .mobile-sticky-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 60px; /* Spacer for bottom sticky navigation */
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  
  .quickview-drawer {
    width: 100%;
    right: -100%;
  }

  .site-header .search-container {
    display: none; /* Hide header search on mobile to prevent overlaps */
  }

  /* Mobile Filter Toggle Layout */
  .mobile-filter-toggle-btn {
    display: flex;
    width: 100%;
    padding: 12px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
  }

  .mobile-filter-toggle-btn:hover {
    border-color: var(--accent);
  }

  .filter-sidebar .sidebar-box {
    display: none; /* Collapsed by default on mobile devices */
  }

  .filter-sidebar.open .sidebar-box {
    display: block; /* Expanded when toggle class is applied */
    margin-bottom: 20px;
  }
  .mobile-filter-toggle-btn .btn-text {
    font-size: 0.85rem;
  }
}

/* Mobile Responsive Product Grid & Card Alignment Fixes */
@media (max-width: 768px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  .container, .category-page-wrapper, .shop-page-wrapper, .grid-content-area {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .filter-controls-bar {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .filter-search-wrap, .filter-select-wrap {
    width: 100%;
    box-sizing: border-box;
  }

  .filter-select-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .filter-select-wrap select {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.8rem;
    padding: 8px 10px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .product-card {
    padding: 10px 8px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(65, 39, 11, 0.04);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .card-top {
    height: 140px;
    padding: 6px;
    margin-bottom: 8px;
    border-radius: 10px;
  }

  .card-product-img {
    max-height: 125px;
  }

  .badge-stock {
    top: 6px;
    left: 6px;
    font-size: 0.58rem;
    padding: 2px 6px;
    border-radius: 4px;
    max-width: calc(100% - 12px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card-brand {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }

  .card-title {
    font-size: 0.8rem;
    line-height: 1.25;
    min-height: 2.5em;
    margin-bottom: 6px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-price-block {
    margin-bottom: 8px;
    gap: 2px;
  }

  .card-price {
    font-size: 1.1rem;
  }

  .card-original-price {
    font-size: 0.75rem;
  }

  .card-discount-badge {
    font-size: 0.62rem;
    padding: 2px 5px;
    border-radius: 4px;
  }

  .card-action-row {
    gap: 4px;
    width: 100%;
  }

  .btn-card-action {
    height: 38px;
    font-size: 0.75rem;
    border-radius: 8px;
    padding: 4px 6px;
  }

  .btn-card-action.btn-whatsapp {
    border-radius: 8px !important;
    gap: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .btn-card-action.btn-whatsapp svg {
    width: 13px;
    height: 13px;
  }

  .btn-quickview {
    width: 34px !important;
    min-width: 34px !important;
    height: 38px !important;
    border-radius: 8px !important;
    font-size: 0.9rem;
    padding: 0 !important;
  }
}

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

  .product-card {
    padding: 8px;
    border-radius: 12px;
  }

  .card-top {
    height: 135px;
    padding: 6px;
  }

  .card-product-img {
    max-height: 120px;
  }

  .card-title {
    font-size: 0.78rem;
    line-height: 1.22;
    min-height: 2.4em;
  }

  .card-price {
    font-size: 1.05rem;
  }

  .card-original-price {
    font-size: 0.72rem;
  }

  .btn-card-action.btn-whatsapp {
    font-size: 0.72rem;
    height: 36px;
    padding: 4px 6px;
  }

  .btn-quickview {
    width: 34px !important;
    height: 36px !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 350px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    padding: 12px;
  }

  .card-top {
    height: 160px;
  }

  .card-product-img {
    max-height: 145px;
  }

  .card-title {
    font-size: 0.88rem;
  }

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

/* Floating Contact Widget */
.floating-contact-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  transform: translateZ(0);
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.floating-btn svg {
  display: block;
}

.btn-call {
  background-color: #3b82f6;
}

.btn-call:hover {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn-whatsapp:hover {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .floating-contact-wrap {
    bottom: 90px;
    right: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }
}

/* Bengaluru Delivery Hubs Grid */
.bengaluru-delivery-section {
  padding: 70px 0;
  background: #f8f9fa;
  border-bottom: 1px solid var(--border-color);
}

.delivery-hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 35px;
}

.hub-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e6d7c8;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-color: #d8c7b6;
}

.hub-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hub-title::before {
  content: '📍';
  font-size: 0.95rem;
}

.hub-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hub-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Header Styles - Modern Dark Espresso Navbar (#41270b) */
.site-header {
  height: 70px;
  background: #41270b !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #57350f !important;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid #57350f;
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-logo-img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  margin: 0;
  padding: 0;
}

.desktop-nav .nav-link {
  color: #f4eae1 !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 24px 0;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.desktop-nav .nav-link:hover {
  color: #ffffff !important;
}

.desktop-nav .nav-link.active {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.desktop-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f4eae1 !important;
  border-radius: 2px;
}

.desktop-nav .chevron {
  font-size: 0.65rem;
  margin-left: 4px;
  color: #d8c7b6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Visible Search Box Input */
.search-container {
  position: relative;
}

.header-search-form {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  background-color: #57350f !important;
  border: 1px solid #6e4313 !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 10px 0 12px !important;
  width: 190px !important;
  height: 36px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-form:focus-within {
  border-color: #f4eae1 !important;
  box-shadow: 0 0 10px rgba(244, 234, 225, 0.4) !important;
}

.header-search-form input[type="search"] {
  width: 100% !important;
  background: none !important;
  border: none !important;
  font-size: 0.82rem !important;
  color: #ffffff !important;
  outline: none !important;
  padding: 0 !important;
}

.header-search-form input[type="search"]::placeholder {
  color: #d8c7b6 !important;
}

.search-btn {
  color: #d8c7b6 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  background: none;
  padding: 0;
}

.search-btn:hover {
  color: #ffffff !important;
}

/* WhatsApp Order Button */
.header-whatsapp-cta {
  background-color: #25D366 !important;
  color: #ffffff !important;
  border: 1px solid #1ebe5d !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3) !important;
}

.header-whatsapp-cta:hover {
  background-color: #1ebe5d !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5) !important;
  transform: translateY(-1px);
}/* Redesigned Ultra-Modern Hero Section with Ambient Background Mesh Orbs */
.hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 40px 0;
  border-bottom: none;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(244, 234, 225, 0.75) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -90px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(65, 39, 11, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  animation: orbFloatReverse 16s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, 25px) scale(1.1); }
  100% { transform: translate(-20px, 45px) scale(0.95); }
}

@keyframes orbFloatReverse {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -30px) scale(1.15); }
  100% { transform: translate(25px, -15px) scale(0.9); }
}

.hero-banner-container {
  background-image: url('/assets/vape-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 36px;
  padding: 80px 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(230, 215, 200, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-banner-container:hover {
  box-shadow: 0 28px 60px rgba(65, 39, 11, 0.12), inset 0 0 0 1px #d8c7b6;
}

/* Modern Transparent Overlay for Full Image Visibility */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(244, 234, 225, 0.35) 50%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 960px;
}

.badge-premium-pill {
  display: inline-block;
  background-color: #ffffff;
  color: #18181b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid #41270b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.badge-premium-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(65, 39, 11, 0.12);
}

.hero-h1 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #18181b;
  margin-bottom: 18px;
  text-align: center;
  max-width: 900px;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(255, 255, 255, 0.9);
  background: none;
  -webkit-text-fill-color: initial;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-subhead {
  font-size: 1.15rem;
  color: #18181b;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 680px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 45px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-hero-primary {
  background-color: #41270b !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 38px;
  border-radius: 14px;
  border: 1px solid #2e1b07 !important;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(65, 39, 11, 0.25);
  transition: all 0.25s ease;
}

.btn-hero-primary:hover {
  background-color: #5b370f !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(65, 39, 11, 0.4);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #41270b !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 38px;
  border-radius: 14px;
  border: 1px solid #41270b !important;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background-color: #41270b !important;
  color: #ffffff !important;
  border-color: #41270b !important;
  transform: translateY(-2px);
}

/* Floating badges bar overlay */
.hero-floating-badge-bar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e6d7c8;
  border-radius: 20px;
  padding: 18px 32px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  gap: 36px;
  width: 100%;
  max-width: 900px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}

.floating-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.badge-icon-wrap {
  width: 40px;
  height: 40px;
  background-color: #41270b;
  border: 1px solid #2e1b07;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.floating-badge-item:hover .badge-icon-wrap {
  transform: scale(1.08);
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #18181b;
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.75rem;
  color: #71717a;
  line-height: 1.2;
  margin-top: 2px;
}

.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-vape-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(24, 24, 27, 0.18));
  animation: floatImage 6s ease-in-out infinite;
}

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

/* Category Circular Navigation Styles */
.categories-section {
  background-color: #ffffff;
  padding: 60px 0;
  border-bottom: none;
}

.categories-section .section-h2 {
  color: #18181b;
  font-weight: 800;
  font-size: 2.4rem;
}

.categories-section .section-p {
  color: #71717a;
}

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

.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.circle-visual {
  width: 120px;
  height: 120px;
  background-color: #fbfbfb;
  border: 1px solid #e4e4e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.category-circle-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-circle-card:hover .circle-visual {
  border-color: #18181b;
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

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

.category-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.category-count {
  font-size: 0.8rem;
  color: #71717a;
  font-weight: 500;
}

.category-circle-card:hover .category-name {
  color: #000000;
}

/* Responsiveness for Hero and Header */
@media (max-width: 991px) {
  .hero-banner-container {
    padding: 50px 30px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-h1 {
    font-size: 1.85rem;
    line-height: 1.28;
  }
  .hero-subhead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .hero-visual-col {
    order: -1;
  }
  .hero-floating-badge-bar {
    gap: 20px;
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  .hero-banner-container {
    padding: 32px 18px;
    border-radius: 24px;
    min-height: auto;
  }
  .badge-premium-pill {
    font-size: 0.68rem;
    padding: 6px 14px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
  }
  .hero-h1 {
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 14px;
    text-align: center;
  }
  .hero-subhead {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 100%;
    color: #475569;
  }
  .hero-actions {
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.88rem;
    border-radius: 10px;
    text-align: center;
  }
  .hero-floating-badge-bar {
    padding: 14px 16px;
    gap: 14px;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .floating-badge-item {
    width: 100%;
    justify-content: flex-start;
  }
  .badge-label {
    font-size: 0.82rem;
  }
  .badge-sub {
    font-size: 0.72rem;
  }
  .categories-scroll-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .circle-visual {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero-banner-container {
    padding: 28px 14px;
    border-radius: 20px;
  }
  .hero-h1 {
    font-size: 1.35rem;
    line-height: 1.32;
  }
  .hero-subhead {
    font-size: 0.85rem;
    line-height: 1.48;
  }
  .categories-scroll-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .badges-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
