/* ============================================================
   SoberHype Vienna — Design System
   Dark urban neon: electric lime × hot coral × near-black
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --bg:        #060606;
  --bg-2:      #0e0e0e;
  --bg-3:      #161616;
  --bg-4:      #1e1e1e;
  --lime:      #C6FF00;
  --lime-dim:  rgba(198,255,0,0.12);
  --pink:      #FF2D55;
  --pink-dim:  rgba(255,45,85,0.12);
  --white:     #F8F8F8;
  --muted:     #5a5a5a;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);

  --font-d:  'Bebas Neue', sans-serif;
  --font-b:  'Plus Jakarta Sans', sans-serif;

  --r:   10px;
  --r-l: 18px;
  --r-xl: 28px;

  --nav-h: 68px;
  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b); }
ul, ol { list-style: none; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,6,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 1.5rem;
  letter-spacing: .04em;
  display: flex; align-items: center; gap: .4rem;
}
.nav-logo span { color: var(--lime); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-actions {
  display: flex; align-items: center; gap: 1rem;
}
.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: var(--r);
  border: 1px solid var(--border-2);
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: border-color .2s, background .2s;
}
.cart-btn:hover { border-color: var(--lime); background: var(--lime-dim); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--lime);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.cart-count.visible { opacity: 1; }
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r);
  border: 1px solid var(--border-2);
  background: var(--bg-3);
  align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ── Mobile nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--bg-2);
  padding: 2rem var(--gutter);
  flex-direction: column; gap: 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-d);
  font-size: 2rem;
  letter-spacing: .05em;
  color: var(--muted);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--lime); }

/* ── Page wrapper ─────────────────────────────────────────── */
.page { padding-top: var(--nav-h); }
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section spacing ──────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 3.5rem) 0; }

/* ── Typography helpers ───────────────────────────────────── */
.display-xl {
  font-family: var(--font-d);
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: .92;
  letter-spacing: .01em;
}
.display-lg {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .95;
  letter-spacing: .01em;
}
.display-md {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: .02em;
}
.display-sm {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: .03em;
}
.text-lime { color: var(--lime); }
.text-pink { color: var(--pink); }
.text-muted { color: var(--muted); }
.label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: .2rem .65rem;
  border-radius: 99px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  gap: .3rem;
}
.badge-lime { background: var(--lime-dim); color: var(--lime); border: 1px solid rgba(198,255,0,.3); }
.badge-pink { background: var(--pink-dim); color: var(--pink); border: 1px solid rgba(255,45,85,.3); }
.badge-white { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid var(--border-2); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: all .2s;
  white-space: nowrap;
}
.btn-lime {
  background: var(--lime);
  color: #000;
}
.btn-lime:hover {
  background: #d9ff26;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198,255,0,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}
.btn-pink {
  background: var(--pink);
  color: #fff;
}
.btn-pink:hover {
  background: #ff4567;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,45,85,.35);
}
.btn-ghost {
  background: var(--bg-3);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-4);
  border-color: var(--border-2);
}
.btn-sm { padding: .55rem 1.2rem; font-size: .8rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ── Dividers ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ── Scrolling ticker ─────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: .75rem 0;
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: .75rem;
  padding: 0 2rem;
  font-family: var(--font-d);
  font-size: 1rem;
  letter-spacing: .06em;
  white-space: nowrap;
}
.ticker-dot { color: var(--lime); font-size: 1.2rem; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero (Home) ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(198,255,0,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(255,45,85,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,255,0,.5); }
  50% { box-shadow: 0 0 0 8px rgba(198,255,0,0); }
}
.hero-title { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
}
.hero-card-stack .hc {
  position: absolute;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hc-main {
  width: 75%; aspect-ratio: .75;
  top: 10%; left: 12%;
  background: linear-gradient(135deg, #1a2a0a, #0d1a04);
  border: 1px solid rgba(198,255,0,.2);
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 60px rgba(198,255,0,.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem;
}
.hc-main .big-emoji { font-size: 4rem; }
.hc-main .hc-label {
  text-align: center;
  font-family: var(--font-d);
  font-size: 1.2rem;
  letter-spacing: .05em;
}
.hc-main .hc-price {
  font-size: .85rem;
  color: var(--lime);
  font-weight: 700;
}
.hc-float-1 {
  width: 42%; aspect-ratio: 1;
  bottom: 5%; right: 0;
  background: linear-gradient(135deg, #1a0a14, #0d0408);
  border: 1px solid rgba(255,45,85,.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; padding: 1.2rem;
  font-size: 2rem;
  animation: float1 5s ease-in-out infinite;
}
.hc-float-2 {
  width: 35%; aspect-ratio: 1;
  top: 0; right: 10%;
  background: linear-gradient(135deg, #0d1520, #060c14);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; padding: 1rem;
  font-size: 1.8rem;
  animation: float2 6s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}
.hc-small-label {
  font-family: var(--font-d);
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--muted);
}

/* ── USP strip ────────────────────────────────────────────── */
.usp-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.usp-item {
  display: flex; gap: 1rem;
  align-items: flex-start;
}
.usp-icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--lime-dim);
  border: 1px solid rgba(198,255,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.usp-icon.pink { background: var(--pink-dim); border-color: rgba(255,45,85,.2); }
.usp-icon.white { background: rgba(255,255,255,.05); border-color: var(--border-2); }
.usp-text h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.usp-text p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Section headers ──────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.section-head-l .label { margin-bottom: .5rem; }

/* ── Product grid ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.product-visual {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual .big-emoji {
  font-size: 5rem;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.5));
  transition: transform .3s;
}
.product-card:hover .big-emoji { transform: scale(1.1) translateY(-4px); }
.product-visual-glow {
  position: absolute; inset: 0;
  opacity: .5;
  transition: opacity .3s;
}
.product-card:hover .product-visual-glow { opacity: .8; }
.product-badges {
  position: absolute; top: .75rem; left: .75rem;
  display: flex; gap: .4rem; flex-wrap: wrap;
}
.product-ext-link {
  position: absolute; top: .75rem; right: .75rem;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  opacity: 0;
  transition: opacity .2s;
  backdrop-filter: blur(8px);
}
.product-card:hover .product-ext-link { opacity: 1; }
.product-info {
  padding: 1rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: .5rem;
  flex: 1;
}
.product-brand { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.product-name { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.product-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; flex: 1; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .75rem;
}
.product-price {
  font-family: var(--font-d);
  font-size: 1.3rem;
  letter-spacing: .02em;
}
.product-price-unit { font-size: .7rem; color: var(--muted); font-family: var(--font-b); font-weight: 600; }
.add-btn {
  width: 38px; height: 38px;
  border-radius: var(--r);
  background: var(--lime);
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.add-btn:hover { background: #d9ff26; transform: scale(1.1); }
.add-btn:active { transform: scale(.95); }

/* ── Bundle cards ─────────────────────────────────────────── */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.bundle-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  gap: 1.25rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.bundle-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.bundle-card:hover::before { opacity: 1; }
.bundle-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.bundle-emoji { font-size: 2.5rem; }
.bundle-name { font-family: var(--font-d); font-size: 1.5rem; letter-spacing: .03em; }
.bundle-desc { font-size: .83rem; color: var(--muted); line-height: 1.5; }
.bundle-contents {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.bundle-tag {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .2rem .6rem;
  font-size: .72rem;
  color: var(--muted);
}
.bundle-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.bundle-price { font-family: var(--font-d); font-size: 1.6rem; }
.bundle-savings {
  font-size: .72rem;
  color: var(--lime);
  font-weight: 700;
}

/* ── How it works ─────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime) 33%, var(--lime) 66%, var(--lime) 100%);
  opacity: .2;
}
.how-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1rem;
}
.how-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 1.4rem;
  letter-spacing: .05em;
  color: var(--lime);
  position: relative; z-index: 1;
}
.how-emoji { font-size: 1.6rem; }
.how-title { font-size: .95rem; font-weight: 700; }
.how-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ── CTA section ──────────────────────────────────────────── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
}
.cta-text .display-md { margin-bottom: .75rem; }
.cta-text p { color: var(--muted); font-size: .9rem; }
.cta-actions { display: flex; gap: 1rem; flex-direction: column; }

/* ── Shop page ────────────────────────────────────────────── */
.shop-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 2rem;
  border-bottom: 1px solid var(--border);
}
.shop-title-row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.filter-bar {
  display: flex; gap: .5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .45rem 1rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--bg-2);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--border-2); color: var(--white); }
.filter-btn.active {
  background: var(--lime);
  border-color: var(--lime);
  color: #000;
}
.shop-results-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-top: 2rem;
}
.results-count { font-size: .82rem; color: var(--muted); }

/* ── About page ───────────────────────────────────────────── */
.about-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0d1a04, #060606);
  border: 1px solid rgba(198,255,0,.15);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}
.about-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(198,255,0,.08), transparent);
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 1.5rem;
}
.value-card .icon { font-size: 1.5rem; margin-bottom: .75rem; }
.value-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.value-card p { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.story-blocks {
  display: flex; flex-direction: column; gap: 2rem;
  padding: 3rem 0;
}
.story-block {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.5rem; align-items: flex-start;
}
.story-num {
  font-family: var(--font-d);
  font-size: 3rem;
  color: var(--lime);
  opacity: .3;
  line-height: 1;
}
.story-block h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.story-block p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── Events page ──────────────────────────────────────────── */
.events-hero { padding: clamp(3rem, 7vw, 6rem) 0 3rem; }
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .25s, transform .25s;
}
.event-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}
.event-icon { font-size: 2.5rem; }
.event-card h3 { font-size: 1.1rem; font-weight: 700; }
.event-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.event-features {
  display: flex; flex-direction: column; gap: .5rem;
  margin-top: .5rem;
}
.event-feature {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; color: var(--muted);
}
.event-feature::before {
  content: '→';
  color: var(--lime);
  font-weight: 700;
}
.contact-strip {
  background: var(--bg-2);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border);
  margin: 3rem 0;
}
.contact-strip h2 { margin-bottom: 1rem; }
.contact-strip p { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; }
.contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .75rem;
  color: var(--muted);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--lime); background: var(--lime-dim); }

/* ── Cart Drawer ──────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1rem; font-weight: 700; }
.cart-close {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all .2s;
}
.cart-close:hover { border-color: var(--pink); color: var(--pink); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty {
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
}
.cart-empty-icon { font-size: 3rem; }
.cart-empty h4 { font-size: 1rem; font-weight: 700; }
.cart-empty p { font-size: .82rem; color: var(--muted); }
.cart-item {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 1rem; align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-emoji {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.cart-item-name { font-size: .88rem; font-weight: 600; margin-bottom: .2rem; }
.cart-item-brand { font-size: .72rem; color: var(--muted); }
.cart-item-price { font-weight: 700; font-size: .9rem; white-space: nowrap; }
.cart-item-qty {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .4rem;
}
.qty-btn {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all .2s;
}
.qty-btn:hover { border-color: var(--lime); color: var(--lime); }
.qty-val { font-size: .82rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
}
.cart-total-label { font-size: .82rem; color: var(--muted); }
.cart-total-price { font-family: var(--font-d); font-size: 1.6rem; }
.cart-note { font-size: .72rem; color: var(--muted); text-align: center; line-height: 1.5; }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .usp-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 300px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { order: -1; }
  .events-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .shop-title-row { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .bundle-grid { grid-template-columns: 1fr; }
}

/* ── Utility ──────────────────────────────────────────────── */
.hidden { display: none !important; }
