
/* ===== Base / Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; margin: 0; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height: 1.5;
  color: #0f172a;
  background: #ffffff;
}
main { flex: 1; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Theme ===== */
:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #111827;
  --accent: #06b6d4;
  --accent-2: #22c55e;
  --warning: #ef4444;
  --card: #0b1220;
  --cardText: #e5e7eb;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(2, 6, 23, .12);
  --container: 1400px;
}

/* ===== Utilities ===== */
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(48px, 6vw, 96px) 0; }
.grid { display: grid; gap: clamp(16px, 2.5vw, 28px); }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .two, .three { grid-template-columns: 1fr; } }
.pill { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; font-size: 12px; color: var(--muted); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 18px; border-radius: 999px; border: 1px solid transparent; background: var(--accent); color: white; font-weight: 600; box-shadow: var(--shadow); cursor: pointer; }
.btn.secondary { background: #111827; }
.btn.ghost { background: transparent; color: white; border-color: var(--border); box-shadow: none; }
.badge { font-size: 12px; color: #0ea5e9; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.h1 { font-size: clamp(28px, 5vw, 48px); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 12px; }
.h2 { font-size: clamp(22px, 3.5vw, 32px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 10px; }
.lead { font-size: clamp(15px, 1.8vw, 18px); color: var(--muted); max-width: 60ch; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card-inner { padding: clamp(16px, 2vw, 20px); }
.kicker { color: var(--accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }

/* ===== Header ===== */
header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(10px); background: color-mix(in srgb, var(--bg) 85%, transparent); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; font-weight: 900; }
nav a { font-weight: 600; color: var(--text); opacity: .9; }
.nav-links { display: flex; gap: 16px; align-items: center; }
.menu-btn { display: none; border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; background: #fff; }
@media (max-width: 900px) { .nav-links { display: none; } .menu-btn { display: inline-flex; } }
.mobile-menu { display: none; position: fixed; inset: 64px 0 auto 0; background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow); padding: 12px 16px; }
.mobile-menu a { display: block; padding: 12px 6px; border-bottom: 1px dashed var(--border); }

/* ===== Hero ===== */
.hero { position: relative; isolation: isolate; }
.hero .bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(1200px 600px at 80% -20%, rgba(6,182,212,.25), transparent), radial-gradient(900px 500px at 10% -10%, rgba(34,197,94,.18), transparent); }
.hero-wrap { display: grid; gap: 28px; align-items: center; grid-template-columns: 1.2fr .8fr; }
@media (max-width: 900px) { .hero-wrap { grid-template-columns: 1fr; } }
.hero-art { aspect-ratio: 4 / 5; border-radius: calc(var(--radius) * 1.25); overflow: hidden; background: linear-gradient(180deg, #0b1220, #0e1b33); display: grid; place-items: center; }
.hero-art img { width: 70%; filter: drop-shadow(0 16px 40px rgba(0,0,0,.4)); }

/* ===== Product Cards ===== */
.product-card { position: relative; overflow: hidden; border-radius: calc(var(--radius) * 1.1); border: 1px solid var(--border); background: linear-gradient(180deg, #0f172a, #0b1220); color: var(--cardText); }
.product-card .card-inner { display: grid; gap: 10px; }
.product-card .tag { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; opacity: .9; }
.product-card .name { font-size: clamp(18px, 2.6vw, 24px); font-weight: 800; }
.product-card p { color: #cbd5e1; }

/* ===== Features ===== */
.feature { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; }
.feature .dot { width: 36px; height: 36px; border-radius: 10px; background: color-mix(in srgb, var(--accent) 80%, white); display: grid; place-items: center; font-weight: 800; color: white; }

/* ===== Notices ===== */
.notice { display: grid; gap: 10px; border: 1px solid var(--border); padding: 14px; background: #000; font-size: 24px; color: #fff; font-weight: bold; text-align: center; }
.notice-compliance { display: grid; gap: 10px; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; background: #fafafa; font-size: 14px; color: #374151; }
.notice-compliance strong { color: #111827; }

/* ===== CTA Bar ===== */
.cta-bar { position: sticky; bottom: 12px; z-index: 40; }
.cta-inner { width: min(100% - 2rem, var(--container)); margin: 0 auto; background: #0b1220; color: white; border-radius: 999px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; box-shadow: var(--shadow); border: 1px solid #1f2937; }
.cta-inner b { font-weight: 800; }
.cta-actions { display: flex; gap: 8px; }

/* ===== Forms ===== */
.form { display: grid; gap: 10px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; letter-spacing: .02em; color: var(--muted); }
.input { border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; outline: none; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--border); padding: 28px 0 56px; color: var(--muted); font-size: 14px; }
footer a { text-decoration: underline; }

#contactStatus { min-height: 1.25em; }

/* ===== A11y ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }





/* Sitewide link utility */
a.link-blue {
  color: var(--link-color, #0b63ff) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a.link-blue:hover,
a.link-blue:focus-visible {
  color: #0846c9; /* darker on hover/focus */
}

a.link-blue:visited {
  color: #5a37c9; /* visited purple */
}

/* Optional: no underline variant */
a.link-blue.no-underline { text-decoration: none; }

/* Optional: on dark backgrounds */
.on-dark a.link-blue { color: #8fb5ff !important; }
.on-dark a.link-blue:hover,
.on-dark a.link-blue:focus-visible { color: #cfe0ff; }




/* ===== Nicotine Pouches ===== */



.section.tight {
  padding: 30px 0;
}


/* ===== Three-column product row (can-style) ===== */
.sku-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  justify-items: center;
}

@media (max-width: 980px) {
  .sku-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sku-grid { grid-template-columns: 1fr; }
}

/* Individual tile */
.sku {
  text-align: center;
  max-width: 380px;
  margin-inline: auto;
}

/* Circular image wrapper with subtle depth */
.sku-img {
  width: clamp(200px, 26vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 14px 35px rgba(0,0,0,.12),
    inset 0 0 0 1px rgba(15,23,42,.06);
  overflow: hidden; /* in case source isn’t perfectly square */
  margin: 0 auto clamp(16px, 3vw, 22px);
}
.sku-img img {
  width: 92%;
  height: 92%;
  object-fit: contain; /* preserves the can artwork */
  display: block;
}

/* Title & description */
.sku-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.sku-desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Single CTA under grid */
.sku-cta {
  display: grid;
  place-items: center;
  margin-top: clamp(18px, 3vw, 28px);
}

.sku-img-plain {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}




/* ===== Energy Pouches ===== */


/* Layout split on desktop (70/30) */
#energy-pouches .container.grid.two {
  grid-template-columns: 7fr 3fr;   /* ~70/30 */
  align-items: center;
}

/* Left side (image) */
.energy-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.energy-media img {
  width: 100%;
  height: auto;
  /* transform: scale(1.1);  */
}

/* Right side (text) */
.energy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  text-align: center;
  padding: 20px;
}
.energy-title {
  color: #ea580c; /* orange */
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.energy-lead {
  margin-bottom: 24px;
  color: var(--muted);
}
.energy-copy .btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 999px;   /* pill shape */
  width: auto;
}

/* Orange button variant */
.btn-orange { background: #ea580c; }
.btn-orange:hover { filter: brightness(0.95); }

/* Break to single column on mobile */
@media (max-width: 900px) {
  #energy-pouches .container.grid.two {
    grid-template-columns: 1fr;     /* stack */
    row-gap: 18px;
  }
  #energy-pouches .energy-media { order: 1; }
  #energy-pouches .energy-copy  { 
    order: 2; 
    align-items: center; 
    text-align: center; 
    padding: 8px 0 0; 
  }
  .energy-media img {
    max-width: 520px;
    width: 85%;
    margin: 0 auto;
  }
  .energy-title { font-size: clamp(26px, 7vw, 36px); }
  .energy-copy .btn { padding: 10px 22px; font-size: 15px; }
}

/* Optional: tighter vertical spacing only for this section */
#energy-pouches.section { padding: 32px 0; }




/* ===== E-Liquids: header with angled yellow background ===== */

.eliquids-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;       /* centers the block horizontally */
  text-align: center;   /* centers the text inside */
}

.eliquids-header {
  background: #fde047; /* yellow */
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  padding: 60px 0 80px;
}
.eliquids-copy { text-align: center; }
.eliquids-copy h2 { margin: 0; }
.eliquids-sub {
  margin: 8px 0 12px;
  font-weight: 700;
  color: #dc2626; /* red accent */
  text-transform: uppercase;
}
.eliquids-copy .btn { margin-top: 18px; }

/* ===== Bottles grid (no cards) ===== */
.eliquids-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 across on desktop */
  gap: 24px;
  margin-top: 40px;
  align-items: end;
}

.eliquid-item { text-align: center; }

.eliquid-item img {
  width: 100%;
  height: auto;
  max-height: 360px;      /* increase/decrease to taste */
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;  /* bottom margin creates space before the name */
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .eliquids-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .eliquids-grid { grid-template-columns: 1fr; }
}



/* FAQ accordion */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-left: 12px;
  transition: transform .2s ease;
  opacity: .7;
}
.faq-item[open] summary { border-bottom: 1px solid var(--border, #e5e7eb); }
.faq-item[open] summary::after { content: "−"; }
.faq-content {
  padding: 12px 16px 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}





/* White band for readable copy */
.hero-intro {
  background: #fff;
  border-bottom: 1px solid var(--border, #e5e7eb);
}

/* Center and space the block */
.hero-intro .container {
  padding: clamp(28px, 5vw, 56px) 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Nicely set reading width and rhythm */
.hero-intro-lead {
  max-width: 90ch;           /* optimal measure */
  margin: 0 auto;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  letter-spacing: .01em;
  color: var(--muted);
  text-wrap: balance;        /* better line breaks in modern browsers */
  hyphens: auto;
}
