/* ─────────────────────────────────────────────────────────────────────────────
   Cherry Bomb — style.css
   Aligned with Marcelo Protocol & Brand Style Guide (Retro-Glam Diner)
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Tokens ─────────────────────────────────────────────────────────────────── */
:root {
  /* Brand Colors — pushed toward the vibrant neon + red in the reference photo */
  --cb-hot-pink:   #FF2A9D;
  --cb-deep-pink:  #D4006F;
  --cb-cherry-red: #C8002C;
  --cb-black:      #050507;
  --cb-dark:       #0d0d12;
  --cb-cream:      #FFF0F5;
  --cb-gold:       #FFD700;
  
  /* HSL Shadow Tokens for Depth */
  --cb-nav-shadow: 0 10px 40px hsl(330, 100%, 5%, 0.5);
  --cb-glow-pink:  0 0 20px hsla(330, 100%, 55%, 0.4);
  --cb-glow-heavy: 0 0 40px hsla(330, 100%, 55%, 0.6);
  
  /* Typography & Readability Tokens (added for hot pink contrast fixes) */
  --cb-hot-pink-readable: #FF5AA8; /* Slightly lighter / higher luminance for small text */
  --text-glow-pink-medium: 0 0 6px rgba(255, 28, 142, 0.65), 0 0 16px rgba(255, 28, 142, 0.45);
  --text-glow-pink-strong:  0 0 8px rgba(255, 28, 142, 0.75), 0 0 22px rgba(255, 28, 142, 0.55), 0 0 36px rgba(255, 28, 142, 0.35);
  --text-glow-pink-subtle:  0 0 4px rgba(255, 28, 142, 0.5);
  
  /* Typography */
  --font-lobster: 'Lobster', cursive;
  --font-anton:   'Anton', sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Marcelo Protocol Spacing */
  --desktop-margin: 60px;
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cb-black);
  color: var(--cb-cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Grain overlay ───────────────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9500;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ── Custom Cursor ───────────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 42px;
  height: 42px;
  border: 2px solid var(--cb-hot-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 30000;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 10px rgba(255, 28, 142, 0.3), 0 0 15px rgba(255, 28, 142, 0.2);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s,
              background 0.3s,
              opacity 0.3s;
  will-change: transform;
  opacity: 0;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 30001;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--cb-hot-pink);
  will-change: transform;
  opacity: 0;
}

.cursor.is-hovered {
  width: 70px;
  height: 70px;
  background: rgba(255, 28, 142, 0.15);
  border-color: var(--cb-hot-pink);
  box-shadow: 0 0 20px var(--cb-hot-pink);
}

/* ── Marcelo Protocol: Container & Framing ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--desktop-margin);
}

.frame-outer {
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 40px;
  border: 1px solid rgba(255, 28, 142, 0.1);
  margin-bottom: 40px;
}

.frame-inner {
  padding: 60px;
  background: var(--cb-dark);
  border-radius: 32px;
  border: 1px solid rgba(255, 28, 142, 0.2);
  position: relative;
  overflow: hidden;

  /* Very subtle elegant checkered texture — inspired by the reference photo */
  background-image: 
    linear-gradient(45deg, rgba(255,42,157,0.018) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,42,157,0.018) 25%, transparent 25%);
  background-size: 80px 80px;
}

/* Menu frame styled like the bar in the reference photo */
.menu-section .frame-inner {
  padding: 32px 24px;
  overflow: visible;
  border: 1px solid rgba(255, 28, 142, 0.35);
  box-shadow: 
    0 0 40px rgba(255, 28, 142, 0.15),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
  background: 
    linear-gradient(rgba(5, 5, 7, 0.82), rgba(5, 5, 7, 0.88)),
    url('../images/705663487_10244637581863764_5303966795123332250_n.jpg') center/cover;
  background-blend-mode: multiply;

  /* Very light elegant checkered overlay — adds retro bar texture without noise */
  background-image: 
    linear-gradient(rgba(5, 5, 7, 0.82), rgba(5, 5, 7, 0.88)),
    url('../images/705663487_10244637581863764_5303966795123332250_n.jpg') center/cover,
    linear-gradient(45deg, rgba(255,42,157,0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,42,157,0.025) 25%, transparent 25%);
  background-size: 100% 100%, cover, 70px 70px, 70px 70px;
  background-blend-mode: multiply, multiply, normal, normal;
}

/* Stronger retro checkered + neon energy in the menu section (directly referencing the photo) */
.menu-section .frame-inner .cb-checker-bg {
  background-image:
    linear-gradient(45deg, rgba(255,28,142,.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,28,142,.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,28,142,.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,28,142,.12) 75%);
  background-size: 42px 42px;
  opacity: 1;
}

/* Make the menu header feel more like the bold signage in the reference photo */
.menu-section .section-header {
  position: relative;
}

.menu-section .section-title {
  text-shadow: 
    0 0 25px rgba(255, 28, 142, 0.7),
    0 0 50px rgba(200, 0, 44, 0.4),
    0 3px 0 rgba(0,0,0,0.6);
  letter-spacing: 0.01em;
}

/* ── Brand Elements ──────────────────────────────────────────────────────────── */

.cb-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cb-logo-text {
  font-family: var(--font-lobster);
  font-size: 2rem;
  color: var(--cb-hot-pink);
  /* Strong layered glow + subtle depth shadow for legibility on dark cards (especially 1.5rem vibe titles) */
  text-shadow: var(--text-glow-pink-strong), 0 1px 3px rgba(0, 0, 0, 0.65);
}

.cb-tagline {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--cb-cream);
  opacity: 0.8;
}

.cb-checker-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,28,142,.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,28,142,.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,28,142,.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,28,142,.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0;
  pointer-events: none;
  z-index: -1;
}

.cb-sparkle {
  position: absolute;
  background: var(--cb-gold);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px var(--cb-gold);
}

.cb-neon-text {
  animation: neon-flicker 3s linear infinite;
}

/* ── Elegant Retro Light-Up Signage ────────────────────────────────────────────
   Refined, high-end illuminated signage treatment.
   Inspired by real neon and backlit marquee lettering.
   Keep this restrained — elegant disco energy, not over-the-top.
*/
.retro-sign {
  font-family: var(--font-lobster);
  color: var(--cb-hot-pink);
  text-shadow:
    0 0 8px rgba(255, 42, 157, 0.6),
    0 0 18px rgba(255, 42, 157, 0.45),
    0 0 35px rgba(255, 42, 157, 0.3),
    0 0 55px rgba(200, 0, 44, 0.25);
  letter-spacing: 0.02em;
}

/* Slightly stronger version for major headlines */
.retro-sign-strong {
  font-family: var(--font-lobster);
  color: var(--cb-hot-pink);
  text-shadow:
    0 0 12px rgba(255, 42, 157, 0.75),
    0 0 25px rgba(255, 42, 157, 0.55),
    0 0 45px rgba(255, 42, 157, 0.35),
    0 0 70px rgba(200, 0, 44, 0.3);
  letter-spacing: 0.015em;
}

/* ── Illuminated Neon Signs (PNG assets) ───────────────────────────────────────
   Elegant, restrained treatment for the real retro neon sign images.
   Makes them feel like actual backlit/illuminated signage rather than flat graphics.
   Keep usage sparse — one hero moment + one supporting moment max per view.
*/
.neon-sign {
  display: block;
  max-width: 100%;
  height: auto;
  filter: 
    drop-shadow(0 0 8px rgba(255, 42, 157, 0.45))
    drop-shadow(0 0 22px rgba(255, 42, 157, 0.35))
    drop-shadow(0 0 45px rgba(200, 0, 44, 0.25));
  transition: transform 0.4s var(--ease-out-expo), filter 0.4s var(--ease-out-expo);
  will-change: transform;
}

.neon-sign:hover {
  transform: translateY(-2px);
  filter: 
    drop-shadow(0 0 10px rgba(255, 42, 157, 0.55))
    drop-shadow(0 0 30px rgba(255, 42, 157, 0.4))
    drop-shadow(0 0 60px rgba(200, 0, 44, 0.3));
}

/* Slightly stronger glow variant for hero / primary moments */
.neon-sign-hero {
  max-height: 138px;
  margin: 28px auto 0;
  filter: 
    drop-shadow(0 0 12px rgba(255, 42, 157, 0.55))
    drop-shadow(0 0 32px rgba(255, 42, 157, 0.4))
    drop-shadow(0 0 65px rgba(200, 0, 44, 0.28));
}

/* Very subtle living neon pulse for the primary hero sign only — feels real without being distracting */
.neon-sign-hero.living {
  animation: neon-gentle-pulse 4.2s ease-in-out infinite;
}

@keyframes neon-gentle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.92; }
}

@media (prefers-reduced-motion: reduce) {
  .neon-sign-hero.living {
    animation: none;
  }
}

@media (max-width: 768px) {
  .neon-sign-hero {
    max-height: 92px;
    margin-top: 18px;
  }
}

/* Softer, smaller accent version for supporting placements */
.neon-sign-accent {
  max-height: 86px;
  margin: 12px 0;
  opacity: 0.96;
}

@media (max-width: 768px) {
  .neon-sign-accent {
    max-height: 64px;
  }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px var(--cb-hot-pink),
      0 0 80px var(--cb-hot-pink),
      0 0 90px var(--cb-hot-pink),
      0 0 100px var(--cb-hot-pink),
      0 0 150px var(--cb-hot-pink);
  }
  20%, 22%, 24%, 55% {
    text-shadow: none;
  }
}

/* ── Buttons (Marcelo Protocol Enhanced) ─────────────────────────────────────── */
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  border-radius: 12px;
  font-family: var(--font-anton);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cb-hot-pink), var(--cb-deep-pink));
  color: #fff;
  border: none;
  box-shadow: var(--cb-glow-pink);
  transition: all 0.4s var(--ease-out-expo);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.cb-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--cb-glow-heavy);
  letter-spacing: 0.1em;
}

.cb-btn-outline {
  background: transparent;
  border: 2px solid var(--cb-hot-pink);
  color: var(--cb-hot-pink);
}

.cb-btn-outline:hover {
  background: var(--cb-hot-pink);
  color: #fff;
}

/* ── Cards (Marcelo Protocol Enhanced) ───────────────────────────────────────── */
.cb-card {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.9), rgba(10, 10, 15, 0.95));
  border: 1px solid rgba(255, 28, 142, 0.15);
  border-radius: 28px;
  padding: 2rem; /* slightly tighter for better card visibility in grid */
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
  min-width: 0;
}

.cb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cb-hot-pink), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.cb-card:hover::before { opacity: 1; }

.cb-card:hover {
  border-color: rgba(255, 28, 142, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 28, 142, 0.1);
}

.card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 28, 142, 0.15), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.cb-card:hover .card-glow { opacity: 1; }

/* ── Divider ────────────────────────────────────────────────────────────────── */
.cb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-block: 80px;
}

.cb-divider::before,
.cb-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cb-hot-pink), transparent);
}

.cb-divider-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px var(--cb-hot-pink));
}

/* ── Navigation ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--desktop-margin) * 2);
  max-width: 1320px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(13, 13, 18, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  border: 1.5px solid rgba(255, 28, 142, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 28, 142, 0.15);
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  top: 15px;
  background: rgba(13, 13, 18, 0.95);
  padding: 0.7rem 2.5rem;
  border-color: rgba(255, 28, 142, 0.65);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 28, 142, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  height: 44px;
  width: 44px;
  filter: drop-shadow(0 0 8px rgba(255, 28, 142, 0.4));
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-logo:hover .nav-logo-img {
  transform: rotate(12deg) scale(1.08);
}

.nav-links {
  display: flex;
  gap: 3.5rem;
}

.nav-links a {
  font-family: var(--font-anton);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.nav-links a:hover {
  color: var(--cb-hot-pink);
  text-shadow: 0 0 12px var(--cb-hot-pink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--cb-cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
}

/* Open states for burger lines */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--cb-hot-pink);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--cb-hot-pink);
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  /* Using the new reference photo for stronger bar energy */
  background-image: 
    linear-gradient(to bottom, rgba(5, 5, 7, 0.48) 0%, rgba(5, 5, 7, 0.78) 50%, rgba(5, 5, 7, 0.9) 100%),
    url('../images/705663487_10244637581863764_5303966795123332250_n.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: 1;
  pointer-events: none;
  z-index: -2;
  filter: contrast(1.1) saturate(1.2);
}

#hero-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen; /* Blend particle canvas over image */
}

/* Subtle checkered texture overlay on hero to tie into the reference photo's bar vibe */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,42,157,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,42,157,0.04) 25%, transparent 25%);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.hero-content {
  z-index: 10;
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-lobster);
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.9;
  color: var(--cb-hot-pink);
  /* Even stronger retro signage energy to match the bold lettering in the reference photo */
  text-shadow: 
    0 0 20px rgba(255, 42, 157, 0.85),
    0 0 45px rgba(255, 42, 157, 0.6),
    0 0 80px rgba(200, 0, 44, 0.45),
    4px 5px 0px var(--cb-cherry-red),
    -1px -1px 0px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: var(--font-anton);
  font-size: clamp(1.2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 4rem;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.hero-actions {
  display: flex; gap: 20px; justify-content: center;
}

/* ── Marquee ─────────────────────────────────────────────────────────────────── */
.marquee {
  background: var(--cb-black);
  border-block: 1px solid rgba(255, 28, 142, 0.15);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 8rem;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
}

.marquee-track span {
  font-family: var(--font-anton);
  font-size: clamp(2rem, 5vw, 4rem);
  /* Bolder, more signage-like presence to match the photo */
  color: rgba(255, 255, 255, 0.08);
  -webkit-text-stroke: 2.2px rgba(255, 42, 157, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(255, 42, 157, 0.35);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ────────────────────────────────────────────────────────────────── */
.section {
  padding-block: clamp(80px, 10vw, 120px);
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-anton);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cb-hot-pink);
  text-shadow: var(--text-glow-pink-medium);
  margin-bottom: 1rem;
  display: block;
}

/* Hero / critical eyebrows that need maximum pop */
.eyebrow-strong {
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  /* More bold retro signage energy like the photo */
  text-shadow: 
    0 0 12px rgba(255, 42, 157, 0.9),
    0 0 28px rgba(255, 42, 157, 0.6),
    0 0 45px rgba(200, 0, 44, 0.4);
}

.section-title {
  font-family: var(--font-anton);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  /* Bolder retro signage energy like the lettering in the reference photo */
  text-shadow: 
    0 0 20px rgba(255, 42, 157, 0.6),
    0 0 40px rgba(200, 0, 44, 0.3);
}

/* ── Drinks Grid — All 3 cards always visible ──────────────────────────────── */
.drinks-grid {
  display: grid;
  /* Desktop: 3 columns so you can see everything at once */
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 18px;
  width: 100%;
}

/* Tablet and mobile: horizontal scroll so you can still see all 3 cards */
@media (max-width: 900px) {
  .drinks-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .drinks-grid .cb-card {
    scroll-snap-align: start;
  }
}

/* Drink cards styled like the real beautiful drinks on the bar in the reference photo */
.drinks-grid .cb-card {
  padding: 0.85rem;
  background: linear-gradient(145deg, rgba(22, 14, 22, 0.97), rgba(12, 9, 16, 0.98));
  border: 1px solid rgba(255, 42, 157, 0.28);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

/* Drink cards even closer to the beautiful, real drinks on the bar in the reference photo */
.drinks-grid .card-photo-wrap {
  border: 6px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    inset 0 0 60px rgba(0,0,0,0.8), 
    0 10px 30px rgba(0,0,0,0.6),
    0 0 25px rgba(255, 42, 157, 0.25);
  position: relative;
  overflow: hidden;
}

/* Cup rim + highlight treatment to evoke the custom pink cups in the photo */
.drinks-grid .card-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}

.drinks-grid .card-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.2);
  pointer-events: none;
}

/* ── Vibe Section ────────────────────────────────────────────────────────────── */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vibe-grid .cb-card {
  transition: all 0.5s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 28, 142, 0.2);
  background: linear-gradient(145deg, rgba(22, 14, 22, 0.96), rgba(12, 9, 16, 0.98));
}

.vibe-grid .cb-card:hover {
  border-color: rgba(255, 28, 142, 0.55);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.65), 
    0 0 50px rgba(255, 28, 142, 0.35);
  background: linear-gradient(145deg, rgba(28, 18, 30, 0.97), rgba(16, 12, 22, 0.99));
}

.vibe-grid .cb-card:hover .cb-logo-text {
  text-shadow: 
    0 0 10px #fff,
    0 0 20px var(--cb-hot-pink),
    0 0 35px var(--cb-hot-pink);
  transform: translateZ(25px);
}

.vibe-grid .cb-card:hover .vibe-emoji {
  transform: scale(1.2) translateZ(35px) !important;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 15s linear infinite;
}


/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --desktop-margin: 40px; }
  /* Keep trying to show as many drink cards as possible */
  .drinks-grid { 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  }
}

@media (max-width: 768px) {
  :root { --desktop-margin: 20px; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  
  .nav { width: calc(100% - 40px); padding: 1.2rem 2rem; }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 28, 142, 0.2);
    border-radius: 24px;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }
  
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .hero-title { font-size: 6rem; }
  .hero-sub { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  
  /* Don't collapse drink cards to single column until extremely narrow */
  .drinks-grid { 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  }
  .menu-section .frame-inner { 
    padding: 32px 20px; 
  }
  
  .section { padding-block: 80px; }
}

/* Utility */
.neon-pink { color: var(--cb-hot-pink); text-shadow: 0 0 15px var(--cb-hot-pink); }
.text-gold { color: var(--cb-gold); }

/* GSAP Reveal */
/* Set dynamically in JS to prevent blank pages when scripts are blocked */

/* ── Additional Brand Classes ───────────────────────────────────────────────── */
.card-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

/* Ensure any large graphics/logos inside drink cards don't blow out the grid */
.drinks-grid .cb-card img,
.drinks-grid .cb-card > div[style*="font-size: 5rem"] {
  max-width: 100%;
  height: auto;
  display: block;
}

/* General tags */
.tag {
  font-family: var(--font-anton);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 6px;
  background: rgba(255, 28, 142, 0.16);
  border: 1px solid var(--cb-hot-pink);
  color: var(--cb-hot-pink-readable);
  text-shadow: var(--text-glow-pink-subtle);
}

/* Drinks menu tags — bolder retro signage style matching the reference photo */
.drinks-grid .tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  background: rgba(255, 28, 142, 0.2);
  box-shadow: 0 0 10px rgba(255, 28, 142, 0.35);
  border-color: rgba(255, 28, 142, 0.6);
}

/* Retro bar treatment for the "Join The Drop" section to match the reference photo */
.community-inner {
  background: 
    linear-gradient(145deg, rgba(22, 14, 22, 0.96), rgba(12, 9, 16, 0.98)),
    repeating-linear-gradient(45deg, rgba(255,42,157,0.05) 0px, rgba(255,42,157,0.05) 2px, transparent 2px, transparent 10px);
  border-color: rgba(255, 42, 157, 0.35);
  box-shadow: 0 0 60px rgba(255, 42, 157, 0.15);
}

/* ── Drink Customizer Styles — more like mixing at the bar in the reference photo */
.customizer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.customizer-section .frame-inner {
  background: linear-gradient(145deg, rgba(18, 12, 22, 0.97), rgba(10, 8, 16, 0.98));
  border-color: rgba(255, 28, 142, 0.32);
  box-shadow: 0 0 50px rgba(255, 28, 142, 0.12);
  /* More bar-counter texture like the reference photo */
  background-image: 
    linear-gradient(145deg, rgba(18, 12, 22, 0.97), rgba(10, 8, 16, 0.98)),
    repeating-linear-gradient(45deg, rgba(255,28,142,0.03) 0px, rgba(255,28,142,0.03) 2px, transparent 2px, transparent 8px);
}

.preview-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 580px;
}

/* ── 3D Cup Scene ─────────────────────────────────────────────────────────── */
.cup-3d-scene {
  position: relative;
  width: 380px;
  height: 540px;
  flex-shrink: 0;
  /* Studio-light backdrop: warm centre glow + left key-light so dark liquid
     creates visible contrast through the transparent cup body */
  background:
    radial-gradient(ellipse 55% 60% at 50% 62%, rgba(255,220,170,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 18% 45% at 12% 52%, rgba(255,255,255,0.06) 0%, transparent 55%);
}

.cup-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,28,142,0.35) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
  transition: background 1.2s ease;
}

#cup-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
  opacity: 0.58;
  mix-blend-mode: normal;
}

.cup-3d-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  z-index: 2;
}

/* Option Controls */
.control-group {
  position: relative;
  border: 2px solid rgba(255, 28, 142, 0.4);
  border-radius: 20px;
  padding: 1.8rem 2rem 1.4rem;
  margin-bottom: 2.8rem;
  background: rgba(13, 13, 18, 0.5);
  box-shadow: 0 0 15px rgba(255, 28, 142, 0.15), inset 0 0 10px rgba(255, 28, 142, 0.05);
}

.control-group h3 {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #0d0d12; /* Matches the diner backing panel */
  padding-inline: 10px;
  font-family: var(--font-anton);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cb-cream);
  text-shadow: 0 0 8px rgba(255, 28, 142, 0.2);
}

.option-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.option-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-anton);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #0d0d12;
  border: 1.5px solid rgba(255, 28, 142, 0.45);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.6);
}

.option-btn:hover {
  border-color: var(--cb-hot-pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 28, 142, 0.3);
}

.option-btn.active {
  background: rgba(255, 28, 142, 0.15);
  border-color: var(--cb-hot-pink);
  color: #fff;
  border-width: 2px;
  box-shadow: 0 0 18px var(--cb-hot-pink), inset 0 0 8px rgba(255, 28, 142, 0.6);
}

/* Customizer Summary */
.customizer-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  background: #050507;
  border: 3px solid var(--cb-hot-pink);
  border-radius: 28px;
  margin-top: 3.5rem;
  gap: 20px;
  box-shadow: 0 0 25px rgba(255, 28, 142, 0.5), inset 0 0 15px rgba(255, 28, 142, 0.1);
  position: relative;
}

.summary-details {
  display: flex;
  flex-direction: column;
}

.drink-name-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cursive-name {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--cb-hot-pink-readable);
  text-shadow: var(--text-glow-pink-strong);
  line-height: 1.1;
}

.cherry-icon-inline {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(200, 0, 44, 0.6));
}

.sub-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.price-tag {
  font-family: var(--font-anton);
  font-size: 2.5rem;
  color: var(--cb-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  line-height: 1;
}

.drop-btn {
  background: linear-gradient(135deg, var(--cb-hot-pink), var(--cb-deep-pink));
  border: 2px solid var(--cb-hot-pink);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-anton);
  font-size: 1.1rem;
  padding: 0.8rem 2.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 20px rgba(255, 28, 142, 0.7);
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.drop-btn:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 28, 142, 0.9);
}

/* Responsive Customizer */
@media (max-width: 992px) {
  .customizer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .preview-panel {
    height: auto;
    min-height: 300px;
  }
  .cup-3d-scene {
    width: 280px;
    height: 400px;
  }
}

@media (max-width: 576px) {
  .cup-3d-scene {
    width: 240px;
    height: 340px;
  }
}

@media (max-width: 576px) {
  .customizer-summary {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem;
  }
  .summary-action {
    justify-content: space-between;
    margin-top: 1rem;
  }
}

/* ── Footer Styles ───────────────────────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-family: var(--font-anton);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cb-hot-pink);
  text-shadow: 0 0 10px rgba(255, 28, 142, 0.2);
  margin-bottom: 1.8rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 48px;
  width: 48px;
  filter: drop-shadow(0 0 6px rgba(255, 28, 142, 0.3));
}

.brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 320px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 28, 142, 0.3);
  font-family: var(--font-anton);
  font-size: 0.75rem;
  color: var(--cb-hot-pink);
  transition: all 0.3s var(--ease-out-expo);
}

.social-icon:hover {
  background: var(--cb-hot-pink);
  color: #fff;
  border-color: var(--cb-hot-pink);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 28, 142, 0.4);
}

.social-icon-disabled {
  opacity: 0.45;
  cursor: default;
}

.social-icon-disabled:hover {
  background: transparent;
  color: var(--cb-hot-pink);
  border-color: rgba(255, 28, 142, 0.3);
  transform: none;
  box-shadow: none;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.footer-col ul a:hover {
  color: var(--cb-hot-pink);
  padding-left: 5px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.hours-list .day {
  font-weight: 600;
  color: var(--cb-cream);
}

.drive-thru-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--font-anton);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--cb-gold);
  color: var(--cb-gold);
  border-radius: 6px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}

.contact-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 28, 142, 0.2);
  padding-top: 2rem;
  margin-top: 3rem;
  /* Subtle retro texture to match the bar vibe */
  background: linear-gradient(90deg, transparent, rgba(255,28,142,0.03), transparent);
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.credits {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ── Drop It Modal ───────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Match the main site's luxurious dark + subtle texture inside the modal */
.modal-inner {
  background: var(--cb-black);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* Subtle retro checkerboard texture inside modal to match the rest of the site */
.modal-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,42,157,0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,42,157,0.035) 25%, transparent 25%);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* Ensure custom cursor works cleanly over form fields in the modal */
.modal input,
.modal button {
  cursor: none;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
  animation: modal-pop 0.4s var(--ease-out-expo);
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-inner {
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cb-cream);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-drink-name {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--cb-hot-pink);
  text-shadow: var(--text-glow-pink-strong);
  margin: 0.25rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-recipe {
  font-family: var(--font-anton);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.modal-price {
  font-family: var(--font-anton);
  font-size: 2rem;
  color: var(--cb-gold);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.modal-body {
  text-align: center;
}

.modal-lead {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-copy-btn {
  font-size: 0.95rem;
  padding: 1rem 2rem;
}

.modal-form {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255, 28, 142, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-row input {
  flex: 1;
  background: rgba(13, 13, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cb-cream);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.form-row input:focus {
  border-color: var(--cb-hot-pink);
  box-shadow: 0 0 0 3px rgba(255, 28, 142, 0.15);
  outline: none;
}

.form-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}

.modal-fb-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
}

.modal-success {
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px var(--cb-hot-pink));
}

.modal-success h3 {
  font-family: var(--font-lobster);
  font-size: 2.1rem;
  color: var(--cb-hot-pink);
  margin-bottom: 0.5rem;
}

.modal-success p {
  color: rgba(255,255,255,0.7);
  max-width: 280px;
  margin: 0 auto 1.5rem;
}

.modal-done-btn {
  font-size: 0.95rem;
}

/* Modal responsive */
@media (max-width: 520px) {
  .modal {
    padding: 1rem;
  }
  .modal-inner {
    padding: 2.25rem 1.5rem 1.75rem;
  }
  .form-row {
    flex-direction: column;
  }
}

/* ── Accessibility & Reduced Motion ──────────────────────────────────────────── */

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  /* Disable the fancy custom cursor entirely */
  .cursor,
  .cursor-dot,
  .cursor-sparkle,
  .cb-sparkle {
    display: none !important;
  }

  /* Restore native cursor for everyone */
  body,
  a,
  button,
  .cb-btn,
  input,
  textarea,
  select {
    cursor: auto !important;
  }

  /* Tone down heavy transitions and animations */
  *,
  *::before,
  *::after {
    transition-duration: 0.1s !important;
    animation-duration: 0.1s !important;
    animation-iteration-count: 1 !important;
  }

  /* Keep the hero canvas but reduce its impact (JS will also react) */
  #hero-canvas {
    opacity: 0.6;
  }
}

/* High-quality focus styles that match the brand */
:focus-visible {
  outline: 2px solid var(--cb-hot-pink);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(255, 28, 142, 0.15);
  border-radius: 8px;
}

/* Make focus rings feel intentional on key interactive elements */
a:focus-visible,
button:focus-visible,
.cb-btn:focus-visible,
.nav-links a:focus-visible,
.social-icon:focus-visible,
.option-btn:focus-visible {
  outline: 2px solid var(--cb-hot-pink);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(255, 28, 142, 0.2), 0 0 20px rgba(255, 28, 142, 0.3);
}

.cb-card:focus-visible {
  outline: 2px solid var(--cb-gold);
  outline-offset: 6px;
  box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.12);
}

/* Remove default focus ring when using mouse (but keep for keyboard) */
:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* ── Floating Cassette Player Drawer ─────────────────────────────────────────── */
.retro-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 280px;
  background: rgba(15, 12, 18, 0.95);
  border: 2px solid var(--cb-hot-pink);
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 28, 142, 0.25),
    inset 0 0 10px rgba(255, 28, 142, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left-width: 6px;
}

.retro-player.collapsed {
  transform: translateY(calc(100% - 46px));
}

.retro-player.collapsed .toggle-arrow {
  transform: rotate(0deg);
}

.retro-player .toggle-arrow {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
  font-size: 0.65rem;
}

.drawer-toggle {
  width: 100%;
  padding: 12px 18px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--cb-cream);
  font-family: var(--font-anton);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 28, 142, 0.2);
  text-align: left;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cb-gold);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px var(--cb-gold);
  animation: pulse-green 1.5s infinite;
  display: inline-block;
}

.retro-player.playing .pulse-dot {
  background: #00ff66;
  box-shadow: 0 0 8px #00ff66;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.drawer-content {
  padding: 12px 18px;
  background: #0d0b0f;
}

.player-cassette-wrap {
  width: 44px;
  height: 28px;
  background: #251d2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
}

.cassette-wheel {
  font-size: 10px;
  color: var(--cb-gold);
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: none;
  transform-origin: center;
  display: inline-block;
  user-select: none;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.player-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  width: 35px;
}

.vis-bar {
  width: 4px;
  height: 4px;
  background: var(--cb-hot-pink);
  border-radius: 1px;
  transition: height 0.15s ease;
}

.retro-player.playing .left-wheel,
.retro-player.playing .right-wheel {
  animation-name: spin;
}

.retro-player.playing .vis-bar {
  animation: vis-bounce 1.2s ease-in-out infinite alternate;
}

.retro-player.playing .vis-bar:nth-child(1) { animation-duration: 0.8s; background-color: var(--cb-hot-pink); }
.retro-player.playing .vis-bar:nth-child(2) { animation-duration: 1.1s; background-color: #ff52a2; }
.retro-player.playing .vis-bar:nth-child(3) { animation-duration: 0.7s; background-color: var(--cb-gold); }
.retro-player.playing .vis-bar:nth-child(4) { animation-duration: 0.9s; background-color: #ff52a2; }
.retro-player.playing .vis-bar:nth-child(5) { animation-duration: 1.3s; background-color: var(--cb-hot-pink); }

@keyframes vis-bounce {
  0% { height: 3px; }
  100% { height: 18px; }
}

.player-control-btn {
  background: var(--cb-hot-pink);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 10px rgba(255, 28, 142, 0.4);
}

.player-control-btn:hover {
  background: var(--cb-gold);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  transform: scale(1.1);
}

/* Hover effects */
.retro-player:hover {
  border-color: var(--cb-gold);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(255, 215, 0, 0.35);
}

/* Mobile positioning spacing */
@media (max-width: 600px) {
  .retro-player {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}

/* ── Full Responsive Hardening ──────────────────────────────────────────────── */
html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
}

.nav,
.frame-outer,
.frame-inner,
.cb-card,
.customizer-summary,
.modal-content,
.retro-player {
  max-width: 100%;
}

.hero-content,
.section-header,
.footer-col,
.summary-details,
.modal-inner,
.drink-info {
  min-width: 0;
}

.hero-title,
.section-title,
.cb-logo-text,
.cursive-name,
.modal-drink-name,
.nav-links a,
.cb-btn,
.option-btn,
.drawer-toggle,
.customize-btn {
  overflow-wrap: anywhere;
}

.hero-title {
  font-size: 10rem;
}

.hero-sub {
  font-size: 2.2rem;
}

.section-title {
  font-size: 5rem;
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }

  #hero-canvas {
    height: 100dvh;
  }
}

@media (max-width: 1320px) {
  .nav {
    padding-inline: 2rem;
  }

  .nav-links {
    gap: 2rem;
  }

  .hero-title {
    font-size: 8.5rem;
  }

  .section-title {
    font-size: 4.5rem;
  }

  .frame-inner {
    padding: 48px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  :root {
    --desktop-margin: 32px;
  }

  .nav {
    top: 20px;
    width: calc(100% - 48px);
  }

  .hero {
    min-height: 720px;
    padding: 120px 0 70px;
  }

  .hero-content {
    width: min(100%, 760px);
    padding-inline: 24px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .hero-sub {
    font-size: 1.75rem;
    letter-spacing: 0.14em;
    margin-bottom: 2.5rem;
  }

  .section {
    padding-block: 86px;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .frame-outer {
    border-radius: 28px;
  }

  .frame-inner {
    padding: 38px;
    border-radius: 24px;
  }

  .menu-section .frame-inner,
  .customizer-section .frame-inner {
    padding: 30px;
  }

  .customizer-grid {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    top: 14px;
    width: calc(100% - 28px);
    padding: 0.85rem 1rem;
    border-radius: 24px;
  }

  .nav.scrolled {
    top: 10px;
    padding: 0.75rem 1rem;
  }

  .nav-logo {
    gap: 10px;
    max-width: calc(100% - 44px);
  }

  .nav-logo-img {
    width: 38px;
    height: 38px;
  }

  .nav-logo .cb-logo-text {
    font-size: 1.55rem;
    line-height: 1;
  }

  .nav-links {
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
  }

  .hero {
    min-height: 680px;
    height: auto;
    padding: 122px 0 58px;
  }

  .hero-bg-image {
    background-position: center top;
  }

  .hero-title {
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
  }

  .eyebrow,
  .eyebrow-strong {
    letter-spacing: 0.14em;
  }

  .neon-sign-hero {
    max-height: 76px;
    margin-top: 18px;
  }

  .marquee {
    padding: 1.25rem 0;
  }

  .marquee-track {
    gap: 4rem;
  }

  .marquee-track span {
    font-size: 2.2rem;
  }

  .section {
    padding-block: 70px;
  }

  .section-title {
    font-size: 3.4rem;
  }

  .frame-inner {
    padding: 28px;
  }

  .drinks-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
  }

  .drinks-grid .cb-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .customizer-grid {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    height: auto;
    min-height: 0;
  }

  .cup-3d-scene {
    width: min(280px, 76vw);
    height: min(400px, 108vw);
  }

  .option-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-btn {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 0.75rem;
    white-space: normal;
  }

  .customizer-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 1.25rem;
  }

  .drop-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-desc {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --desktop-margin: 16px;
  }

  .container {
    padding-inline: 16px;
  }

  .cb-logo-text {
    font-size: 1.65rem;
  }

  .cb-btn {
    width: 100%;
    min-height: 46px;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .hero {
    min-height: 640px;
    padding-top: 112px;
  }

  .hero-content {
    padding-inline: 16px;
  }

  .hero-title {
    font-size: 4.2rem;
  }

  .hero-sub {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }

  .hero-actions {
    max-width: 340px;
    gap: 12px;
  }

  .neon-sign-hero {
    max-height: 58px;
  }

  .section {
    padding-block: 58px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 2.65rem;
  }

  .frame-outer {
    padding: 6px;
    border-radius: 18px;
    margin-bottom: 26px;
  }

  .frame-inner,
  .menu-section .frame-inner,
  .customizer-section .frame-inner {
    padding: 20px;
    border-radius: 14px;
  }

  .cb-card {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .card-photo-wrap {
    border-radius: 14px;
    margin-bottom: 1rem;
  }

  .control-group {
    padding: 1.4rem 1rem 1rem;
    margin-bottom: 2rem;
    border-radius: 14px;
  }

  .control-group h3 {
    left: 12px;
    max-width: calc(100% - 24px);
    font-size: 0.82rem;
    white-space: normal;
  }

  .customizer-summary {
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 18px;
    margin-top: 2rem;
  }

  .summary-details,
  .drink-name-wrap {
    align-items: center;
    justify-content: center;
  }

  .cursive-name {
    font-size: 1.65rem;
  }

  .price-tag {
    font-size: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .modal {
    align-items: flex-start;
    padding: 12px;
    overflow-y: auto;
  }

  .modal-content {
    margin-block: 16px;
  }

  .modal-inner {
    padding: 2.25rem 1rem 1rem;
  }

  .modal-drink-name {
    font-size: 1.8rem;
    line-height: 1.1;
    flex-wrap: wrap;
  }

  .modal-recipe {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav {
    width: calc(100% - 20px);
    padding-inline: 0.8rem;
  }

  .nav-logo .cb-logo-text {
    font-size: 1.25rem;
  }

  .nav-logo-img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    padding: 1.25rem;
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 600px;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .hero-title {
    font-size: 3.35rem;
    text-shadow:
      0 0 14px rgba(255, 42, 157, 0.75),
      0 0 28px rgba(255, 42, 157, 0.45),
      2px 3px 0 var(--cb-cherry-red);
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .eyebrow,
  .eyebrow-strong {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .neon-sign-hero,
  .neon-sign-accent {
    max-height: 48px;
  }

  .option-row {
    grid-template-columns: 1fr;
  }

  .cup-3d-scene {
    width: min(230px, 72vw);
    height: min(326px, 102vw);
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .retro-player {
    right: 8px;
    left: 8px;
    bottom: 8px;
  }

  .drawer-toggle {
    padding: 10px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .drawer-content {
    padding: 10px 12px;
  }
}

@media (max-width: 360px) {
  .container {
    padding-inline: 12px;
  }

  .card-glow {
    width: 220px;
    height: 220px;
  }

  .hero-title {
    font-size: 2.95rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .frame-inner,
  .menu-section .frame-inner,
  .customizer-section .frame-inner {
    padding: 14px;
  }

  .cup-3d-scene {
    width: 214px;
    height: 304px;
  }
}

@media (max-height: 680px) and (orientation: landscape) {
  .hero {
    min-height: 560px;
    padding-top: 96px;
    padding-bottom: 34px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-sub {
    margin-bottom: 1rem;
  }

  .neon-sign-hero {
    max-height: 48px;
    margin-top: 12px;
  }
}
