/*
Theme Name: Port Stanley Vape
Theme URI: https://portstanleyvape.ca
Author: Port Stanley Vape
Description: Custom single-page theme for Port Stanley Vape Shop, Port Stanley, Ontario.
Version: 1.0
License: Proprietary
Text Domain: port-stanley-vape
*/

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #070d1b;
  color: #e8e8e8;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img:not(.emoji) { max-width: 100%; display: block; }
img.emoji { display: inline !important; width: 1em !important; height: 1em !important; vertical-align: -0.1em !important; }

/* ─── CSS Variables ─── */
:root {
  --accent: #1A6AFF;
  --accent-light: #4D90FF;
  --accent-orange: #e87c2b;
  --accent-orange-light: #f5a04a;
  --dark: #070d1b;
  --dark-2: #0c1428;
  --dark-3: #111d36;
  --dark-4: #182745;
  --border: rgba(255,255,255,0.08);
  --text-muted: #8899bb;
  --text-dim: #4a5a78;
  --radius: 8px;
  --nav-h: 68px;
}

/* ─── Coming Soon Banner ─── */
.coming-soon-banner {
  background: var(--accent-orange);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.coming-soon-banner span {
  opacity: 0.85;
  font-weight: 400;
  margin-left: 8px;
}

/* ─── Age Gate ─── */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
#age-gate.hidden { display: none; }
.age-gate-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
}
.age-gate-logo-img {
  width: 240px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  mix-blend-mode: lighten;
}
.age-gate-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: #fff;
}
.age-gate-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.dob-row {
  display: flex; gap: 10px; margin-bottom: 16px;
}
.dob-row select {
  flex: 1;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #e8e8e8;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
}
.dob-row select:focus { outline: 1px solid var(--accent); border-color: var(--accent); }
#age-error {
  color: #e05555;
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}
.btn-primary {
  display: inline-block;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-orange-light); }
.age-gate-opening {
  margin-top: 16px;
    font-size: 14px;
      font-weight: 600;
        color: var(--accent-orange);
          text-align: center;
          }
.age-gate-legal {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ─── Navigation ─── */
nav.psv-nav {
  position: sticky;
  top: 36px;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(7,13,27,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}
.hero-right { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.hero-logo-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  mix-blend-mode: lighten;
}
.footer-logo-img {
  width: 200px;
  height: auto;
  display: block;
  mix-blend-mode: lighten;
  margin-bottom: 12px;
}
.nav-links {
  display: flex; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-badge {
  font-size: 12px;
  font-weight: 600;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--text-muted);
}
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
}

/* ─── Sections ─── */
section { padding: 96px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Hero ─── */
#hero {
  min-height: calc(100vh - 36px - var(--nav-h));
  display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,106,255,0.14) 0%, transparent 65%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26,106,255,0.07) 0%, transparent 60%),
              var(--dark);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h1.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
}
h1.hero-title em {
  color: var(--accent);
  font-style: normal;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-outline {
  display: inline-block;
  border: 1px solid var(--border);
  color: #e8e8e8;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }
.hero-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%;
}
.hero-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
}
.hero-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
}
.hero-card-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── Health Warning ─── */
.health-warn {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.health-warn strong { color: var(--text-muted); }

/* ─── Brand Ticker ─── */
.ticker-wrap {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Flavour Fridays ─── */
#ff-section {
  background: var(--dark-2);
  padding: 0;
}
.ff-inner {
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.ff-image {
  position: relative; overflow: hidden;
}
.ff-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75);
}
.ff-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--dark-2) 100%);
}
.ff-content {
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.ff-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ff-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 8px;
}
.ff-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  color: var(--accent);
  line-height: 0.85;
  margin-bottom: 4px;
}
.ff-off {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.ff-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
}
.ff-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ─── Product Categories ─── */
#categories { background: var(--dark); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.cat-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.cat-card:hover { border-color: rgba(26,106,255,0.45); transform: translateY(-2px); }
.cat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--dark-4);
  line-height: 1;
  margin-bottom: 12px;
}
.cat-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── Brands ─── */
#brands { background: var(--dark-2); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.brand-pill {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.brand-pill:hover { border-color: rgba(26,106,255,0.4); }
.brand-pill strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.brand-pill span { font-size: 12px; color: var(--text-muted); }
.brand-note { margin-top: 24px; font-size: 12px; color: var(--text-dim); text-align: center; }

/* ─── Why ─── */
#why { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 48px;
}
.why-card { border-left: 3px solid var(--accent); padding-left: 24px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── Stats bar ─── */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 0; flex-wrap: wrap;
}
.stat {
  flex: 1; min-width: 160px;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--accent); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ─── CTA ─── */
.cta-section {
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,106,255,0.16) 0%, transparent 70%), var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}
.cta-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}
.cta-wordmark span { color: var(--accent); }
.cta-section p {
  color: var(--text-muted); font-size: 18px;
  max-width: 500px; margin: 0 auto 36px; line-height: 1.6;
}
.btn-primary-inline {
  display: inline-block;
  background: var(--accent-orange);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-primary-inline:hover { background: var(--accent-orange-light); }

/* ─── Location ─── */
#locations { background: var(--dark); }
.location-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px; max-width: 640px; margin-top: 48px;
}
.location-card h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.location-card .sub {
  font-size: 13px; color: var(--accent); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px;
}
.location-card address {
  font-style: normal; font-size: 15px;
  color: var(--text-muted); line-height: 1.6; margin-bottom: 24px;
}
.hours-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: 4px 20px; font-size: 14px; margin-bottom: 24px;
}
.hours-grid .day { color: var(--text-muted); }
.hours-grid .time { color: #e8e8e8; }
.location-map-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-orange); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: var(--radius); transition: background 0.2s;
}
.location-map-link:hover { background: var(--accent-orange-light); }

/* ─── Legal ─── */
.legal-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.legal-inner { max-width: 1200px; margin: 0 auto; }
.legal-badge {
  display: inline-block;
  background: var(--dark-4); border: 1px solid var(--border); border-radius: 4px;
  padding: 4px 12px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
}
.legal-section h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.legal-section p { font-size: 14px; color: var(--text-muted); max-width: 760px; line-height: 1.7; }

/* ─── Contact ─── */
#contact { background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; margin-top: 48px; align-items: start;
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item .icon { font-size: 18px; line-height: 1.4; }
.contact-item .label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item .val { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); color: #e8e8e8;
  padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color 0.2s; appearance: none;
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--text-dim); }

/* ─── Footer ─── */
footer.psv-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 36px;
  border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.footer-brand .nav-logo { font-size: 28px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 300px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-badge {
  font-size: 12px; font-weight: 700;
  background: var(--dark-4); border: 1px solid var(--border);
  border-radius: 4px; padding: 4px 10px; color: var(--text-dim);
}

/* ─── Mobile Menu ─── */
#mobile-menu {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 280px; background: var(--dark-3);
  border-left: 1px solid var(--border);
  z-index: 950; padding: 80px 32px 40px;
  flex-direction: column; gap: 28px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-size: 20px; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
#mobile-menu a:hover { color: #fff; }
#mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 940;
}
#mobile-overlay.open { display: block; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-grid { grid-template-columns: repeat(4, auto); }
  .ff-inner { grid-template-columns: 1fr; }
  .ff-image { min-height: 300px; }
  .ff-content { padding: 48px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav-links, .nav-badge { display: none; }
  .nav-menu-btn { display: block; }
  section { padding: 64px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat { padding: 0 20px; }
  nav.psv-nav { top: 40px; }
  .hero-card-grid { grid-template-columns: 1fr 1fr; }
}
