﻿/* =====================================================
   LA MIA PIZZERIA — CYBER-NEON v3.0
   Dark-Diner Aesthetic • Neon Glow • Premium UI
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --neon-pink: #ff0055;
  --neon-pink-dim: rgba(255,0,85,0.6);
  --neon-green: #39ff14;
  --neon-green-dim: rgba(57,255,20,0.6);
  --neon-yellow: #fff01f;
  --neon-yellow-dim: rgba(255,240,31,0.6);
  --neon-blue: #00d4ff;
  --neon-blue-dim: rgba(0,212,255,0.6);
--bg: #050505;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111111;
  --bg-surface: #0d0d0d;
  --text: #ffffff;
  --text-muted: #9a9a9a;
  --text-dim: #6a6a6a;
  --black: #050505;
  --white: #ffffff;
  --red: var(--neon-pink);
  --red-dark: #cc0044;
  --red-light: #ff3377;
  --gold: var(--neon-yellow);
  --gold-light: #ffe44d;
  --canvas: #0a0a0a;
  --canvas-2: #0d0d0d;
  --carbon-2: #0a0a0a;
  --border: rgba(255,255,255,0.1);
  --gray-100: #1a1a1a;
  --gray-200: #222222;
  --gray-300: #333333;
  --gray-600: #9a9a9a;
  --gray-800: #cccccc;
  --font-script: 'Sacramento', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --font-ui: 'Poppins', sans-serif;
  --font-head: 'Oswald', sans-serif;
  --glow-pink: 0 0 5px #fff, 0 0 10px #ff0055, 0 0 20px #ff0055;
  --glow-pink-sm: 0 0 4px #ff0055, 0 0 8px rgba(255,0,85,0.4);
  --glow-green: 0 0 5px #fff, 0 0 10px #39ff14, 0 0 20px #39ff14;
  --glow-green-sm: 0 0 4px #39ff14, 0 0 8px rgba(57,255,20,0.4);
  --glow-yellow: 0 0 5px #fff, 0 0 10px #fff01f, 0 0 20px #fff01f;
  --glow-yellow-sm: 0 0 4px #fff01f, 0 0 8px rgba(255,240,31,0.4);
  --glow-blue: 0 0 5px #fff, 0 0 10px #00d4ff, 0 0 20px #00d4ff;
  --glow-blue-sm: 0 0 4px #00d4ff, 0 0 8px rgba(0,212,255,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.6);
  --shadow-red: 0 8px 32px rgba(255,0,85,0.25);
  --shadow-pizza: 0 30px 80px rgba(0,0,0,0.5), 0 8px 24px rgba(255,0,85,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03; background-image: repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(255,255,255,0.03) 24px, rgba(255,255,255,0.03) 25px), repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.02) 48px, rgba(255,255,255,0.02) 49px); }
::selection { background: var(--neon-pink); color: #fff; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 3px; }

.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; position: relative; z-index: 1; }
.section--sm { padding: 3rem 0; }
.section--dark { background: var(--bg-card); color: var(--text); }
.section--red { background: var(--neon-pink); color: var(--text); }
.section--canvas { background: var(--bg-card); }
.section--white { background: var(--bg-card); }

h1, h2, h3 { font-family: var(--font-heading); letter-spacing: 0.01em; color: var(--text); }
h4 { font-family: var(--font-body); font-weight: 700; color: var(--text); }
.section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--neon-pink); margin-bottom: 0.8rem; }
.section-label::before, .section-label::after { content: ''; display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; line-height: 1; color: var(--text); }
.section-title span { color: var(--neon-pink); text-shadow: var(--glow-pink-sm); }
.section-subtitle { font-size: 0.9rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.section-header-center { text-align: center; }

.gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow)); border-radius: 2px; margin: 1rem 0 1.5rem; box-shadow: var(--glow-pink-sm); }
.gold-line-center { margin-left: auto; margin-right: auto; }
.thick-rule { width: 60px; height: 3px; background: var(--neon-pink); border-radius: 2px; margin: 1.2rem 0; box-shadow: var(--glow-pink-sm); }
/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 2.2rem; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all 0.3s var(--ease); position: relative; overflow: hidden; white-space: nowrap; background: transparent; }
.btn-primary, .btn-red { background: var(--neon-pink); color: #fff; border-color: var(--neon-pink); box-shadow: 0 0 12px rgba(255,0,85,0.3), 0 0 24px rgba(255,0,85,0.15); animation: neonBorderPulse 2s ease-in-out infinite; }
.btn-primary:hover, .btn-red:hover { background: transparent; color: var(--neon-pink); box-shadow: 0 0 20px rgba(255,0,85,0.6), 0 0 40px rgba(255,0,85,0.3); transform: translateY(-2px); }
.btn-outline, .btn-outline-red { background: transparent; color: var(--neon-green); border-color: var(--neon-green); }
.btn-outline:hover, .btn-outline-red:hover { background: var(--neon-green); color: #050505; box-shadow: var(--glow-green); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { color: var(--neon-yellow); border-color: var(--neon-yellow); box-shadow: var(--glow-yellow-sm); transform: translateY(-2px); }
.btn-black { background: var(--bg-card); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-black:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn--pulse { animation: ctaPulse 2.2s ease-in-out infinite; }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,85,0.5), 0 0 12px rgba(255,0,85,0.3); } 50% { box-shadow: 0 0 0 12px rgba(255,0,85,0), 0 0 12px rgba(255,0,85,0.3); } }

.neon-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.neon-icon svg { width: 1em; height: 1em; fill: currentColor; filter: drop-shadow(0 0 4px currentColor); }
.neon-icon--lg svg { width: 1.4em; height: 1.4em; }
.neon-icon--pink { color: var(--neon-pink); }
.neon-icon--green { color: var(--neon-green); }
.neon-icon--yellow { color: var(--neon-yellow); }
.neon-icon--white { color: #fff; }
.neon-icon--blue { color: var(--neon-blue); }

/* FOODORA ORDER BUTTON */
.btn-foodora { background: #DF1067; color: #fff; border-color: #DF1067; box-shadow: 0 0 14px rgba(223,16,103,0.35); }
.btn-foodora:hover { background: transparent; color: #DF1067; box-shadow: 0 0 24px rgba(223,16,103,0.55); transform: translateY(-2px); }
.btn-foodora .foodora-mark { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-foodora .foodora-mark svg { width: 20px; height: 20px; }

/* PRELOADER */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity 0.6s var(--ease), visibility 0.6s; }
.preloader--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.preloader-logo { width: 140px; height: auto; animation: preloaderPulse 1.4s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(255,0,85,0.6)) drop-shadow(0 0 40px rgba(255,0,85,0.3)); }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 20px rgba(255,0,85,0.6)) drop-shadow(0 0 40px rgba(255,0,85,0.3)); } 50% { transform: scale(1.05); opacity: 0.85; filter: drop-shadow(0 0 30px rgba(255,0,85,0.8)) drop-shadow(0 0 60px rgba(255,0,85,0.4)); } }
.preloader-bar-wrap { width: 220px; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; border: 1px solid rgba(255,0,85,0.2); box-shadow: var(--glow-pink-sm); }
.preloader-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--neon-pink), var(--neon-green), var(--neon-yellow), var(--neon-pink)); background-size: 300% 100%; border-radius: 2px; transition: width 0.12s ease; animation: neonBarShift 3s linear infinite; box-shadow: 0 0 8px var(--neon-green); }
@keyframes neonBarShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.preloader-text { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--neon-pink); animation: neonFlicker 2s ease-in-out infinite; }

/* NAVIGATION */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; background: rgba(5,5,5,0.92); backdrop-filter: blur(16px) saturate(1.8); -webkit-backdrop-filter: blur(16px) saturate(1.8); border-bottom: 2px solid var(--neon-pink); box-shadow: 0 2px 20px rgba(255,0,85,0.15); transition: all 0.35s var(--ease); }
.nav.scrolled { box-shadow: 0 4px 30px rgba(255,0,85,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 2rem; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 60px; width: auto; display: block; transition: transform 0.3s var(--ease), filter 0.3s; filter: drop-shadow(0 0 10px rgba(255,0,85,0.3)); }
.nav-logo:hover .nav-logo-img { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(255,0,85,0.5)); }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); padding: 0.45rem 1.2rem; border-radius: 6px; transition: all 0.2s; position: relative; border-right: 1px solid rgba(255,255,255,0.08); }
.nav-link:last-child { border-right: none; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%) scaleX(0); width: 60%; height: 2px; background: var(--neon-pink); border-radius: 2px; transition: transform 0.25s var(--ease); box-shadow: var(--glow-pink-sm); }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-lang { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 1rem; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--neon-yellow); border: 1px solid rgba(255,240,31,0.3); border-radius: var(--radius); background: transparent; cursor: pointer; transition: all 0.3s; letter-spacing: 0.1em; margin-left: 0.8rem; }
.nav-lang:hover { background: rgba(255,240,31,0.1); border-color: var(--neon-yellow); box-shadow: 0 0 15px rgba(255,240,31,0.2); }

.nav-social { display: inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border:1px solid rgba(255,0,85,0.3); border-radius:var(--radius); color:var(--neon-pink); transition:all 0.3s; background:transparent; }
.nav-social:hover { background:rgba(255,0,85,0.1); border-color:var(--neon-pink); box-shadow:0 0 15px rgba(255,0,85,0.25); color:var(--neon-pink); transform:translateY(-1px); }
.nav-social--tiktok { border-color:rgba(0,212,255,0.3); color:var(--neon-blue); }
.nav-social--tiktok:hover { background:rgba(0,212,255,0.1); border-color:var(--neon-blue); box-shadow:0 0 15px rgba(0,212,255,0.25); color:var(--neon-blue); transform:translateY(-1px); }

/* THEME TOGGLE (day / night) */
.theme-toggle { position: relative; color: var(--neon-yellow); border-color: rgba(255,240,31,0.35); }
.theme-toggle:hover { background: rgba(255,240,31,0.12); border-color: var(--neon-yellow); box-shadow: 0 0 15px rgba(255,240,31,0.3); color: var(--neon-yellow); transform: translateY(-1px); }
.theme-toggle:active { transform: scale(0.96); }
.theme-toggle svg { position: absolute; inset: 0; margin: auto; transition: opacity 0.3s cubic-bezier(0.2, 0, 0, 1), transform 0.3s cubic-bezier(0.2, 0, 0, 1), filter 0.3s cubic-bezier(0.2, 0, 0, 1); }
.theme-toggle .icon-sun { opacity: 1; transform: scale(1); filter: blur(0); }
.theme-toggle .icon-moon { opacity: 0; transform: scale(0.25); filter: blur(4px); }
:root[data-theme="light"] .theme-toggle .icon-sun { opacity: 0; transform: scale(0.25); filter: blur(4px); }
:root[data-theme="light"] .theme-toggle .icon-moon { opacity: 1; transform: scale(1); filter: blur(0); }
.theme-toggle--mobile { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,240,31,0.35); background: rgba(255,240,31,0.06); }
.theme-toggle--mobile:hover { background: rgba(255,240,31,0.15); border-color: var(--neon-yellow); box-shadow: 0 0 18px rgba(255,240,31,0.35); color: var(--neon-yellow); transform: translateY(-2px); }
.theme-toggle--mobile svg { width: 22px; height: 22px; }

/* KEEP THE TOGGLE ICON CROSS-FADE SMOOTH WHILE THE PAGE SNAPS ON THEME SWITCH */
body.theme-switching *, body.theme-switching *::before, body.theme-switching *::after { transition: none !important; }
body.theme-switching .theme-toggle svg { transition: opacity 0.3s cubic-bezier(0.2, 0, 0, 1), transform 0.3s cubic-bezier(0.2, 0, 0, 1), filter 0.3s cubic-bezier(0.2, 0, 0, 1) !important; }

/* PRESS FEEDBACK + KEYBOARD FOCUS + REDUCED MOTION */
.btn:active, .btn-foodora:active, .nav-social:active, .theme-toggle:active, .mobile-social a:active, .gallery-strip-scroll:active, .gallery-nav:active, .menu-slider-nav:active, .scroll-top-btn:active { transform: scale(0.96); }
:focus-visible { outline: 2px solid var(--neon-pink); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* MOBILE SOCIAL CIRCLE ICONS */
.mobile-social { display:flex; gap:0.8rem; margin-top:0.75rem; justify-content:center; }
.mobile-social a { width:44px; height:44px; border-radius:50%; border:2px solid rgba(255,0,85,0.3); display:flex; align-items:center; justify-content:center; color:var(--neon-pink); background:rgba(255,0,85,0.05); transition:all 0.3s; }
.mobile-social a svg { width:20px; height:20px; fill:currentColor; }
.mobile-social a:hover { border-color:var(--neon-pink); box-shadow:0 0 15px rgba(255,0,85,0.3); transform:translateY(-2px); }
.mobile-social a.mobile-social--tiktok { border-color:rgba(0,212,255,0.3); color:var(--neon-blue); background:rgba(0,212,255,0.05); }
.mobile-social a.mobile-social--tiktok:hover { border-color:var(--neon-blue); box-shadow:0 0 15px rgba(0,212,255,0.3); }
.nav-header-img { height: 25px; width: auto; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(255,0,85,0.3)); transition: filter 0.3s; }
.nav-header-img:hover { filter: drop-shadow(0 0 15px rgba(255,0,85,0.5)); }
.nav-cta { font-size: 0.75rem; padding: 0.65rem 1.5rem; font-weight: 700; border-radius: var(--radius); background: var(--neon-pink); color: #fff; border: 2px solid var(--neon-pink); box-shadow: 0 0 12px rgba(255,0,85,0.3); }
.nav-cta:hover { background: transparent; color: var(--neon-pink); box-shadow: var(--glow-pink); transform: translateY(-2px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 1001; }
.nav-hamburger span { display: block; width: 26px; height: 2.5px; background: var(--neon-pink); border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center; box-shadow: var(--glow-pink-sm); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; inset: 0; background: rgba(5,5,5,0.98); z-index: 1001; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem; opacity: 0; pointer-events: none; transform: scale(0.92); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; transform: scale(1); }
.nav-mobile-close { position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: 2px solid rgba(255,0,85,0.4); color: var(--white); font-size: 2rem; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s var(--ease); z-index: 10; line-height: 1; }
.nav-mobile-close:hover { background: var(--neon-pink); border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(255,0,85,0.5); transform: rotate(90deg); }
.nav-mobile .nav-link { font-size: 1.3rem; color: var(--white); letter-spacing: 0.2em; }
.nav-mobile .nav-link::after { bottom: -6px; }
.nav-mobile-divider { width: 50px; height: 2px; background: var(--neon-pink); border-radius: 2px; box-shadow: var(--glow-pink-sm); }
/* HERO */
.hero { min-height: 100vh; min-height: 100dvh; background: var(--bg); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.55; filter: brightness(0.5) saturate(1.15); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,0,85,0.1), transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(0,212,255,0.06), transparent 50%), linear-gradient(180deg, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.5) 100%); z-index: 1; }
.hero::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 3px); z-index: 2; pointer-events: none; mix-blend-mode: multiply; }
.hero-bg { display: none; }
.hero-content { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; width: 100%; }
.hero-left { padding: 4rem 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; border: 1px solid var(--neon-green); color: var(--neon-green); font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; padding: 0.45rem 1.1rem; border-radius: var(--radius-pill); margin-top: 1rem; margin-bottom: 2.6rem; animation: fadeInDown 0.7s var(--ease) both; box-shadow: var(--glow-green-sm); }
.hero-badge-dot { width: 7px; height: 7px; background: var(--neon-green); border-radius: 50%; animation: pulse 1.8s infinite; box-shadow: 0 0 6px var(--neon-green); }
.hero-title { font-family: var(--font-heading); text-transform: uppercase; line-height: 0.95; color: var(--white); margin-bottom: 0.3rem; animation: fadeInUp 0.8s 0.1s var(--ease) both; }
.hero-title-line1 { display: block; font-size: clamp(2.4rem, 5vw, 4.2rem); text-shadow: 0 0 10px rgba(255,0,85,0.5), 0 0 30px rgba(255,0,85,0.3); }
.hero-title-line2 { display: block; font-size: clamp(2.4rem, 5vw, 4.2rem); color: var(--neon-pink); text-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055, 0 0 40px #ff0055; animation: neonTextPulse 2s ease-in-out infinite; }
.hero-title-line3 { display: block; font-size: clamp(1.2rem, 3vw, 2.2rem); margin-top: 0.5rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.hero-title-accent { color: var(--neon-yellow); text-shadow: 0 0 10px #fff01f, 0 0 20px #fff01f; }
.hero-subtitle { font-family: var(--font-script); font-size: clamp(1rem, 2.5vw, 1.8rem); font-weight: 400; letter-spacing: 0.05em; color: var(--neon-yellow); text-shadow: 0 0 10px #fff01f, 0 0 20px #fff01f, 0 0 40px #fff01f; margin-bottom: 1.5rem; animation: fadeInUp 0.8s 0.2s var(--ease) both; }
.hero-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); max-width: 420px; margin-bottom: 2.5rem; line-height: 1.8; animation: fadeInUp 0.8s 0.3s var(--ease) both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.8s 0.4s var(--ease) both; }
.hero-actions .btn { min-width: 180px; justify-content: center; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; }
.hero-orb-1 { width: 500px; height: 500px; background: var(--neon-pink); top: 5%; right: 5%; opacity: 0.08; }
.hero-orb-2 { width: 350px; height: 350px; background: var(--neon-blue); bottom: 10%; left: 10%; opacity: 0.05; }
.hero-orb-3 { width: 250px; height: 250px; background: var(--neon-yellow); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.03; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll-text { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--neon-pink), transparent); animation: scrollLineAnim 1.5s ease-in-out infinite; }
@keyframes scrollLineAnim { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* INFO STRIP */
.info-strip { background: transparent; border-top: 1px solid rgba(255,0,85,0.2); border-bottom: 1px solid rgba(255,0,85,0.2); padding: 0; position: relative; z-index: 2; }
.info-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.info-item { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 2rem; border-right: 1px solid rgba(255,0,85,0.15); transition: background 0.2s; }
.info-item:last-child { border-right: none; }
.info-item:hover { background: rgba(255,0,85,0.04); }
.info-item-icon { flex-shrink: 0; }
.info-item-label { font-family: var(--font-ui); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.15rem; }
.info-item-value { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--white); }
.info-item-value a { color: var(--white); transition: color 0.2s; }
.info-item-value a:hover { color: var(--neon-pink); }

/* LUNCH SPECIAL */
.lunch-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 3.5rem; }
.lunch-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(57,255,20,0.2); box-shadow: 0 0 20px rgba(57,255,20,0.05); transition: transform 0.3s var(--ease), box-shadow 0.3s; padding: 2rem; position: relative; }
.lunch-card:hover { transform: translateY(-6px); box-shadow: 0 0 30px rgba(57,255,20,0.1); border-color: rgba(57,255,20,0.4); }
.lunch-card-bg { position: absolute; top: -10px; right: 10px; font-size: 6rem; opacity: 0.04; pointer-events: none; user-select: none; line-height: 1; }
.lunch-price-label { font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon-green); margin-bottom: 0.8rem; }
.lunch-price-badge { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.5rem; }
.lunch-price-num { font-family: var(--font-heading); font-size: 4rem; line-height: 1; color: var(--neon-green); text-shadow: var(--glow-green); }
.lunch-price-kr { font-family: var(--font-heading); font-size: 1.4rem; color: var(--neon-green-dim); }
.lunch-includes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.lunch-tag { display: inline-flex; align-items: center; gap: 0.35rem; background: transparent; border: 1px solid rgba(57,255,20,0.3); border-radius: var(--radius-pill); padding: 0.35rem 0.9rem; font-family: var(--font-ui); font-size: 0.75rem; font-weight: 600; color: var(--neon-green); transition: all 0.2s; }
.lunch-tag:hover { background: rgba(57,255,20,0.1); border-color: var(--neon-green); box-shadow: var(--glow-green-sm); }
.hours-grid { display: grid; gap: 0.6rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 1.2rem; background: var(--bg-card); border-radius: var(--radius); border-left: 3px solid var(--neon-pink); transition: background 0.2s; }
.hours-row:hover { background: var(--bg-card-hover); }
.hours-day { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.hours-time { font-family: var(--font-heading); font-size: 1.1rem; color: var(--neon-pink); text-shadow: var(--glow-pink-sm); }
/* FEATURE CARDS */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid rgba(255,0,85,0.12); padding: 2.5rem 1.8rem; text-align: center; position: relative; overflow: hidden; transition: all 0.4s var(--ease); cursor: default; }
.feature-card:hover { transform: translateY(-10px); border-color: rgba(255,0,85,0.4); box-shadow: 0 0 30px rgba(255,0,85,0.12); }
.feature-icon { width: auto; height: auto; background: none; border: none; border-radius: 0; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; transition: all 0.4s var(--ease); }
.feature-icon img, .feature-icon svg { width: 128px; height: 128px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(255,0,85,0.4)); transition: all 0.4s var(--ease); }
.feature-card:hover .feature-icon img, .feature-card:hover .feature-icon svg { transform: scale(1.15) rotate(-5deg); filter: drop-shadow(0 0 20px rgba(255,0,85,0.6)); }
.feature-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.6rem; }
.feature-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

/* PAGE HEADER */
.page-header { background: var(--bg); padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden; border-bottom: 2px solid var(--neon-pink); z-index: 1; }
.page-header::before { content: attr(data-title); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-heading); font-size: 18vw; color: rgba(255,255,255,0.015); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: 0.05em; }
.page-header .container { position: relative; z-index: 1; }

/* MENU TABS */
.menu-tabs { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 0; scrollbar-width: none; background: var(--bg-card); border: 1px solid rgba(255,0,85,0.15); border-radius: var(--radius-lg); margin-bottom: 2rem; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab { flex-shrink: 0; padding: 1.1rem 2rem; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; border: none; background: none; border-bottom: 3px solid transparent; transition: all 0.25s var(--ease); white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; }
.menu-tab .neon-icon { font-size: 1.1rem; }
.menu-tab-icon { width: 22px; height: 22px; object-fit: contain; filter: drop-shadow(0 0 4px currentColor); transition: filter 0.25s var(--ease); }
.menu-tab:hover .menu-tab-icon, .menu-tab.active .menu-tab-icon { filter: drop-shadow(0 0 6px var(--neon-pink)) drop-shadow(0 0 12px var(--neon-pink)); }
.menu-tab:hover { color: var(--neon-pink); background: rgba(255,0,85,0.04); }
.menu-tab.active { color: var(--neon-pink); border-bottom-color: var(--neon-pink); font-weight: 700; text-shadow: var(--glow-pink-sm); }
.menu-section { display: none; }
.menu-section.active { display: block; }

/* PIZZA CATEGORY */
.pizza-category { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,0,85,0.12); margin-bottom: 2rem; transition: box-shadow 0.3s; }
.pizza-category:hover { box-shadow: 0 0 20px rgba(255,0,85,0.06); }
.pizza-category-header { background: linear-gradient(135deg, rgba(255,0,85,0.15), rgba(255,0,85,0.05)); padding: 1.1rem 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; border-bottom: 1px solid rgba(255,0,85,0.2); }
.pizza-category-title { font-family: var(--font-heading); font-size: 1.2rem; text-transform: uppercase; color: var(--white); letter-spacing: 0.04em; }
.cat-dark .pizza-category-title { color: #fff; }
.pizza-price-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.price-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.9rem; border-radius: var(--radius-pill); font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; }
.price-badge-std { background: rgba(255,0,85,0.15); color: var(--neon-pink); border: 1px solid rgba(255,0,85,0.3); }
.price-badge-fam { background: rgba(57,255,20,0.1); border: 1px solid rgba(57,255,20,0.3); color: var(--neon-green); }

/* PIZZA GRID */
.pizza-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.pizza-card { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.2rem; border-radius: var(--radius); background: var(--bg-surface); border: 1px solid transparent; transition: all 0.2s var(--ease); cursor: default; position: relative; }
.pizza-card:hover { background: var(--bg-card-hover); border-color: rgba(255,0,85,0.3); box-shadow: 0 0 12px rgba(255,0,85,0.06); }
.pizza-card-left { flex: 1; min-width: 0; display: flex; align-items: flex-start; gap: 0.75rem; }
.pizza-num { width: 2rem; height: 2rem; min-width: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; color: var(--white); background: var(--neon-pink); text-shadow: none; flex-shrink: 0; margin-top: 0.1rem; }
.pizza-name { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 0.25rem; line-height: 1.2; }
.pizza-ingredients { font-family: var(--font-ui); font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.pizza-price { font-family: var(--font-heading); font-size: 1.15rem; color: var(--neon-pink); white-space: nowrap; flex-shrink: 0; align-self: center; text-shadow: var(--glow-pink-sm); }
.pizza-badge { display: inline-block; background: var(--neon-green); color: #050505; border-radius: 4px; padding: 0.1rem 0.45rem; font-family: var(--font-ui); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-left: 0.4rem; vertical-align: middle; }

/* EXTRAS */
.extras-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 2rem 2.2rem; margin-top: 1rem; border: 1px solid rgba(255,240,31,0.15); }
.extras-card .section-label { color: var(--neon-yellow); }
.extras-card .section-label::before, .extras-card .section-label::after { background: var(--neon-yellow); }
.extras-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.6rem; margin-top: 1rem; }
.extra-item { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 1rem; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); font-size: 0.82rem; transition: all 0.2s; }
.extra-item:hover { background: rgba(255,240,31,0.04); border-color: rgba(255,240,31,0.2); }
.extra-name { color: rgba(255,255,255,0.7); }
.extra-price { color: var(--neon-yellow); font-weight: 700; font-family: var(--font-heading); text-shadow: var(--glow-yellow-sm); }

/* MENU ITEM CARDS */
.menu-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.menu-item-card { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.2rem; border-radius: var(--radius); background: var(--bg-surface); border: 1px solid transparent; transition: all 0.2s var(--ease); position: relative; }
.menu-item-card:hover { background: var(--bg-card-hover); border-color: rgba(255,0,85,0.3); box-shadow: 0 0 12px rgba(255,0,85,0.06); }
.menu-item-left { flex: 1; min-width: 0; }
.menu-item-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 0.25rem; line-height: 1.2; }
.menu-item-desc { font-family: var(--font-ui); font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.menu-item-price { font-family: var(--font-heading); font-size: 1.1rem; color: var(--neon-pink); white-space: nowrap; flex-shrink: 0; align-self: center; text-shadow: var(--glow-pink-sm); }
.menu-item-new { display: inline-block; background: var(--neon-green); color: #050505; font-family: var(--font-ui); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 4px; margin-left: 0.5rem; vertical-align: middle; }
.salad-includes { font-size: 0.7rem; color: var(--neon-green); font-weight: 600; margin-top: 0.3rem; }
/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-block { position: relative; }
.about-image-placeholder { width: 100%; aspect-ratio: 4/5; background: var(--bg-card); border-radius: var(--radius-xl); border: 2px solid rgba(255,0,85,0.2); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; overflow: hidden; box-shadow: 0 0 30px rgba(255,0,85,0.08); }
.about-image-deco { position: absolute; width: 80%; height: 80%; border: 2px solid var(--neon-pink); border-radius: var(--radius-xl); top: -20px; right: -20px; z-index: 1; box-shadow: var(--glow-pink-sm); }
.about-image-badge { position: absolute; bottom: -20px; left: -20px; z-index: 3; background: var(--neon-green); color: #050505; border-radius: var(--radius-lg); padding: 1.2rem 1.5rem; text-align: center; box-shadow: 0 0 20px rgba(57,255,20,0.3); }
.about-image-badge-num { font-family: var(--font-heading); font-size: 2.2rem; line-height: 1; }
.about-image-badge-text { font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }
.about-values { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem; }
.about-value { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem; background: var(--bg-card); border-radius: var(--radius); border: 1px solid rgba(255,0,85,0.1); border-left: 3px solid var(--neon-pink); transition: all 0.25s var(--ease); }
.about-value:hover { background: var(--bg-card-hover); transform: translateX(6px); border-color: rgba(255,0,85,0.3); box-shadow: 0 0 15px rgba(255,0,85,0.06); }
.about-value-icon { flex-shrink: 0; margin-top: 0.1rem; }
.about-value-icon svg { width: 22px; height: 22px; fill: currentColor; filter: drop-shadow(0 0 4px currentColor); }
.about-value-title { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 0.15rem; }
.about-value-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.team-section { background: var(--bg-card); border-top: 1px solid rgba(255,0,85,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 3rem 2rem; border-right: 1px solid rgba(255,0,85,0.1); transition: background 0.25s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,0,85,0.04); }
.stat-num { font-family: var(--font-heading); font-size: 3.5rem; color: var(--neon-pink); line-height: 1; margin-bottom: 0.5rem; text-shadow: var(--glow-pink-sm); }
.stat-label { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

/* CONTACT PAGE */
.contact-hero { background: var(--bg); padding: 9rem 0 5rem; text-align: center; position: relative; overflow: hidden; border-bottom: 2px solid var(--neon-pink); z-index: 1; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,0,85,0.08), transparent 65%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,0,85,0.15); box-shadow: 0 0 20px rgba(255,0,85,0.05); }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.2rem; border-radius: var(--radius); transition: background 0.2s; }
.contact-info-item:hover { background: rgba(255,0,85,0.04); }
.contact-info-icon { width: 44px; height: 44px; background: transparent; border: 2px solid rgba(255,0,85,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; color: var(--neon-pink); }
.contact-info-icon svg { width: 20px; height: 20px; fill: currentColor; filter: drop-shadow(0 0 4px currentColor); }
.contact-info-item:hover .contact-info-icon { border-color: var(--neon-pink); box-shadow: var(--glow-pink-sm); }
.contact-info-label { font-family: var(--font-ui); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info-value { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 600; color: var(--white); }
.contact-info-value a { color: var(--neon-pink); transition: color 0.2s; }
.contact-info-value a:hover { text-shadow: var(--glow-pink-sm); }
.contact-form-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,0,85,0.1); }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 0.85rem 1.1rem; font-family: var(--font-body); font-size: 0.9rem; color: var(--white); transition: all 0.25s var(--ease); outline: none; appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--neon-pink); box-shadow: 0 0 0 3px rgba(255,0,85,0.15), var(--glow-pink-sm); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; text-align: center; padding: 2.5rem 2rem; }
.form-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success-title { font-family: var(--font-heading); font-size: 1.6rem; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
.form-success-text { font-size: 0.9rem; color: var(--text-muted); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.8rem; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.7rem 0.5rem; font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.hours-table td:last-child { text-align: right; color: var(--neon-pink); font-family: var(--font-heading); font-size: 0.95rem; }
.map-placeholder { width: 100%; height: 340px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid rgba(255,0,85,0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem; position: relative; overflow: hidden; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.map-placeholder:hover { border-color: rgba(255,0,85,0.4); box-shadow: 0 0 25px rgba(255,0,85,0.08); }
.map-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,0,85,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,0,85,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.map-pin { font-size: 2.5rem; position: relative; z-index: 2; color: var(--neon-pink); animation: bounce 2s ease-in-out infinite; }
.map-pin svg { width: 40px; height: 40px; fill: currentColor; filter: drop-shadow(0 0 10px currentColor); }
.map-label { position: relative; z-index: 2; text-align: center; }
.map-label-title { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; color: var(--white); margin-bottom: 0.3rem; }
.map-label-sub { font-size: 0.8rem; color: var(--text-muted); }
.map-label-cta { display: inline-block; margin-top: 0.8rem; font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon-pink); border: 1px solid var(--neon-pink); border-radius: var(--radius-pill); padding: 0.4rem 1rem; transition: all 0.25s; }
.map-placeholder:hover .map-label-cta { background: var(--neon-pink); color: var(--white); box-shadow: var(--glow-pink-sm); }
.map-container { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid rgba(255,0,85,0.2); box-shadow: 0 0 30px rgba(255,0,85,0.08); }
.map-overlay-info { text-align: center; padding: 1rem; background: var(--bg-card); border-top: 1px solid rgba(255,0,85,0.15); }
/* FOOTER */
.footer { background: #030303; border-top: 2px solid var(--neon-pink); padding: 4rem 0 2rem; position: relative; z-index: 1; box-shadow: 0 -4px 20px rgba(255,0,85,0.1); }

/* POPULAR ITEMS */
.popular-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.popular-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,0,85,0.15); transition: all 0.4s var(--ease); position: relative; }
.popular-card:hover { transform: translateY(-12px); box-shadow: 0 0 40px rgba(255,0,85,0.15), 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(255,0,85,0.4); }
.popular-card-image { position: relative; height: 220px; overflow: hidden; background: var(--bg-surface); }
.popular-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); filter: brightness(0.9) saturate(1.1); }
.popular-card:hover .popular-card-image img { transform: scale(1.1); filter: brightness(1) saturate(1.2); }
.popular-badge { position: absolute; top: 12px; left: 12px; background: var(--neon-pink); color: #fff; font-family: var(--font-ui); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); box-shadow: 0 0 12px rgba(255,0,85,0.5); z-index: 2; }
.popular-badge--green { background: var(--neon-green); color: #050505; box-shadow: 0 0 12px rgba(57,255,20,0.5); }
.popular-badge--yellow { background: var(--neon-yellow); color: #050505; box-shadow: 0 0 12px rgba(255,240,31,0.5); }
.popular-card-content { padding: 1.2rem 1.4rem 1.4rem; }
.popular-card-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 0.4rem; text-shadow: 0 0 8px rgba(255,0,85,0.3); }
.popular-card-desc { font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.popular-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.popular-card-price { font-family: var(--font-heading); font-size: 1.6rem; color: var(--neon-pink); text-shadow: var(--glow-pink); font-weight: 700; }

/* MENU SLIDER */
.menu-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 2rem; border: 1px solid rgba(255,0,85,0.15); }
.menu-slider-track { display: flex; transition: transform 0.6s var(--ease); }
.menu-slider-item { min-width: 100%; position: relative; height: 280px; overflow: hidden; }
.menu-slider-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(1.1); }
.menu-slider-item-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.7) 100%); }
.menu-slider-item-title { font-family: var(--font-heading); font-size: 2rem; text-transform: uppercase; color: var(--white); text-shadow: var(--glow-pink); margin-bottom: 0.5rem; }
.menu-slider-item-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.menu-slider-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 5; }
.menu-slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 1px solid rgba(255,0,85,0.3); cursor: pointer; transition: all 0.3s; }
.menu-slider-dot.active { background: var(--neon-pink); box-shadow: 0 0 10px rgba(255,0,85,0.5); transform: scale(1.2); }
.menu-slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(5,5,5,0.6); border: 1px solid rgba(255,0,85,0.3); color: var(--white); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.3s; font-size: 1.2rem; }
.menu-slider-nav:hover { background: var(--neon-pink); border-color: var(--neon-pink); box-shadow: var(--glow-pink-sm); }
.menu-slider-nav--prev { left: 1rem; }
.menu-slider-nav--next { right: 1rem; }

/* FACEBOOK LINK */
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social-link { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,0,85,0.3); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; }
.footer-social-link:hover { border-color: var(--neon-pink); color: var(--neon-pink); box-shadow: var(--glow-pink-sm); transform: translateY(-3px); }
.footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social-link--tiktok { border-color: rgba(0,212,255,0.3); color: var(--neon-blue); }
.footer-social-link--tiktok:hover { border-color: var(--neon-blue); color: var(--neon-blue); box-shadow: 0 0 12px rgba(0,212,255,0.25); }

/* NEON TEXT GLOW ANIMATIONS */
@keyframes neonTextPulse {
  0%, 100% { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor; }
  50% { text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 20px currentColor; }
}
@keyframes neonBorderPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,0,85,0.5), 0 0 20px rgba(255,0,85,0.3); }
  50% { box-shadow: 0 0 5px rgba(255,0,85,0.3), 0 0 10px rgba(255,0,85,0.15); }
}
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.neon-text-glow { animation: neonTextPulse 2s ease-in-out infinite; }
.neon-border-glow { animation: neonBorderPulse 2s ease-in-out infinite; }

/* RESPONSIVE ADDITIONS */
@media (max-width: 900px) {
  .popular-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .menu-slider-item { height: 200px; }
  .menu-slider-item-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .popular-card-image { height: 180px; }
  .popular-card-title { font-size: 1rem; }
  .popular-card-price { font-size: 1.3rem; }
  .menu-slider-item { height: 160px; }
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,0,85,0.1); }
.footer-brand-tagline { font-family: var(--font-script); font-size: 1.1rem; color: var(--neon-yellow); margin-bottom: 0.8rem; text-shadow: var(--glow-yellow-sm); }
.footer-brand-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-heading { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--neon-pink); margin-bottom: 1.2rem; text-shadow: var(--glow-pink-sm); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-family: var(--font-ui); font-size: 0.84rem; color: var(--text-muted); transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-link::before { content: '>'; color: var(--neon-pink); font-size: 1.1rem; }
.footer-link:hover { color: var(--white); }
.footer-contact-item { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 0.7rem; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.footer-contact-icon { flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-icon svg { width: 16px; height: 16px; fill: currentColor; filter: drop-shadow(0 0 3px currentColor); }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--neon-pink); }
.footer-hours-row { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.5rem; gap: 1rem; }
.footer-hours-day { color: var(--text-muted); }
.footer-hours-time { color: var(--neon-pink); font-family: var(--font-heading); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-muted); }
.footer-copyright span { color: var(--neon-pink); }
.footer-made { font-size: 0.75rem; color: var(--text-dim); }

/* GALLERY PAGE */
.gallery-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 2px solid rgba(255,0,85,0.2); box-shadow: 0 0 30px rgba(255,0,85,0.08); margin-bottom: 1.5rem; background: var(--bg-surface); }
.gallery-slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-slider-slide { min-width: 100%; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.gallery-slider-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(5,5,5,0.7); border: 2px solid rgba(255,0,85,0.4); color: var(--white); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.3s var(--ease); font-size: 1.8rem; line-height: 1; backdrop-filter: blur(4px); }
.gallery-nav:hover { background: var(--neon-pink); border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(255,0,85,0.5); transform: translateY(-50%) scale(1.1); }
.gallery-nav--prev { left: 1rem; }
.gallery-nav--next { right: 1rem; }
.gallery-dots { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 5; }
.gallery-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s var(--ease); }
.gallery-dots span.active { background: var(--neon-pink); border-color: var(--neon-pink); box-shadow: 0 0 12px rgba(255,0,85,0.6); transform: scale(1.25); }
.gallery-counter { position: absolute; top: 1.2rem; right: 1.2rem; background: rgba(5,5,5,0.75); backdrop-filter: blur(4px); border: 1px solid rgba(255,0,85,0.3); border-radius: var(--radius-pill); padding: 0.35rem 0.9rem; font-family: var(--font-heading); font-size: 0.75rem; color: var(--white); z-index: 5; letter-spacing: 0.05em; }

/* HOME GALLERY STRIP */
.gallery-strip { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 2px solid rgba(255,0,85,0.15); box-shadow: 0 0 25px rgba(255,0,85,0.06); }
.gallery-strip-track { display: flex; gap: 0.5rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0.5rem; scroll-behavior: smooth; }
.gallery-strip-track::-webkit-scrollbar { display: none; }
.gallery-strip-slide { flex-shrink: 0; width: 280px; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.gallery-strip-slide:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 0 20px rgba(255,0,85,0.2); }
.gallery-strip-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-strip-scroll { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(5,5,5,0.75); border: 2px solid rgba(255,0,85,0.4); color: var(--white); width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.3s var(--ease); font-size: 1.5rem; line-height: 1; backdrop-filter: blur(4px); }
.gallery-strip-scroll:hover { background: var(--neon-pink); border-color: var(--neon-pink); box-shadow: 0 0 15px rgba(255,0,85,0.4); transform: translateY(-50%) scale(1.1); }
.gallery-strip-scroll--left { left: 0.5rem; }
.gallery-strip-scroll--right { right: 0.5rem; }
@media (max-width: 600px) {
  .gallery-strip-slide { width: 200px; }
  .gallery-strip-scroll { width: 36px; height: 36px; font-size: 1.2rem; }
}

.gallery-thumbs { display: grid; grid-template-columns: repeat(9, 1fr); gap: 0.5rem; margin-bottom: 2rem; }
.gallery-thumb { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.3s var(--ease); opacity: 0.5; }
.gallery-thumb:hover { opacity: 0.8; border-color: rgba(255,0,85,0.4); }
.gallery-thumb.active { opacity: 1; border-color: var(--neon-pink); box-shadow: 0 0 12px rgba(255,0,85,0.4); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(5,5,5,0.95); backdrop-filter: blur(8px); align-items: center; justify-content: center; flex-direction: column; }
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2.8rem; cursor: pointer; z-index: 10; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s; }
.gallery-lightbox-close:hover { color: var(--neon-pink); transform: rotate(90deg); }
.gallery-lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-lg); box-shadow: 0 0 40px rgba(255,0,85,0.15); animation: fadeIn 0.3s var(--ease); }
.gallery-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: none; color: var(--white); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.3s var(--ease); font-size: 2.2rem; line-height: 1; }
.gallery-lightbox-nav:hover { background: var(--neon-pink); box-shadow: 0 0 30px rgba(255,0,85,0.4); transform: translateY(-50%) scale(1.1); }
.gallery-lightbox-nav--prev { left: 1.5rem; }
.gallery-lightbox-nav--next { right: 1.5rem; }
.gallery-lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-family: var(--font-heading); font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }
@media (max-width: 900px) {
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
  .gallery-slider-slide { aspect-ratio: 4/3; }
  .gallery-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .gallery-lightbox-nav { width: 44px; height: 44px; font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .gallery-nav { width: 36px; height: 36px; font-size: 1.2rem; }
  .gallery-nav--prev { left: 0.6rem; }
  .gallery-nav--next { right: 0.6rem; }
  .gallery-lightbox-nav--prev { left: 0.6rem; }
  .gallery-lightbox-nav--next { right: 0.6rem; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* SCROLL-TO-TOP BUTTON */
.scroll-top-btn { position: fixed; bottom: 2rem; left: 2rem; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: var(--neon-pink); border: 2px solid var(--neon-pink); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.8); transition: opacity 0.4s var(--ease), visibility 0.4s, transform 0.4s var(--ease); box-shadow: 0 0 20px rgba(255,0,85,0.4), 0 4px 16px rgba(0,0,0,0.3); }
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); animation: scrollTopFloat 2.5s ease-in-out infinite; }
.scroll-top-btn:hover { background: transparent; box-shadow: 0 0 30px rgba(255,0,85,0.6); transform: translateY(-4px) scale(1.1); }
.scroll-top-btn img { width: 34px; height: 34px; }
@keyframes scrollTopFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.05); } }

/* SCROLL DIRECTION EFFECTS */
.scroll-up { animation: slideInUp 0.4s var(--ease) forwards; }
.scroll-down { animation: slideInDown 0.4s var(--ease) forwards; }
@keyframes slideInUp { from { opacity: 0.8; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInDown { from { opacity: 0.8; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* PARALLAX SECTIONS */
.parallax-section { position: relative; overflow: hidden; }
.parallax-section::before { content: ''; position: absolute; inset: 0; background-attachment: fixed; background-size: cover; background-position: center; z-index: 0; opacity: 0.08; pointer-events: none; }

/* MOBILE MENU SLIDER */
.mobile-slider { width: 100%; max-width: 340px; margin: 0 auto 2rem; border-radius: var(--radius-lg); overflow: hidden; position: relative; border: 1px solid rgba(255,0,85,0.2); box-shadow: 0 0 20px rgba(255,0,85,0.1); }
.mobile-slider-track { display: flex; transition: transform 0.5s var(--ease); }
.mobile-slider-slide { min-width: 100%; position: relative; }
.mobile-slider-slide img { width: 100%; height: 160px; object-fit: cover; }
.mobile-slider-slide-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(transparent, rgba(5,5,5,0.95)); }
.mobile-slider-slide-title { font-family: var(--font-heading); font-size: 0.9rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; }
.mobile-slider-slide-desc { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }
.mobile-slider-dots { display: flex; justify-content: center; gap: 6px; padding: 0.6rem 0; background: var(--bg-card); }
.mobile-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; }
.mobile-slider-dot.active { background: var(--neon-pink); box-shadow: 0 0 8px rgba(255,0,85,0.5); transform: scale(1.2); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes neonFlicker { 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; text-shadow: var(--glow-pink); } 20%, 24%, 55% { opacity: 0.6; text-shadow: none; } }
@keyframes neonPulse { 0%, 100% { box-shadow: var(--glow-pink-sm); } 50% { box-shadow: var(--glow-pink); } }
@keyframes neonBorderGlow { 0%, 100% { border-color: rgba(255,0,85,0.3); } 33% { border-color: rgba(57,255,20,0.3); } 66% { border-color: rgba(255,240,31,0.3); } }

/* RESPONSIVE */
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-content > * { display: flex; flex-direction: column; align-items: center; }
  .hero-left { padding: 7rem 0 3rem; }
  .hero-badge { margin-top: 1.8rem; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { min-width: unset; flex: 1; max-width: 260px; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 200px; height: 200px; }
  .hero-orb-3 { width: 150px; height: 150px; }
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255,0,85,0.1); }
  .info-item:last-child { border-bottom: none; }
  .lunch-hours-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pizza-grid { grid-template-columns: 1fr; }
  .menu-cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.2rem; }
  .hero-title-line1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-title-line2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-title-line3 { font-size: clamp(0.9rem, 4vw, 1.2rem); }
  .hero-actions { flex-direction: column; gap: 0.85rem; width: 100%; max-width: 340px; margin: 0 auto; }
  .hero-actions .btn { font-size: 0.9rem; padding: 1rem 1.5rem; min-height: 52px; width: 100%; flex: none; max-width: none; letter-spacing: 0.08em; }
  .nav-cta { font-size: 0.85rem; padding: 0.75rem 1.4rem; min-height: 44px; }
  .btn { font-size: 0.9rem; padding: 1rem 2rem; min-height: 50px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pizza-category-header { flex-direction: column; align-items: flex-start; }
  .menu-tab { padding: 1rem 1.2rem; font-size: 0.78rem; min-height: 48px; }
  .hours-grid { gap: 0.5rem; }
  .about-image-badge { bottom: 8px; left: 8px; }
  .lunch-card { padding: 1.5rem; }
  .info-item { padding: 1.2rem; }
  .info-item-value { font-size: 0.9rem; }
}

/* =====================================================
   LIGHT / DAY THEME
   (applies when <html data-theme="light">)
   ===================================================== */
:root[data-theme="light"] {
  --bg: #f6f4f1;
  --bg-card: #ffffff;
  --bg-card-hover: #efece7;
  --bg-surface: #fbfaf7;
  --text: #1c1a18;
  --text-muted: #5a554f;
  --text-dim: #8a847c;
  --black: #ffffff;
  --white: #1c1a18;
  --canvas: #ffffff;
  --canvas-2: #efece7;
  --gray-100: #e9e6e1;
  --gray-200: #dfdbd4;
  --gray-300: #d0cbc3;
  --gray-600: #8a847c;
  --gray-800: #4a453f;
  --carbon-2: #ffffff;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 32px rgba(223,16,103,0.15);
  --shadow-pizza: 0 30px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(223,16,103,0.08);
}

:root[data-theme="light"] body { background-color: var(--bg); color: var(--text); }
:root[data-theme="light"] body::before { opacity: 0.015; }
:root[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg); }

/* NAV */
:root[data-theme="light"] .nav { background: rgba(255,255,255,0.9); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
:root[data-theme="light"] .nav-link { color: rgba(28,26,24,0.7); border-right-color: rgba(0,0,0,0.06); }
:root[data-theme="light"] .nav-link:hover,
:root[data-theme="light"] .nav-link.active { color: #1c1a18; }
:root[data-theme="light"] .nav-lang { color: var(--neon-pink); border-color: rgba(255,0,85,0.35); }
:root[data-theme="light"] .nav-lang:hover { background: rgba(255,0,85,0.08); border-color: var(--neon-pink); box-shadow: 0 0 15px rgba(255,0,85,0.2); color: var(--neon-pink); }
:root[data-theme="light"] .nav-social { border-color: rgba(255,0,85,0.25); }
:root[data-theme="light"] .theme-toggle { color: #1c1a18; border-color: rgba(28,26,24,0.25); }
:root[data-theme="light"] .theme-toggle:hover { background: rgba(28,26,24,0.06); border-color: #1c1a18; color: #1c1a18; box-shadow: 0 0 15px rgba(0,0,0,0.12); }
:root[data-theme="light"] .theme-toggle--mobile { color: #1c1a18; border-color: rgba(28,26,24,0.3); background: rgba(28,26,24,0.05); }
:root[data-theme="light"] .theme-toggle--mobile:hover { background: rgba(28,26,24,0.1); border-color: #1c1a18; color: #1c1a18; box-shadow: 0 0 18px rgba(0,0,0,0.15); }
:root[data-theme="light"] .nav-mobile { background: rgba(255,255,255,0.98); }
:root[data-theme="light"] .nav-mobile .nav-link { color: rgba(28,26,24,0.85); }
:root[data-theme="light"] .nav-mobile-close:hover { color: #fff; }

/* HERO */
:root[data-theme="light"] .hero-video { opacity: 0.25; filter: brightness(1.05) saturate(1.1); }
:root[data-theme="light"] .hero::before { background: radial-gradient(ellipse at 25% 35%, rgba(255,0,85,0.14), transparent 55%), radial-gradient(ellipse at 80% 65%, rgba(255,176,0,0.12), transparent 50%), linear-gradient(135deg, rgba(255,240,200,0.55) 0%, rgba(246,244,241,0.92) 55%, rgba(255,228,150,0.25) 100%); }
:root[data-theme="light"] .hero::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(circle at 75% 30%, rgba(255,0,85,0.08), transparent 40%); animation: heroWarmPulse 6s ease-in-out infinite; }
@keyframes heroWarmPulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
:root[data-theme="light"] .hero-title-line3 { color: #b8860b; text-shadow: 0 0 12px rgba(184,134,11,0.3); }
:root[data-theme="light"] .hero-desc { color: rgba(28,26,24,0.82); font-size: 1rem; }
:root[data-theme="light"] .hero-subtitle { color: #c79a1e; text-shadow: 0 0 10px rgba(184,134,11,0.2); }
:root[data-theme="light"] .hero-scroll-text { color: rgba(28,26,24,0.5); }
:root[data-theme="light"] .hero-orb-1 { opacity: 0.06; }
:root[data-theme="light"] .hero-orb-2 { opacity: 0.04; }
:root[data-theme="light"] .hero-orb-3 { opacity: 0.03; }

/* CTA OVERLAY SECTION */
:root[data-theme="light"] #menu-cta { background: linear-gradient(rgba(246,244,241,0.88), rgba(246,244,241,0.88)), url('img/f0d0303e-delizioso-banner-bgimg.png') center/cover no-repeat; }

/* HARDCODED LIGHT TEXT → DARK ON LIGHT SURFACES */
:root[data-theme="light"] .hours-day { color: rgba(28,26,24,0.7); }
:root[data-theme="light"] .hours-table td { color: rgba(28,26,24,0.65); }
:root[data-theme="light"] .extra-item { background: rgba(28,26,24,0.025); border-color: rgba(28,26,24,0.07); }
:root[data-theme="light"] .extra-name { color: rgba(28,26,24,0.7); }
:root[data-theme="light"] .form-input, :root[data-theme="light"] .form-select, :root[data-theme="light"] .form-textarea { border-color: rgba(28,26,24,0.14); }
:root[data-theme="light"] .btn-ghost { color: rgba(28,26,24,0.6); border-color: rgba(28,26,24,0.2); }
:root[data-theme="light"] .btn-outline-white { color: rgba(28,26,24,0.7); border-color: rgba(28,26,24,0.3); }
:root[data-theme="light"] .btn-outline-white:hover { background: rgba(28,26,24,0.05); border-color: #1c1a18; color: #1c1a18; }
:root[data-theme="light"] .btn-black { background: #141414; color: #fff; border-color: rgba(255,255,255,0.2); }
:root[data-theme="light"] .page-header::before { color: rgba(28,26,24,0.025); }
:root[data-theme="light"] .pizza-num { color: #fff; }

/* TEXT/ICONS THAT MUST STAY WHITE ON DARK PHOTO SURFACES */
:root[data-theme="light"] .menu-slider-nav,
:root[data-theme="light"] .gallery-nav,
:root[data-theme="light"] .gallery-strip-scroll { color: #fff; background: rgba(28,26,24,0.7); }
:root[data-theme="light"] .gallery-counter { color: #fff; background: rgba(28,26,24,0.75); }
:root[data-theme="light"] .menu-slider-item-title,
:root[data-theme="light"] .mobile-slider-slide-title { color: #fff; }
:root[data-theme="light"] .gallery-lightbox-close,
:root[data-theme="light"] .gallery-lightbox-nav { color: #fff; }

/* FOOTER + MISC */
:root[data-theme="light"] .footer { background: #efece8; box-shadow: 0 -4px 20px rgba(0,0,0,0.06); }
:root[data-theme="light"] .footer-brand-tagline { color: #b8860b; text-shadow: none; }
:root[data-theme="light"] .footer-contact-item a { color: rgba(28,26,24,0.7); }
:root[data-theme="light"] .extra-price { color: #b8860b; text-shadow: none; }
:root[data-theme="light"] .menu-tab-icon { filter: none; }

/* DAY MODE: REDUCE NEON GLOW + DARKEN GREEN FOR READABILITY */
:root[data-theme="light"] {
  --neon-green: #178a17;
  --neon-green-dim: rgba(23,138,23,0.65);
  --glow-pink: none;
  --glow-pink-sm: none;
  --glow-green: none;
  --glow-green-sm: none;
  --glow-yellow: none;
  --glow-yellow-sm: none;
  --glow-blue: none;
  --glow-blue-sm: none;
}
:root[data-theme="light"] .hero-title-line1,
:root[data-theme="light"] .hero-title-line2,
:root[data-theme="light"] .hero-title-accent,
:root[data-theme="light"] .hero-subtitle,
:root[data-theme="light"] .neon-text-glow {
  text-shadow: none;
  animation: none;
}
:root[data-theme="light"] .hero-title-accent,
:root[data-theme="light"] .hero-subtitle { color: #b8860b; }
:root[data-theme="light"] .hero-badge { box-shadow: none; }
:root[data-theme="light"] .hero-badge-dot { box-shadow: 0 0 4px var(--neon-green); }
:root[data-theme="light"] .btn-primary,
:root[data-theme="light"] .btn-red { box-shadow: 0 0 8px rgba(255,0,85,0.18); animation: none; }
:root[data-theme="light"] .btn-foodora { box-shadow: 0 0 8px rgba(223,16,103,0.22); }
:root[data-theme="light"] .btn-foodora:hover { box-shadow: 0 0 12px rgba(223,16,103,0.3); }
