/* ─── Neon Brew · page-specific polish (kit handles the rest) ─── */

.mono-tag { letter-spacing: .18em; }

/* Hero */
.hero.hero--split { position: relative; overflow: hidden; }
.hero-meta { margin-top: 1.5rem; }

.cursor-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(420px circle at var(--gx, 70%) var(--gy, 35%), rgba(155, 92, 255, .16), transparent 60%),
    radial-gradient(680px circle at calc(var(--gx, 70%) + 12%) calc(var(--gy, 35%) + 18%), rgba(242, 193, 78, .07), transparent 65%);
  transition: background .12s linear;
}
.hero .wrap { position: relative; z-index: 1; }

/* Holographic cup stage */
.cup-stage {
  position: relative; min-height: 420px; height: 100%;
  display: grid; place-items: center;
}
.cup-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.holo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(155, 92, 255, .35);
  box-shadow: 0 0 24px rgba(155, 92, 255, .18), inset 0 0 24px rgba(155, 92, 255, .08);
  animation: holoSpin 14s linear infinite;
}
.holo-ring.r1 { width: 62%; aspect-ratio: 1; }
.holo-ring.r2 {
  width: 82%; aspect-ratio: 1; animation-duration: 22s; animation-direction: reverse;
  border-color: rgba(242, 193, 78, .22);
  box-shadow: 0 0 28px rgba(242, 193, 78, .1);
}
.holo-base {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  width: 55%; height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(155, 92, 255, .35), transparent 70%);
  filter: blur(6px);
}
@keyframes holoSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .holo-ring { animation: none; } }

/* Marquee dots */
.mq-dot { color: var(--accent); margin: 0 1.2rem; }

/* Menu */
.menu-head { align-items: end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-pill { cursor: pointer; transition: all .2s ease; background: transparent; }
.filter-pill.is-active { background: var(--accent); color: var(--bg, #0b0712); border-color: var(--accent); }
.menu-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 44px rgba(155, 92, 255, .22), 0 0 0 1px rgba(242, 193, 78, .25); }
.menu-card.is-hidden { display: none; }
.menu-img { aspect-ratio: 4 / 3; overflow: hidden; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .menu-img img { transform: scale(1.06); }
.menu-body { padding: 1.25rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.menu-body h3 { margin: 0; }
.menu-body .muted { flex: 1; }
.price { font-family: var(--font-display); color: var(--accent); font-size: 1.1rem; white-space: nowrap; }
.add-btn { width: 100%; justify-content: center; }

/* Cart */
.cart-btn { position: relative; }
.cart-badge {
  display: inline-grid; place-items: center; min-width: 1.4em; height: 1.4em;
  margin-left: .45em; padding: 0 .3em; border-radius: 999px;
  background: var(--fg); color: var(--accent); font-size: .75em; font-weight: 700;
}
.cart-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5, 3, 10, .6); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
}
.cart-overlay.is-open { opacity: 1; }
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 95;
  width: min(420px, 100vw);
  background: var(--surface); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform .38s cubic-bezier(.22, 1, .36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
}
.cart-panel.is-open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border); }
.cart-head h3 { margin: 0; }
.cart-close { background: none; border: 1px solid var(--border); color: var(--fg); width: 2.2rem; height: 2.2rem; border-radius: 50%; cursor: pointer; transition: all .2s; }
.cart-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; color: var(--muted); padding: 3rem 0; }
.cart-line { display: flex; align-items: center; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-info h4 { margin: 0 0 .15rem; font-size: .95rem; }
.cart-line-info .muted { font-size: .85rem; }
.qty-ctrl { display: flex; align-items: center; gap: .5rem; }
.qty-btn {
  width: 1.7rem; height: 1.7rem; border-radius: 6px; cursor: pointer;
  background: transparent; border: 1px solid var(--border); color: var(--fg);
  font-size: 1rem; line-height: 1; transition: all .15s;
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-num { min-width: 1.4em; text-align: center; font-variant-numeric: tabular-nums; }
.cart-foot { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid var(--border); }
.cart-total-row { font-size: 1.15rem; margin-bottom: 1rem; }
.cart-total-row strong { color: var(--accent); font-family: var(--font-display); }
.cart-checkout { width: 100%; justify-content: center; }

/* Auth / rewards */
.rewards-grid, .book-grid { align-items: center; }
.auth-card, .member-card { padding: 2rem; }
.auth-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.auth-tab {
  background: none; border: none; color: var(--muted); cursor: pointer;
  padding: .6rem 1rem; font-size: 1rem; font-family: var(--font-display);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s;
}
.auth-tab.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.auth-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.form-msg { min-height: 1.4em; margin: .8rem 0 0; font-size: .9rem; }
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: #ff7a7a; }
.volt-meter { height: 10px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; margin: 1.2rem 0 .5rem; }
.volt-fill { display: block; height: 100%; width: 30%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), rgba(155, 92, 255, .9)); box-shadow: 0 0 12px rgba(242, 193, 78, .5); }
.volt-note { font-size: .9rem; }

/* Booking */
.book-media img { width: 100%; height: 100%; object-fit: cover; }
.book-media { min-height: 420px; }
.form-pair { gap: 1rem; }
.book-form .btn { margin-top: .4rem; }

/* Gallery */
.gallery-grid .media { aspect-ratio: 4 / 3; overflow: hidden; }
.gallery-grid .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid .media:hover img { transform: scale(1.05); }

/* Testimonials */
.quote-card { position: relative; padding-top: 2.6rem; }
.quote-mark {
  position: absolute; top: .4rem; left: 1.2rem; margin: 0;
  font-family: var(--font-display); font-size: 3.2rem; line-height: 1;
  color: var(--accent); opacity: .55;
}
.quote-by { margin-top: 1rem; }

/* Visit */
.visit-card h3 { margin: .8rem 0 .5rem; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 1.6rem; z-index: 120;
  transform: translate(-50%, 140%);
  background: var(--surface); border: 1px solid var(--accent); color: var(--fg);
  padding: .8rem 1.4rem; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5), 0 0 18px rgba(242, 193, 78, .2);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none; max-width: min(90vw, 420px); text-align: center;
}
.toast.is-show { transform: translate(-50%, 0); }

@media (max-width: 720px) {
  .cup-stage { min-height: 300px; }
  .book-media { min-height: 260px; }
}
