/* Import Authentic Miami Vice Typography */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;700&family=Pacifico&display=swap');

:root {
  /* Miami Vice Color Palette */
  --vice-neon-pink: #FF1493;
  --vice-cyan-blue: #00FFFF;
  --vice-electric-purple: #8A2BE2;
  --vice-hot-pink: #FF69B4;
  --vice-dark-navy: #0A0A2E;
  --vice-charcoal: #1A1A1A;

  /* Neon gradients */
  --gradient-neon-sunset: linear-gradient(135deg, var(--vice-neon-pink) 0%, var(--vice-electric-purple) 50%, var(--vice-cyan-blue) 100%);
  --gradient-miami-night: linear-gradient(135deg, var(--vice-dark-navy) 0%, var(--vice-charcoal) 100%);
  --gradient-neon-accent: linear-gradient(45deg, var(--vice-hot-pink) 0%, var(--vice-cyan-blue) 100%);

  /* Backgrounds & text */
  --vcc-bg-dark: rgba(10, 10, 46, 0.95);
  --vcc-bg-glass: rgba(0, 0, 0, 0.75);
  --vcc-text-light: #FFFFFF;
  --vcc-text-dark: rgba(255, 255, 255, 0.92);
  --vcc-text-muted: rgba(255, 255, 255, 0.52);
  --vcc-link-dark: var(--vice-hot-pink);
  --vcc-link-hover: var(--vice-cyan-blue);

  /* Accent — gold used for focus rings and hover underlines */
  --havana-gold: #d4af37;
  --havana-cream: #f2eeea;
  --havana-pearl: rgba(255, 255, 255, 0.05);
  --havana-charcoal: #111118;

  /* Spacing & shape */
  --radius: 8px;
  --radius-large: 16px;
  --radius-small: 6px;

  /* Shadows */
  --shadow-neon: 0 8px 32px rgba(255, 20, 147, 0.3);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-luxury: 0 12px 48px rgba(212, 175, 55, 0.2);

  /* Typography — Miami Vice */
  --font-primary: 'Pacifico', cursive;
  --font-ui: 'Exo 2', sans-serif;
  --font-cyber: 'Orbitron', monospace;

  /* Typography — neutral/BLB fallback (BLB overrides via --blb-* vars inline) */
  --font-display: 'Playfair Display', serif;
}

body {
  color: var(--vcc-text-light);
  font-family: var(--font-ui);
  font-weight: 400;
  margin: 0;
  min-height: 100vh;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   MIAMI VICE THEME (Vice City Cigars brand)
   ============================================ */

.miami-theme {
  background: var(--gradient-miami-night);
}

/* Miami Vice neon grid pattern */
.miami-theme::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 20, 147, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

/* Miami Vice cyberpunk glass effect on main content */
.miami-theme main {
  background: var(--vcc-bg-glass);
  margin: 1rem auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-neon);
  padding: 2rem 1.5rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.3);
}

/* Neon corner accents */
.miami-theme main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-accent);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.miami-theme main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-accent);
  border-radius: 0 0 var(--radius-large) var(--radius-large);
}

/* ============================================
   NEUTRAL THEME (Legal and shared pages)
   ============================================ */

.neutral-theme {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.neutral-theme main {
  background: rgba(255, 255, 255, 0.03);
  margin: 1rem auto;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SHARED STYLES (All themes)
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Base heading reset (all themes) */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.2;
  font-weight: 400;
  color: var(--vcc-text-light);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }

/* Miami Vice neon heading styles — scoped to miami-theme only */
.miami-theme h1, .miami-theme h2, .miami-theme h3,
.miami-theme h4, .miami-theme h5, .miami-theme h6 {
  font-family: var(--font-primary);
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.miami-theme h1 {
  background: var(--gradient-neon-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.miami-theme h2 {
  color: var(--vice-cyan-blue);
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

h3 {
  font-size: 1.5rem;
}

.miami-theme h3 {
  color: var(--vice-hot-pink);
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

a {
  color: var(--vcc-link-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--havana-gold);
  transition: width 0.3s ease;
}

a:hover::after, a:focus::after {
  width: 100%;
}

a:hover, a:focus {
  color: var(--vcc-link-hover);
  text-decoration: none;
}

/* Art Deco Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 2rem;
  line-height: 1;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  display: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-neon-accent);
  color: var(--vcc-bg-dark);
  border: 2px solid var(--vice-cyan-blue);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  border-color: var(--vice-hot-pink);
  transform: translateY(-2px);
  color: var(--vcc-bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--vice-hot-pink);
  border: 2px solid var(--vice-hot-pink);
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vice-hot-pink);
  color: var(--vcc-bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

/* Miami Vice Cards */
.card, .offering-card, .event-card {
  background: var(--vcc-bg-glass);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-neon);
  padding: 2rem;
  margin: 1.5rem 0;
  border: 2px solid rgba(255, 20, 147, 0.3);
  position: relative;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-accent);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.card:hover, .offering-card:hover, .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
  border-color: var(--vice-hot-pink);
}

/* Enhanced text contrast for cards */
.card p, .offering-card p, .event-card p {
  color: var(--vcc-text-light);
  line-height: 1.7;
  font-weight: 400;
}

/* Miami Vice Hero Section */
.hero {
  background: var(--gradient-miami-night);
  color: var(--vcc-text-light);
  text-align: center;
  padding: 4rem 2rem 3rem 2rem;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow-neon);
  margin-bottom: 3rem;
  position: relative;
  border-bottom: 2px solid var(--vice-hot-pink);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(212, 175, 55, 0.1) 10px,
      rgba(212, 175, 55, 0.1) 20px
    );
  pointer-events: none;
}

.hero-logo {
  max-width: 280px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-cta {
  margin-top: 2.5rem;
}

.hero h1 {
  color: var(--havana-cream);
  -webkit-text-fill-color: var(--havana-cream);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--vcc-text-dark);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Art Deco Grid Layouts */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.offering-card {
  text-align: center;
  background: var(--havana-pearl);
  transition: all 0.4s ease;
  position: relative;
}

.offering-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--havana-gold);
  transition: width 0.4s ease;
}

.offering-card:hover::after {
  width: 80%;
}

.offering-card img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-large);
  filter: sepia(20%) saturate(1.2);
  transition: filter 0.3s ease;
}

.offering-card:hover img {
  filter: sepia(0%) saturate(1);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.event-card {
  text-align: left;
  background: var(--havana-pearl);
}

/* Art Deco Testimonials */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.testimonial {
  background: var(--havana-pearl);
  color: var(--vcc-text-dark);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  font-style: italic;
  border: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--havana-gold);
  font-family: var(--font-display);
  font-weight: 900;
}

.testimonial::after {
  content: '"';
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  font-size: 4rem;
  color: var(--havana-gold);
  font-family: var(--font-display);
  font-weight: 900;
}

/* Miami Vice Header */
.site-header {
  background: var(--vcc-bg-dark);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--vice-hot-pink);
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: var(--havana-charcoal);
  color: var(--havana-cream);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  z-index: 10000;
  font-family: var(--font-ui);
  font-weight: 600;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Mobile-First Navigation */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  flex-wrap: nowrap;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--vice-cyan-blue);
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.mobile-menu-toggle:hover .hamburger {
  background: var(--vice-hot-pink);
  box-shadow: 0 0 8px rgba(255, 20, 147, 0.7);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile-first logo */
.logo-link {
  flex-shrink: 0;
  z-index: 1001;
}

.site-logo {
  height: 40px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--vice-cyan-blue);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.site-logo:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  border-color: var(--vice-hot-pink);
}

/* Navigation dropdown — trigger button */
.nav-dropdown-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-family: var(--font-ui);
  color: var(--vcc-text-light);
  min-height: 44px;
  padding: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
  border-radius: var(--radius-small);
  border: 1px solid transparent;
}

.nav-dropdown-trigger:hover {
  color: var(--vice-cyan-blue);
  border-color: var(--vice-cyan-blue);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

/* Hidden by default on all screen sizes */
.nav-dropdown-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile: show trigger as a full-width nav row, submenu collapsed by default */
@media (max-width: 768px) {
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: var(--radius-small);
    border: 1px solid transparent;
    padding: 0 1rem;
    min-height: 44px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .nav-dropdown-trigger[aria-expanded="true"] {
    color: var(--vice-cyan-blue);
    border-color: var(--vice-cyan-blue);
  }

  .nav-dropdown-trigger[aria-expanded="true"] span {
    display: inline-block;
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    display: none;
    position: static;
    background: rgba(255, 20, 147, 0.06);
    border: none;
    border-left: 2px solid var(--vice-hot-pink);
    border-radius: 0;
    box-shadow: none;
    min-width: unset;
    padding: 0.25rem 0;
    margin: 0 0 0 1rem;
  }

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

  .nav-dropdown-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* Desktop dropdown styles */
@media (min-width: 769px) {
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-trigger {
    padding: 0.45rem 0.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: nowrap;
    min-height: unset;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    background: var(--vcc-bg-dark);
    border: 2px solid var(--vice-hot-pink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-neon);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 2000;
  }

  .nav-dropdown-menu li {
    margin: 0;
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--vcc-text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 20, 147, 0.2);
    color: var(--vice-cyan-blue);
    padding-left: 1.6rem;
  }

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

/* Mobile navigation - hidden by default */
.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--vcc-bg-dark);
  border: 2px solid var(--vice-hot-pink);
  border-top: none;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow-neon);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  order: 4;
}

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

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
}

.main-nav a {
  font-weight: 500;
  font-family: var(--font-ui);
  color: var(--vcc-text-light);
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  position: relative;
  text-decoration: none;
  background: transparent;
  display: flex;
  align-items: center;
  line-height: 1.2;
  text-align: center;
}

.main-nav a:hover {
  color: var(--vice-cyan-blue);
  border-color: var(--vice-cyan-blue);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  text-shadow: 0 0 5px currentColor;
}

.main-nav a.current {
  background: rgba(255, 20, 147, 0.2);
  color: var(--vice-hot-pink);
  border-color: var(--vice-hot-pink);
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.main-nav a[aria-current="page"] {
  background: rgba(255, 20, 147, 0.2);
  color: var(--vice-hot-pink);
  border-color: var(--vice-hot-pink);
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

/* Tobacco Shop scoped styles */
.tobacco-shop-page .section-title { font-size: 1.25rem; margin: 0 0 0.25rem; }
.tobacco-shop-page .section-sub { color: var(--vcc-text-muted, #9fb0bf); margin: 0 0 1rem; font-size: 0.9rem; }
.tobacco-shop-page .notice { background: rgba(255,204,102,0.08); border: 1px dashed rgba(255,204,102,0.4); color: #ffcc66; border-radius: 12px; padding: 10px 12px; margin: 12px 0 18px; font-size: 0.9rem; }

.tobacco-shop-page .filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 18px; }
.tobacco-shop-page .chip { border: 1px solid rgba(255,255,255,0.14); color: #e6edf3; background: transparent; border-radius: 999px; padding: 6px 10px; font-size: 0.85rem; cursor: pointer; }
.tobacco-shop-page .chip:hover { border-color: #ffcc66; }
.tobacco-shop-page .chip.active { background: #ffcc66; color: #1a1206; border-color: #ffcc66; }

.tobacco-shop-page .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.tobacco-shop-page .product-card { background: #0f1620; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.tobacco-shop-page .product-name { font-size: 1rem; margin: 0; }
.tobacco-shop-page .product-category { color: #9fb0bf; font-size: 0.8rem; }
.tobacco-shop-page .product-description { color: #c7d2db; font-size: 0.9rem; max-height: 72px; overflow: hidden; }
.tobacco-shop-page .product-meta { display: flex; justify-content: space-between; font-size: 0.9rem; }
.tobacco-shop-page .product-sku { font-size: 0.8rem; color: #9fb0bf; }
.tobacco-shop-page .add-to-cart-btn, .tobacco-shop-page .btn.btn-primary { background: #ffcc66; color: #1a1206; border: none; border-radius: 10px; padding: 8px 10px; font-weight: 700; cursor: pointer; }
.tobacco-shop-page .add-to-cart-btn:hover, .tobacco-shop-page .btn.btn-primary:hover { background: #e6b95a; }

.tobacco-shop-page .cart-summary { margin-top: 18px; }
.tobacco-shop-page .empty { color: #9fb0bf; font-size: 0.9rem; }
.tobacco-shop-page .cart-list { background: #0f1620; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px; }
.tobacco-shop-page .cart-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.tobacco-shop-page .cart-row:last-child { border-bottom: none; }
.tobacco-shop-page .checkout-btn { margin-top: 12px; }

.tobacco-shop-page .checkout { margin-top: 22px; }
.tobacco-shop-page .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tobacco-shop-page label { display: block; font-size: 0.8rem; color: #9fb0bf; margin-bottom: 6px; }
.tobacco-shop-page input, .tobacco-shop-page textarea, .tobacco-shop-page select { width: 100%; padding: 8px 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: #0f1620; color: #e6edf3; }
.tobacco-shop-page textarea { min-height: 80px; }
.tobacco-shop-page .error { background: rgba(255,107,107,0.12); border: 1px solid rgba(255,107,107,0.35); color: #ffc7c7; border-radius: 10px; padding: 8px 10px; margin-top: 10px; }
.tobacco-shop-page .success { background: rgba(57,215,200,0.12); border: 1px solid rgba(57,215,200,0.35); color: #c9fffa; border-radius: 10px; padding: 8px 10px; margin-top: 10px; }

@media (max-width: 720px) {
  .tobacco-shop-page .form-row { grid-template-columns: 1fr; }
}

/* Miami Vice Footer */
.site-footer {
  background: var(--vcc-bg-dark);
  color: var(--vcc-text-light);
  padding: 3rem 2rem 2rem 2rem;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  box-shadow: 0 -4px 20px rgba(255, 20, 147, 0.3);
  margin-top: 4rem;
  position: relative;
  border-top: 2px solid var(--vice-hot-pink);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-neon-accent);
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid var(--vice-cyan-blue);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--vice-cyan-blue);
  text-shadow: 0 0 5px currentColor;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--vcc-text-muted);
}

.footer-legal a {
  color: var(--vice-hot-pink);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--vice-cyan-blue);
  text-shadow: 0 0 5px currentColor;
}

.compliance-disclaimer {
  font-size: 0.78rem;
  color: var(--vcc-text-muted);
  line-height: 1.5;
  margin: 0;
}

.badge-21 {
  background: var(--gradient-neon-accent);
  color: var(--vcc-bg-dark);
  border-radius: var(--radius-small);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--vice-cyan-blue);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.footer-social a {
  display: inline-block;
  margin-left: 1rem;
  transition: all 0.3s ease;
  color: var(--vice-hot-pink);
}

.footer-social a:hover {
  transform: scale(1.1);
  color: var(--vice-cyan-blue);
  text-shadow: 0 0 10px currentColor;
}

/* Footer legal links */
.footer-links {
  margin-top: 1rem;
  font-size: 1rem;
}
.footer-links a {
  color: var(--vice-hot-pink);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--vice-cyan-blue);
  text-shadow: 0 0 5px currentColor;
  text-decoration: underline;
}

/* Miami Vice Age Gate Modal */
.age-gate-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20, 20, 30, 0.95);
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.age-gate-modal.active {
  display: flex;
}
.age-gate-content {
  background: var(--vcc-bg-dark);
  color: var(--vcc-text-light);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-neon);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 400px;
  margin: auto;
  border: 2px solid var(--vice-hot-pink);
  position: relative;
}

.age-gate-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-neon-accent);
  border-radius: var(--radius-large);
  z-index: -1;
  opacity: 0.3;
}

.age-gate-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0 0 0;
}
.age-gate-legal {
  font-size: 1rem;
  color: var(--vice-electric-purple);
  margin-top: 1.5rem;
  font-weight: 500;
  text-shadow: 0 0 5px currentColor;
}

/* Miami Vice Forms */
.miami-theme form,
.neutral-theme form {
  background: var(--vcc-bg-glass);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-neon);
  padding: 3rem 2.5rem;
  max-width: 500px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 2px solid var(--vice-hot-pink);
  position: relative;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.miami-theme form::before,
.neutral-theme form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-accent);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.miami-theme form label,
.neutral-theme form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--vice-cyan-blue);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-shadow: 0 0 5px currentColor;
}

.miami-theme form input, .miami-theme form textarea,
.neutral-theme form input, .neutral-theme form textarea {
  border: 2px solid var(--vice-hot-pink);
  border-radius: var(--radius-small);
  padding: 1rem;
  font-size: 1rem;
  font-family: var(--font-ui);
  margin-bottom: 0.5rem;
  background: var(--vcc-bg-dark);
  color: var(--vcc-text-light);
  transition: all 0.3s ease;
}

.miami-theme form input:focus, .miami-theme form textarea:focus,
.neutral-theme form input:focus, .neutral-theme form textarea:focus {
  border-color: var(--vice-cyan-blue);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.3), 0 0 15px rgba(0, 255, 255, 0.5);
  outline: none;
}

.miami-theme form textarea,
.neutral-theme form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-ui);
}

.miami-theme form button,
.neutral-theme form button {
  margin-top: 1.5rem;
}

.legal-reminder {
  text-align: center;
  color: var(--vice-electric-purple);
  font-size: 1rem;
  margin-top: 1.5rem;
  font-weight: 500;
  text-shadow: 0 0 5px currentColor;
}

/* Miami Vice Blog Styling */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  margin-bottom: 3rem;
  background: var(--vcc-bg-glass);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-neon);
  padding: 2.5rem;
  border: 2px solid rgba(255, 20, 147, 0.3);
  position: relative;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.blog-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon-accent);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.blog-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
  border-color: var(--vice-hot-pink);
}

.blog-date {
  color: var(--vice-cyan-blue);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-cyber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px currentColor;
}

.blog-list h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--vice-hot-pink);
}

/* Miami Vice Blog Post Styling */
.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 20, 147, 0.3);
  position: relative;
}

.post-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gradient-neon-accent);
}

.post-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  background: var(--gradient-neon-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
}

.post-date {
  color: var(--vice-cyan-blue);
  font-family: var(--font-cyber);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 5px currentColor;
}

.post-author {
  color: var(--vcc-text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.category-tag {
  background: rgba(255, 20, 147, 0.2);
  color: var(--vice-hot-pink);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-small);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--vice-hot-pink);
  box-shadow: 0 0 5px rgba(255, 20, 147, 0.3);
}

.post-body {
  line-height: 1.8;
}

.post-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.post-body h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body a {
  color: var(--vice-cyan-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--vice-cyan-blue);
  transition: all 0.3s ease;
}

.post-body a:hover {
  color: var(--vice-hot-pink);
  border-bottom-color: var(--vice-hot-pink);
  text-shadow: 0 0 5px currentColor;
}

@media (min-width: 768px) {
  .post-title {
    font-size: 3rem;
  }
  
  .post-meta {
    flex-direction: row;
    justify-content: center;
  }
  
  .post-meta > * {
    margin: 0 1rem;
  }
}

@media (min-width: 1024px) {
  .post-title {
    font-size: 3.5rem;
  }
}

/* Enhanced Typography */
p {
  color: var(--vcc-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
}

/* List styling improvements */
ul, ol {
  color: var(--vcc-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

/* Strong and emphasis styling */
strong, b {
  color: var(--vice-cyan-blue);
  font-weight: 700;
  text-shadow: 0 0 5px currentColor;
}

em, i {
  color: var(--vice-hot-pink);
  font-style: italic;
}

/* Quote styling */
blockquote {
  border-left: 4px solid var(--vice-hot-pink);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--vcc-text-muted);
  background: rgba(255, 20, 147, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
  position: relative;
}

blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-neon-accent);
  border-radius: 2px;
}

/* Mobile-First Responsive Design */

/* Tablet and larger screens */
@media (min-width: 768px) {
  .header-flex {
    padding: 1rem 2rem;
    gap: 1.25rem;
    flex-wrap: nowrap;
  }
  
  .site-logo {
    height: 50px;
  }
  
  /* Hide mobile menu toggle on larger screens */
  .mobile-menu-toggle {
    display: none;
  }
  
  /* Show navigation inline on larger screens */
  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    order: 2;
    flex: 1;
    min-width: 0;
  }
  
  .main-nav > ul {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    row-gap: 0.45rem;
    padding: 0;
    justify-content: flex-end;
  }

  /* Reset dropdown ul so it doesn't inherit the flex-row layout */
  .main-nav .nav-dropdown-menu {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
  }
  .main-nav a {
    padding: 0.45rem 0.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }
  
  .site-logo {
    height: 60px;
  }
  
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  main {
    margin: 1.5rem;
    padding: 2.5rem 2rem;
  }
}

/* Desktop and larger screens */
@media (min-width: 1024px) {
  .header-flex {
    gap: 1.5rem;
  }

  .main-nav > ul {
    column-gap: 0.6rem;
    row-gap: 0.45rem;
  }
  
  .main-nav a {
    padding: 0.5rem 0.7rem;
    font-size: 0.86rem;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  main {
    margin: 1.5rem;
    padding: 3rem 2.5rem;
  }
}

/* Large desktop screens */
@media (min-width: 1200px) {
  .offerings-grid, .event-cards, .testimonial-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  h3 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1.5rem 2.5rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .main-nav > ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .card, .offering-card, .event-card, .testimonial {
    padding: 1.5rem;
  }
  
  .blog-list li {
    padding: 2rem 1.5rem;
  }
  
  .miami-theme main,
  .neutral-theme main {
    margin: 0.5rem auto;
    padding: 1.5rem 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  form {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem;
  }
  
  main {
    margin: 0.5rem;
    padding: 2rem 1.5rem;
  }
  
  main::before, main::after {
    width: 2rem;
    height: 2rem;
  }
}

/* Art Deco Focus Styles */
a, button, input, textarea {
  transition: all 0.3s ease;
}

a:focus, button:focus, input:focus, textarea:focus {
  box-shadow: 0 0 0 3px var(--havana-gold);
  outline: 2px solid var(--havana-gold);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 3px var(--havana-gold);
  outline: 2px solid var(--havana-gold);
}

/* Contact Form Status Messages */
.form-status {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 500;
  text-align: center;
}

.form-status.success {
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid var(--vice-cyan-blue);
  color: var(--vice-cyan-blue);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-status.error {
  background: rgba(255, 20, 147, 0.1);
  border: 2px solid var(--vice-neon-pink);
  color: var(--vice-neon-pink);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

/* Form validation error styling */
input.error, textarea.error {
  border-color: var(--vice-neon-pink) !important;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.5) !important;
}

input.error:focus, textarea.error:focus {
  outline: 2px solid var(--vice-neon-pink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

