*, *::before, *::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body, h1, h2, h3, p { margin: 0; }
img { max-width: 100%; display: block; }
input, button { font: inherit; }

:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --primary: #14b8a6; /* teal-500 */
  --primary-700: #0d9488; /* teal-600 */
  --accent: #06b6d4; /* cyan-500 */
  --card: #ffffff;
  --card-border: #e5e7eb;
  --bg-overlay: rgba(0,0,0,0.45);
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0b0c0f; --text: #eef2f7; --muted: #9aa3b2; --card: #111317; --card-border: #23262d; --accent: #06b6d4; }
}
body { background: #063f3a url('assets/background/popart.jpg') center/cover no-repeat fixed; color: var(--text); font-family: Inter, Segoe UI, Roboto, Arial, system-ui, -apple-system; line-height: 1.6; overflow-x: hidden; }
body::after { content: ""; position: fixed; inset: 0; background: var(--bg-overlay); pointer-events: none; z-index: 0; }

body.age-blur .site-header,
body.age-blur main,
body.age-blur .site-footer { filter: blur(6px) saturate(0.8) brightness(0.9); transition: filter .2s ease; will-change: filter; }

.site-header, main, .site-footer { position: relative; z-index: 1; }

.container { width: min(1100px, 92%); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(6,63,58,0.55); backdrop-filter: blur(8px); border-bottom: 1px solid var(--card-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.site-header::after { content: ""; position: absolute; inset: auto 0 0 0; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent); opacity: 0.6; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.3px; }
.brand-logo { width: 28px; height: 28px; object-fit: cover; border-radius: 6px; }
.brand-text { display: grid; }
.brand-name { font-size: 18px; line-height: 1.1; }
.brand-tagline { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.4px; margin-top: 2px; }
@media (max-width: 640px) { .brand-tagline { display: none; } }

.site-nav { display: inline-flex; align-items: center; gap: 18px; }
.nav-link { color: var(--muted); text-decoration: none; font-weight: 600; }
.nav-link:hover { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }
.btn-small { padding: 8px 12px; border-radius: 8px; background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: #fff; border: 1px solid transparent; box-shadow: 0 6px 16px rgba(20,184,166,0.25); text-decoration: none; font-weight: 700; }
.btn-small:hover { filter: brightness(1.05); }

.hero { padding: 72px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.eyebrow { text-transform: uppercase; font-size: 12px; letter-spacing: 1.6px; color: var(--muted); margin-bottom: 10px; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.gradient-title { background: linear-gradient(90deg, #0ea5e9, #14b8a6, #06b6d4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subhead { font-size: clamp(16px, 2.2vw, 18px); color: var(--muted); margin-bottom: 22px; }
.hero-image { border-radius: 14px; border: 1px solid var(--card-border); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* Mesh/Noise overlay */
body::before { content: ""; position: fixed; inset: -20% -20% auto -20%; height: 60vh; pointer-events: none; background: radial-gradient(600px 300px at 10% 0%, rgba(20,184,166,0.12), transparent 60%), radial-gradient(600px 300px at 90% 0%, rgba(6,182,212,0.10), transparent 60%); filter: blur(20px); opacity: 0.9; }

.waitlist-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.waitlist-form input[type="email"] { border: 1px solid var(--card-border); padding: 12px 14px; border-radius: 10px; outline: none; background: var(--card); color: var(--text); }
.waitlist-form input[type="email"]:focus { border-color: #5eead4; box-shadow: 0 0 0 4px rgba(94,234,212,0.25); }
.form-hint { grid-column: 1 / -1; font-size: 12px; color: var(--muted); margin-top: -2px; }
.form-message { margin-top: 10px; font-weight: 600; }
.form-message.success { color: #10b981; }
.form-message.error { color: #ef4444; }

.btn-primary, .btn-secondary, button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; text-decoration: none; font-weight: 600; }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: white; box-shadow: 0 10px 20px rgba(20,184,166,0.25); }
.btn-primary:hover { filter: brightness(1.03); box-shadow: 0 0 0 4px rgba(20,184,166,0.18), 0 10px 20px rgba(20,184,166,0.25); }
.btn-secondary { background: var(--card); color: var(--text); border-color: var(--card-border); }
.btn-secondary:hover { background: #f6f7f9; }

.products { padding: 40px 0 20px; }
.section-title { font-size: 24px; margin-bottom: 16px; }
.product-category { margin-bottom: 40px; }
.category-title { font-size: 20px; color: var(--muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gummies-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card { background: transparent; border: 0; border-radius: 14px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; will-change: transform; padding: 0; }
.card:hover { transform: translateY(-2px); box-shadow: none; }
.card-image { width: 100%; height: auto; object-fit: contain; background: transparent; margin: 0 auto; display: block; max-height: 240px; }
#panel-drinks .card-image { height: auto; max-height: 240px; max-width: 70%; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .card-image { max-height: 200px; } #panel-drinks .card-image { max-height: 200px; max-width: 75%; } }
.card-body { padding: 12px; background: rgba(0,0,0,0.35); border-radius: 12px; margin-top: 8px; }
.card-body h3 { font-size: 18px; margin-bottom: 6px; font-weight: 800; }
.muted { color: var(--muted); font-size: 14px; }

/* Lightbox */
.image-link { display: block; cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.72); display: grid; place-items: center; padding: 24px; backdrop-filter: blur(2px); z-index: 9999; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 88vh; border-radius: 12px; border: 1px solid var(--card-border); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.lightbox-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: #fff; font-size: 22px; font-weight: 800; cursor: pointer; box-shadow: 0 10px 20px rgba(20,184,166,0.25); }
.lightbox-close:hover { filter: brightness(1.05); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.4); color: #fff; font-size: 26px; font-weight: 800; cursor: pointer; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 600; background: rgba(0,0,0,0.35); padding: 8px 12px; border-radius: 8px; }

/* Reveal on scroll */
.reveal-on-scroll { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* Mobile nav */
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; position: relative; }
.nav-toggle .bar { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle .bar:nth-child(1) { top: 14px; }
.nav-toggle .bar:nth-child(2) { top: 20px; }
.nav-toggle .bar:nth-child(3) { top: 26px; }
.site-nav { display: inline-flex; align-items: center; gap: 18px; }
.nav-icons { display: inline-flex; gap: 10px; margin-left: 8px; }
.icon-link { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 1px solid var(--card-border); border-radius: 8px; color: var(--muted); text-decoration: none; }
.icon-link:hover { color: var(--text); border-color: var(--text); }
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; right: 4%; top: 60px; background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; padding: 10px; display: none; flex-direction: column; align-items: stretch; gap: 10px; min-width: 200px; }
  .site-nav.open { display: flex; }
  .nav-icons { justify-content: flex-end; }
}

.cta { padding: 10px 0 60px; }
.cta-inner { border: 1px solid var(--card-border); border-radius: 18px; padding: 26px; text-align: center; background: radial-gradient(1200px 400px at 10% -20%, rgba(20,184,166,0.18), transparent), radial-gradient(1200px 400px at 90% -20%, rgba(6,182,212,0.15), transparent); }
.cta h2 { font-size: 22px; margin-bottom: 6px; }
.cta p { color: var(--muted); margin-bottom: 12px; }

.contact { padding: 40px 0 60px; }
.contact-intro { text-align: center; color: var(--muted); margin-bottom: 32px; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.social-card { background: rgba(0,0,0,0.35); border: 0; border-radius: 14px; padding: 20px; text-decoration: none; color: var(--text); transition: transform .2s ease, box-shadow .2s ease; }
.social-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.social-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: white; display: grid; place-items: center; font-weight: 700; margin-bottom: 12px; }
.social-card h3 { font-size: 18px; margin-bottom: 6px; }
.social-card p { color: var(--muted); font-size: 14px; }

.site-footer { position: static; z-index: 5; background: rgba(6,63,58,0.55); backdrop-filter: blur(8px); border-top: 1px solid var(--card-border); }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent); opacity: 0.6; top: 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 10px; }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }
.tab-button { text-align: center; padding: 6px 12px; border-radius: 10px; border: 1px solid transparent; background: rgba(0,0,0,0.35); color: #fff; font-weight: 700; letter-spacing: .6px; }
.tab-button.active { background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: #fff; border-color: transparent; }
.tab-button.link { text-decoration: none; display: inline-flex; align-items: center; }
.tab-panel { display: block; }
.tab-panel[hidden] { display: none; }
.card-body h3 { font-size: 18px; margin-bottom: 6px; font-weight: 800; }

.order-steps { counter-reset: step; margin: 10px 0; padding-left: 18px; }
.order-steps li { margin: 8px 0; line-height: 1.5; }
.order-steps a { color: var(--accent); font-weight: 700; text-decoration: underline; }

.gummies-actions { display: flex; justify-content: center; margin-top: 12px; }
#gummies-load-more { padding: 10px 14px; }

@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-visual { order: -1; } }
@media (max-width: 700px) { .waitlist-form { grid-template-columns: 1fr; } .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .cards { grid-template-columns: 1fr 1fr; } }
.tabs-select-wrapper { position: relative; }
.select-chevron { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; pointer-events: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center/contain; }
.tabs-select-wrapper.open .select-chevron { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 15 12 9 18 15'/%3E%3C/svg%3E") no-repeat center/contain; }
.tabs-select:focus + .select-chevron, .tabs-select:active + .select-chevron { transform: translateY(-50%) rotate(180deg); }
.tabs-select-wrapper { display: none; }
.hidden { display: none !important; }
@media (max-width: 640px) {
  .tabs { display: flex; flex-wrap: nowrap; gap: 8px; margin: 8px 0 14px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; touch-action: pan-x; scroll-behavior: smooth; }
  .tab-button { flex: 0 0 auto; padding: 6px 10px; }
  .tabs-select-wrapper { display: none; }
  .tabs-select {
    width: 100%;
    padding: 12px 42px 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center,
      linear-gradient(180deg, var(--primary), var(--primary-700));
    background-size: 20px 20px, 100% 100%;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 8px 18px rgba(20,184,166,0.22);
  }
  .tabs-select:focus { outline: none; box-shadow: 0 0 0 4px rgba(20,184,166,0.25), 0 8px 18px rgba(20,184,166,0.22); }
  .tabs-select option { background: rgba(26,26,26,0.95); color: #fff; font-weight: 700; }
  .select-chevron { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; pointer-events: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center/contain; }
}

/* Hide scrollbar for tabs on WebKit */
.tabs::-webkit-scrollbar { display: none; }
/* Hide scrollbar for other browsers */
.tabs { -ms-overflow-style: none; scrollbar-width: none; }

.noscript-banner { position: sticky; top: 0; z-index: 10000; background: #111827; color: #fff; padding: 10px 14px; text-align: center; font-weight: 700; }

.age-gate { position: fixed; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(2px); display: grid; place-items: center; z-index: 10001; }
.age-gate[hidden] { display: none; }
.age-gate-card { width: min(520px, 92vw); background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 22px; text-align: center; }
.age-gate-card h2 { font-size: 24px; margin-bottom: 6px; }
.age-gate-card p { color: var(--muted); margin-bottom: 14px; }
.age-gate-actions { display: flex; gap: 10px; justify-content: center; }


