/* ═══════════════════════════════════════════════════════════════════
   GLOWSLUSH (زوزعني) — RESPONSIVE DESIGN SYSTEM & STYLESHEET
   Flawlessly adapted for Mobiles (320px+), Tablets (Portrait & Landscape), and Desktops
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@600;700;800;900&family=Cairo:wght@400;600;700;800;900&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  --bg-dark: #060913;
  --bg-card: rgba(13, 20, 38, 0.76);
  --bg-card-hover: rgba(20, 30, 56, 0.88);
  --border-glass: rgba(255, 255, 255, 0.14);
  --border-glow: rgba(0, 240, 255, 0.4);

  --neon-cyan: #00F0FF;
  --neon-magenta: #FF2A85;
  --neon-orange: #FFAA00;
  --neon-mint: #00FFB2;
  --neon-purple: #A855F7;
  --neon-yellow: #FACC15;
  --fb-blue: #1877F2;

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --font-display: 'Baloo Bhaijaan 2', 'Cairo', system-ui, sans-serif;
  --font-body: 'Cairo', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;

  --shadow-neon-cyan: 0 0 24px rgba(0, 240, 255, 0.35);
  --shadow-neon-pink: 0 0 24px rgba(255, 42, 133, 0.35);
  --shadow-glass: 0 20px 48px -12px rgba(0, 0, 0, 0.7);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
  font-size: 16px;
}

@media (max-width: 480px) {
  html {
    font-size: 14.5px;
  }
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6, .brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: #FFFFFF;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* ═══════════ GLASSMORPHISM ═══════════ */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: transform 0.3s var(--spring), border-color 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glass), 0 0 22px rgba(0, 240, 255, 0.2);
}

/* ═══════════ HEADER ═══════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 9, 19, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

@media (max-width: 480px) {
  .header-inner {
    height: 70px;
  }
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.7));
  cursor: pointer;
  transition: transform 0.3s var(--spring);
}

@media (max-width: 480px) {
  .brand-logo-img {
    width: 44px;
    height: 44px;
  }
}

.brand-wordmark-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .brand-wordmark-img {
    height: 35px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-muted);
  transition: color 0.2s, text-shadow 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px var(--neon-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-ctrl-btn {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .header-ctrl-btn.btn-hide-mobile {
    display: none;
  }
}

.cart-toggle-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(255, 42, 133, 0.15));
  border: 1px solid var(--border-glass);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: transform 0.2s var(--spring);
}

.cart-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--neon-magenta);
}

.cart-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background: var(--neon-magenta);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  place-items: center;
  justify-content: center;
  box-shadow: var(--shadow-neon-pink);
}

/* ═══════════ 🌡️ CAIRO HEAT RADAR BAR ═══════════ */
.cairo-heat-radar-bar {
  margin-top: 84px;
  background: linear-gradient(90deg, rgba(225, 29, 72, 0.18), rgba(0, 240, 255, 0.18));
  border-bottom: 1px solid rgba(0, 240, 255, 0.25);
  padding: 0.55rem 1rem;
}

@media (max-width: 480px) {
  .cairo-heat-radar-bar {
    margin-top: 70px;
    padding: 0.5rem 0.8rem;
  }
}

.radar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.radar-badge {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--neon-orange);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.radar-content {
  font-size: 0.88rem;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.radar-divider {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .radar-divider {
    display: none;
  }
  .radar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.radar-action-btn {
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--neon-cyan);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  transition: transform 0.2s;
  white-space: nowrap;
}

/* ═══════════ HERO SECTION ═══════════ */
.hero-section {
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 25px 0 45px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--neon-cyan);
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.hero-brand-glow {
  background: linear-gradient(120deg, #00F0FF 0%, #FF2A85 35%, #FFAA00 70%, #00FFB2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.45));
  font-weight: 900;
}

.hero-brand-en {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #00F0FF, #FF2A85);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-inline-start: 0.4rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}

.btn-hero-primary {
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--neon-cyan) 0%, #2563EB 50%, var(--neon-magenta) 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.02rem;
  box-shadow: 0 10px 25px -6px rgba(0, 240, 255, 0.5);
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px -6px rgba(0, 240, 255, 0.7);
}

.btn-hero-secondary {
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid var(--border-glass);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--neon-orange);
}

.hero-visual-card {
  position: relative;
  padding: 1rem;
  text-align: center;
}

.hero-img-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8), var(--shadow-neon-cyan);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 20, 38, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--neon-mint);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  text-align: start;
}

@media (max-width: 480px) {
  .hero-card-floating-badge {
    bottom: 12px;
    left: 12px;
    padding: 0.45rem 0.8rem;
  }
}

.badge-lbl {
  font-size: 0.72rem;
  color: var(--neon-mint);
  font-weight: 900;
}

.badge-val {
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFF;
}

/* ═══════════ SECTION HEADERS ═══════════ */
.sec-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.sec-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 240, 255, 0.14);
  color: var(--neon-cyan);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.sec-title {
  font-size: clamp(1.85rem, 4.2vw, 2.9rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #FFFFFF, #E2E8F0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ═══════════ 🎡 NEON SLUSH ROULETTE ═══════════ */
.roulette-section {
  padding: 60px 0;
}

.roulette-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .roulette-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.roulette-wheel-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

#rouletteCanvas {
  max-width: 100%;
  width: min(360px, 86vw);
  height: auto;
}

.roulette-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 26px solid #FF2A85;
  filter: drop-shadow(0 0 10px #FF2A85);
  z-index: 10;
}

.roulette-result-box {
  display: none;
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(255, 42, 133, 0.15));
  border: 1.5px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  text-align: start;
}

/* ═══════════ QUIZ SECTION ═══════════ */
.quiz-section {
  padding: 60px 0 80px;
}

.quiz-container {
  max-width: 820px;
  margin: 0 auto;
}

.quiz-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .quiz-card {
    padding: 1.4rem 1.1rem;
  }
}

.quiz-progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.cup-progress-indicator {
  width: 42px;
  height: 60px;
  flex-shrink: 0;
}

.quiz-meta-info {
  flex: 1;
}

.step-lbl {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

.theme-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--neon-orange);
  background: rgba(255, 170, 0, 0.15);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-top: 0.2rem;
}

.quiz-question-text {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.q-opt-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-glass);
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: start;
  transition: all 0.2s var(--spring);
}

@media (max-width: 480px) {
  .q-opt-btn {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    gap: 0.7rem;
  }
}

.q-opt-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent-glow, var(--neon-cyan));
  transform: translateX(-4px);
}

.q-opt-btn.selected {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.18), rgba(255, 42, 133, 0.18));
  border-color: var(--accent-glow, var(--neon-cyan));
  box-shadow: 0 8px 20px -6px var(--accent-glow, var(--neon-cyan));
}

.opt-num {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.q-opt-btn.selected .opt-num {
  background: var(--neon-cyan);
  color: #000;
}

.opt-emoji {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.opt-text {
  flex: 1;
  word-break: break-word;
}

.opt-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  flex-shrink: 0;
}

.q-opt-btn.selected .opt-radio {
  border-color: var(--neon-cyan);
  background: var(--neon-cyan);
}

.quiz-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.btn-nav-prev {
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-nav-prev:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
}

.btn-nav-prev:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-nav-next {
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--neon-cyan), var(--neon-magenta));
  color: #FFF;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: var(--shadow-neon-cyan);
  transition: transform 0.2s var(--spring);
}

.btn-nav-next:not(:disabled):hover {
  transform: scale(1.03);
}

.btn-nav-next:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  box-shadow: none;
  cursor: not-allowed;
}

/* ═══════════ RESULT SCREEN ═══════════ */
.quiz-result-container {
  display: none;
}

.res-hero-card {
  padding: 2.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 240, 255, 0.4);
}

@media (max-width: 480px) {
  .res-hero-card {
    padding: 1.5rem 1rem;
  }
}

.res-avatar-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.2rem;
  animation: floatMascot 4s ease-in-out infinite;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.res-kind-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 170, 0, 0.18);
  border: 1px solid var(--neon-orange);
  color: var(--neon-orange);
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.res-archetype-name {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #FFFFFF, var(--neon-cyan) 50%, var(--neon-magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.res-tagline-quote {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.res-compliment-box {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 42, 133, 0.1));
  border: 1px dashed rgba(0, 240, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.8rem;
  text-align: start;
}

@media (max-width: 480px) {
  .res-compliment-box {
    padding: 1.2rem 1rem;
  }
}

.compliment-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.compliment-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #F1F5F9;
}

.res-recipe-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  text-align: start;
}

@media (max-width: 768px) {
  .res-recipe-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

.res-cup-visual {
  display: flex;
  justify-content: center;
}

#resultCupCanvas {
  max-width: 100%;
  width: min(240px, 70vw);
  height: auto;
}

.res-mix-bars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.res-mix-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mix-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.mix-track {
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mix-fill-bar {
  height: 100%;
  border-radius: 5px;
  transition: width 1s var(--spring);
}

.res-order-ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 480px) {
  .res-order-ticket-row {
    flex-direction: column;
    text-align: center;
  }
}

.order-code-box {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-cyan);
  letter-spacing: 0.12em;
  font-family: 'Outfit', monospace;
}

/* Social Share Suite */
.res-share-suite {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .res-share-suite {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-share {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.2s var(--spring);
}

.btn-share:hover {
  transform: translateY(-2px);
}

.btn-wa-share {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFF;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-fb-share {
  background: linear-gradient(135deg, #1877F2, #0D65D9);
  color: #FFF;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

.btn-download-story {
  background: linear-gradient(135deg, #E1306C, #833AB4);
  color: #FFF;
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.4);
}

.btn-download-post {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #FFF;
}

.btn-restart-quiz {
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: underline;
  margin-top: 0.8rem;
}

/* ═══════════ MENU SHOWCASE ═══════════ */
.menu-section {
  padding: 60px 0;
}

.menu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .menu-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.menu-item-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-item-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.menu-item-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-item-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.6;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-glass);
}

.menu-tag-pill {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--neon-mint);
  background: rgba(0, 255, 178, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ═══════════ CUSTOMIZER / LAB ═══════════ */
.customizer-section {
  padding: 60px 0 100px;
}

.lab-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .lab-grid {
    grid-template-columns: 1fr;
  }
}

.lab-preview-card {
  padding: 1.8rem;
  text-align: center;
}

@media (max-width: 480px) {
  .lab-preview-card {
    padding: 1.2rem 0.8rem;
  }
}

.lab-canvas-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

#customizerCupCanvas {
  max-width: 100%;
  width: min(300px, 80vw);
  height: auto;
}

.laser-input-wrap {
  margin-bottom: 1.2rem;
}

.laser-input {
  width: 100%;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid var(--neon-cyan);
  color: #FFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  font-family: inherit;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.laser-input:focus {
  outline: none;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.lab-ctrl-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

@media (max-width: 480px) {
  .lab-ctrl-panel {
    padding: 1.4rem 1rem;
  }
}

.ctrl-block-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin-bottom: 0.7rem;
}

.pill-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill-size-btn, .option-chip-btn {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-glass);
  color: #FFF;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 480px) {
  .pill-size-btn, .option-chip-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }
}

.pill-size-btn.active, .option-chip-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 42, 133, 0.2));
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
}

.layer-control-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.layer-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.layer-select {
  flex: 1;
  padding: 0.55rem 0.8rem;
  background: rgba(13, 20, 38, 0.95);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #FFF;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.9rem;
}

.layer-slider {
  width: 100%;
}

.lab-summary-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-glass);
}

.btn-add-cart {
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--neon-cyan), var(--neon-magenta));
  color: #FFF;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: var(--shadow-neon-cyan);
  transition: transform 0.2s var(--spring);
  width: 100%;
}

.btn-add-cart:hover {
  transform: scale(1.02);
}

/* ═══════════ 🔒 SECRET VAULT MODAL ═══════════ */
.secret-vault-modal .modal-dialog {
  max-width: 820px;
}

.secret-mixes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
  text-align: start;
}

@media (max-width: 768px) {
  .secret-mixes-grid {
    grid-template-columns: 1fr;
  }
}

.secret-mix-card {
  padding: 1.2rem;
  position: relative;
  border: 1px solid var(--card-glow, var(--neon-cyan));
  box-shadow: 0 10px 25px -8px var(--card-glow, var(--neon-cyan));
}

.secret-card-badge {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--neon-orange);
  background: rgba(255, 170, 0, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* ═══════════ 🎧 DJ SOUNDSCAPE DOCK ═══════════ */
.dj-sound-dock {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

@media (max-width: 480px) {
  .dj-sound-dock {
    bottom: 15px;
    right: 15px;
  }
}

.btn-dj-dock {
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 20, 38, 0.92);
  border: 1.5px solid var(--neon-cyan);
  color: #FFF;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), var(--shadow-neon-cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s var(--spring);
}

.btn-dj-dock.active {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: #000;
  border-color: #FFF;
}

/* ═══════════ CART DRAWER ═══════════ */
.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100vw;
  width: min(390px, 94vw);
  background: rgba(10, 15, 29, 0.97);
  backdrop-filter: blur(25px);
  z-index: 1000;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.7);
  transition: left 0.35s var(--spring);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid var(--border-glass);
}

.cart-drawer.open {
  left: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cart-item-card {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-info h5 {
  font-size: 0.98rem;
}

.cart-item-sub, .cart-item-layers {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.cart-drawer-footer {
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-glass);
}

/* ═══════════ MODAL & 🎟️ HOLOGRAPHIC VIP PASS ═══════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop.active {
  display: grid;
}

.modal-dialog {
  width: min(520px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.8rem;
  text-align: center;
}

@media (max-width: 480px) {
  .modal-dialog {
    padding: 1.2rem 0.9rem;
  }
}

.holographic-vip-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(0, 240, 255, 0.2) 35%, rgba(255, 42, 133, 0.2) 70%, rgba(255, 170, 0, 0.2));
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: start;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

@media (max-width: 420px) {
  .holographic-vip-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════ TOAST ═══════════ */
.toast-msg {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(0, 240, 255, 0.95);
  color: #000;
  font-weight: 800;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-neon-cyan);
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s var(--spring);
  width: max-content;
  max-width: 90vw;
  text-align: center;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ═══════════ AMBIENT DOODLES ═══════════ */
.ambient-doodles-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ambient-floating-doodle {
  position: absolute;
  opacity: 0.15;
  animation: floatDoodle linear infinite;
}

@keyframes floatDoodle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
  50% { opacity: 0.22; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ═══════════ FOOTER & QR CODE ═══════════ */
footer {
  padding: 50px 0 35px;
  background: #03050A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer-qr-card {
  display: inline-block;
  padding: 1rem 1.6rem;
  margin: 0 auto 1.6rem;
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 10px 25px -6px rgba(0, 240, 255, 0.25);
  transition: transform 0.2s var(--spring), border-color 0.2s;
}

.footer-qr-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 14px 30px -6px rgba(0, 240, 255, 0.45);
}

.footer-qr-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
}

.footer-qr-img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.footer-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-qr-text {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.qr-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}

.qr-domain {
  font-size: 1.15rem;
  color: var(--neon-cyan);
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
}

.footer-addr {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}
