/* ==========================================================================
   Smoky Vape — theme matches the "Now Open" poster:
   black background, purple/magenta smoke, neon orange script logo,
   bold white block type, icy blue accent.
   ========================================================================== */

:root {
  --black: #08070c;
  --black-2: #0e0c15;
  --purple: #7c3aed;
  --purple-2: #a21caf;
  --magenta: #d946ef;
  --orange: #ff5a1f;
  --orange-2: #ff8a3d;
  --ice-blue: #7dd3fc;
  --white: #f8f7fb;
  --gray: #b9b3c4;
  --gray-dim: #7c7689;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', -apple-system, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Logo wordmark ---------- */
.logo-smoky {
  font-family: 'Pacifico', cursive;
  color: var(--orange-2);
  font-size: 1.1em;
  text-shadow:
    0 0 6px rgba(255, 138, 61, 0.9),
    0 0 18px rgba(255, 90, 31, 0.7),
    0 0 36px rgba(255, 90, 31, 0.4);
  margin-right: 0.15em;
}
.logo-vape {
  font-family: 'Archivo Black', sans-serif;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(217, 70, 239, 0.35);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-neon {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #1a0a02;
  box-shadow: 0 4px 20px rgba(255, 90, 31, 0.45);
}
.btn-neon:hover { box-shadow: 0 8px 30px rgba(255, 90, 31, 0.65); }
.btn-outline {
  border-color: rgba(248, 247, 251, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--ice-blue); color: var(--ice-blue); }
.btn-ghost {
  color: var(--gray);
  padding: 0.75em 1.25em;
}
.btn-ghost:hover { color: var(--white); }
.btn-lg { padding: 1em 2em; font-size: 1rem; }

/* ==========================================================================
   Age Gate
   ========================================================================== */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 50% 20%, #1a0f24 0%, var(--black) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#age-gate.hidden { display: none; }
.age-gate-card {
  max-width: 440px;
  width: 100%;
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}
.age-gate-logo { font-size: 2.2rem; margin-bottom: 24px; }
.age-gate-card h2 { font-size: 1.3rem; margin-bottom: 12px; }
.age-gate-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 28px; }
.age-gate-actions { display: flex; flex-direction: column; gap: 10px; }

/* ==========================================================================
   Smoke Background
   ========================================================================== */
.smoke-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--black);
}
.smoke-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.blob-1 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  top: -15%; left: -10%;
  animation: drift1 22s ease-in-out infinite;
}
.blob-2 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, var(--magenta), transparent 70%);
  top: 10%; right: -15%;
  animation: drift2 26s ease-in-out infinite;
}
.blob-3 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--purple-2), transparent 70%);
  bottom: -20%; left: 15%;
  animation: drift3 30s ease-in-out infinite;
}
.blob-4 {
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, var(--orange), transparent 75%);
  bottom: 10%; right: 10%;
  opacity: 0.25;
  animation: drift1 18s ease-in-out infinite reverse;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 8%) scale(1.12); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, 6%) scale(1.08); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, -6%) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .smoke-blob { animation: none !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 12, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s ease;
}
#site-header.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo { font-size: 1.35rem; flex-shrink: 0; }
#main-nav { display: flex; gap: 28px; }
#main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
#main-nav a:hover { color: var(--white); }
#main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange-2);
  transition: width 0.25s ease;
}
#main-nav a:hover::after { width: 100%; }
.header-cta { flex-shrink: 0; }

#nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
}
#nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; }

#mobile-nav {
  display: none;
  flex-direction: column;
  padding: 10px 24px 20px;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
#mobile-nav a { padding: 12px 0; font-weight: 600; color: var(--gray); }
#mobile-nav .btn { margin-top: 10px; justify-content: center; }
#mobile-nav.open { display: flex; }

/* ==========================================================================
   Hero
   ========================================================================== */
#hero {
  position: relative;
  padding: 90px 24px 70px;
  text-align: center;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }

.now-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--ice-blue);
  border: 1.5px solid rgba(125, 211, 252, 0.5);
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.06);
  text-shadow: 0 0 12px rgba(125, 211, 252, 0.8);
  box-shadow: 0 0 24px rgba(125, 211, 252, 0.15);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ice-blue);
  box-shadow: 0 0 8px var(--ice-blue);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  margin-bottom: 26px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-logo .logo-smoky { font-size: clamp(3rem, 11vw, 6.5rem); margin: 0; }
.hero-logo .logo-vape { font-size: clamp(3.2rem, 13vw, 7.5rem); margin-top: -0.08em; }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 22px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.stars { color: var(--orange-2); letter-spacing: 2px; }
.rating-count { color: var(--gray-dim); font-weight: 400; }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

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

.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* ==========================================================================
   Info Strip
   ========================================================================== */
#info-strip { padding: 0 24px 80px; position: relative; z-index: 2; }
.info-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(255, 138, 61, 0.4); }
.info-card svg { color: var(--orange-2); margin-bottom: 12px; }
.info-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.info-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }
.info-card a:hover { color: var(--orange-2); }

/* ==========================================================================
   Shared section styles
   ========================================================================== */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
section { padding: 70px 0; }
.section-kicker {
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 44px;
  font-weight: 400;
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.25);
  border-color: rgba(217, 70, 239, 0.4);
}
.product-icon { font-size: 2.2rem; margin-bottom: 14px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.product-card p { color: var(--gray); font-size: 0.87rem; line-height: 1.5; }
.products-note { text-align: center; color: var(--gray-dim); margin-top: 32px; font-size: 0.9rem; }
.products-note a { color: var(--orange-2); font-weight: 600; }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text p { color: var(--gray); line-height: 1.75; margin-bottom: 16px; font-size: 1rem; }
.about-badge { display: flex; justify-content: center; }
.badge-circle {
  width: 190px; height: 190px;
  border-radius: 50%;
  border: 2px solid rgba(255, 138, 61, 0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.12), transparent 70%);
  box-shadow: 0 0 50px rgba(255, 90, 31, 0.2);
}
.badge-rating { font-family: 'Archivo Black', sans-serif; font-size: 2.6rem; }
.badge-stars { color: var(--orange-2); letter-spacing: 2px; margin: 4px 0; }
.badge-count { color: var(--gray-dim); font-size: 0.82rem; }

/* ---------- Location ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer#contact {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 60px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-smoky { font-size: 1.4rem; }
.footer-brand .logo-vape { font-size: 1.4rem; }
.footer-brand p { color: var(--gray-dim); margin-top: 12px; font-size: 0.88rem; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.footer-col p { margin-bottom: 8px; font-size: 0.9rem; color: var(--gray-dim); }
.footer-col a:hover { color: var(--orange-2); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  text-align: center;
  color: var(--gray-dim);
  font-size: 0.82rem;
}

/* ==========================================================================
   Back to top
   ========================================================================== */
#back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--orange); border-color: var(--orange); color: #1a0a02; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-text { order: 2; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 760px) {
  #main-nav, .header-cta { display: none; }
  #nav-toggle { display: flex; }
  .info-strip-inner { grid-template-columns: 1fr; }
}
