/* ==========================================================================
   Elif Burger - Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Oswald:wght@400;500;600&family=Permanent+Marker&family=Poppins:wght@400;500;600;700&family=Shrikhand&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties (Theme Variables)
   -------------------------------------------------------------------------- */
:root {
  /* Typography */
  --font-sans: 'Poppins', 'Inter', sans-serif;
  --font-serif: 'Shrikhand', serif;
  --font-mono: 'Oswald', sans-serif;
  --font-heading: 'Shrikhand', serif;
  --font-condensed: 'Oswald', 'Arial Narrow', sans-serif;
  --font-handwritten: 'Caveat', cursive;
  --font-handwritten-alt: 'Permanent Marker', cursive;

  /* Border Radius */
  --radius-xs: 0.375rem;
  --radius-sm: 0.5rem;
  --radius: 0.625rem;
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: 1rem;
  --radius-xl: calc(var(--radius) + 4px);

  /* Light Mode Colors */
  --background: #fff9f3;
  --foreground: #1f140c;
  --card: #fff2e1;
  --card-foreground: #1f140c;
  --popover: #fff9f3;
  --popover-foreground: #1f140c;
  --primary: #ff6b1a;
  --primary-foreground: #fffaf4;
  --secondary: #f2c230;
  --secondary-foreground: #1f140c;
  --muted: #f3e7d7;
  --muted-foreground: #6d5947;
  --accent: #4fb46d;
  --accent-foreground: #0f1b12;
  --destructive: #d94725;
  --destructive-foreground: #fffaf4;
  --border: #ead7c0;
  --input: #ead7c0;
  --ring: #ff6b1a;
  --surface: #fff9f3;
  --surface-2: #f9efdf;

  /* Accent Colors */
  --accent-blue: #1a8cff;
  --accent-green: #4fb46d;
  --accent-gold: #f2c230;
  --accent-deep-orange: #c94b1a;

  /* Shadows */
  --shadow-color: #120c07;
  --shadow-opacity: 0.08;
  --shadow-2xs: 0 8px 18px -12px rgba(0, 0, 0, 0.08);
  --shadow-xs: 0 10px 24px -14px rgba(0, 0, 0, 0.09);
  --shadow-sm: 0 12px 28px -14px rgba(0, 0, 0, 0.1);
  --shadow: 0 14px 32px -16px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 16px 40px -18px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 50px -20px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 24px 60px -24px rgba(0, 0, 0, 0.18);
  --shadow-2xl: 0 28px 80px -28px rgba(0, 0, 0, 0.2);

  /* Bubble Menu */
  --bubble-overlay: rgba(255, 249, 243, 0.94);
  --bubble-size: 48px;
  --bubble-pill-bg: rgba(255, 247, 238, 0.96);
  --bubble-pill-color: #1f140c;
  --bubble-pill-border: rgba(18, 12, 7, 0.08);
}

/* Dark Mode */
.dark {
  --background: #191410;
  --foreground: #f9f1e7;
  --card: #231a15;
  --card-foreground: #f9f1e7;
  --popover: #231a15;
  --popover-foreground: #f9f1e7;
  --primary: #ff8640;
  --primary-foreground: #130a05;
  --secondary: #f4d25a;
  --secondary-foreground: #120a05;
  --muted: #30251d;
  --muted-foreground: #ecdcc8;
  --accent: #63de91;
  --accent-foreground: #0c120d;
  --destructive: #c74a28;
  --destructive-foreground: #fff5ec;
  --border: #46362b;
  --input: #46362b;
  --ring: #ff8640;
  --surface: #201813;
  --surface-2: #2a1f19;

  /* Dark Mode Shadows (orange tint) */
  --shadow-color: #FE6707;
  --shadow-opacity: 0.16;
  --shadow-2xs: 0 8px 18px -12px rgba(0, 0, 0, 0.18);
  --shadow-xs: 0 10px 24px -14px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 12px 28px -14px rgba(0, 0, 0, 0.22);
  --shadow: 0 14px 32px -16px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 16px 40px -18px rgba(0, 0, 0, 0.26);
  --shadow-lg: 0 20px 50px -20px rgba(0, 0, 0, 0.28);
  --shadow-xl: 0 24px 60px -24px rgba(0, 0, 0, 0.3);
  --shadow-2xl: 0 28px 80px -28px rgba(0, 0, 0, 0.32);

  /* Dark Bubble Menu */
  --bubble-overlay: rgba(14, 11, 9, 0.9);
  --bubble-pill-bg: rgba(22, 17, 13, 0.92);
  --bubble-pill-color: #f7ede2;
  --bubble-pill-border: rgba(255, 231, 204, 0.14);
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, .heading-display {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h2, h3, h4, h5, h6, p, li {
  font-family: var(--font-sans);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-balance {
  text-wrap: balance;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Text Colors */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }

/* Background Colors */
.bg-surface { background-color: var(--surface); }
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }

/* --------------------------------------------------------------------------
   Header Component
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  background: color-mix(in srgb, var(--background) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  --header-control-size: clamp(44px, 4.5vw, 56px);
  --header-logo-height: 44px;
}

.dark .site-header {
  border-color: color-mix(in srgb, var(--border) 40%, transparent);
}

.header-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .header-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  width: auto;
  height: var(--header-logo-height);
  max-width: 200px;
}

.header-controls {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .header-controls {
    width: auto;
    flex: 1;
    justify-content: flex-end;
    gap: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   Button Component
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary) 90%, black);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.dark .btn-outline {
  color: white;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
}

.dark .btn-ghost {
  color: white;
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Theme Toggle Component
   -------------------------------------------------------------------------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--header-control-size, 48px);
  height: var(--header-control-size, 48px);
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--muted-foreground);
  transition: all 0.15s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--primary);
  background-color: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}

.dark .theme-toggle {
  border-color: color-mix(in srgb, var(--border) 80%, transparent);
  background-color: var(--surface-2);
}

.dark .theme-toggle:hover {
  border-color: var(--primary);
  background-color: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary);
}

.theme-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.theme-toggle .icon-sun,
.dark .theme-toggle .icon-moon {
  display: block;
}

.theme-toggle .icon-moon,
.dark .theme-toggle .icon-sun {
  display: none;
}

/* Floating Theme Toggle (Mobile) */
.theme-toggle-floating {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  box-shadow: var(--shadow-2xl);
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .theme-toggle-floating {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Language Switcher Component
   -------------------------------------------------------------------------- */
.language-switcher {
  position: relative;
  display: inline-flex;
}

.language-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--header-control-size, 48px);
  height: var(--header-control-size, 48px);
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s ease;
}

.language-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.dark .language-btn {
  background-color: var(--surface-2);
  color: var(--foreground);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  display: none;
  min-width: 120px;
  z-index: 100;
}

.language-dropdown.open {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s;
}

.language-option:hover {
  background: var(--muted);
}

.language-option.active {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Hero Section / Polaroid Showcase
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  border-radius: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  padding: 2.5rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(8px);
}

@media (min-width: 1024px) {
  .hero-section {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    padding: 2.5rem 3.5rem;
  }
}

.hero-content {
  display: flex;
  max-width: 42rem;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.05;
}

.hero-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

/* Polaroid Container */
.polaroid-container {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  transform: translateX(-48px);
}

@media (min-width: 768px) {
  .polaroid-container {
    justify-content: flex-end;
    margin-top: 6rem;
    transform: translateX(-80px);
  }
}

@media (min-width: 1024px) {
  .polaroid-container {
    margin-top: 10rem;
    transform: translateX(-200px);
  }
}

.polaroid-wrapper {
  position: relative;
  width: 280px;
  height: 350px;
  perspective: 900px;
}

@media (min-width: 640px) {
  .polaroid-wrapper {
    width: 320px;
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .polaroid-wrapper {
    width: 380px;
    height: 475px;
  }
}

/* Polaroid Card */
.polaroid-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

.polaroid-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f5f5f0;
  border-radius: 0.125rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
  overflow: hidden;
}

.polaroid-image {
  position: absolute;
  top: 6%;
  left: 6%;
  right: 6%;
  bottom: 22%;
  background: #171717;
  overflow: hidden;
}

.polaroid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.polaroid-caption span {
  font-family: var(--font-handwritten);
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: #262626;
  text-align: center;
  transform: rotate(-2deg);
}

.polaroid-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
}

/* Polaroid Float Animation */
@keyframes polaroid-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.005);
  }
}

.animate-polaroid-float {
  animation: polaroid-float 3s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
  max-width: 72rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  padding: 2.5rem;
  text-align: center;
}

.dark .contact-section {
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.contact-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--muted-foreground);
}

.contact-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-subtitle {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.contact-hours {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.dark .contact-hours {
  color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.dark .contact-social {
  color: rgba(255, 255, 255, 0.8);
}

.contact-social a:hover {
  color: var(--primary);
}

.contact-compliance {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.dark .contact-compliance {
  color: rgba(255, 255, 255, 0.7);
}

.contact-compliance a {
  text-decoration: underline;
}

.contact-compliance a:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Footer Component
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  background: var(--surface);
}

.dark .site-footer {
  background: var(--background);
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-brand img {
  width: auto;
  height: 36px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.15s;
}

.dark .footer-info a {
  color: white;
}

.footer-info a:hover {
  color: var(--primary);
}

.footer-info p {
  font-size: 1rem;
  color: var(--foreground);
}

.dark .footer-info p {
  color: rgba(255, 255, 255, 0.9);
}

.footer-hours {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-tagline-bottom {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* --------------------------------------------------------------------------
   Bubble Menu Component
   -------------------------------------------------------------------------- */
.bubble-menu-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--header-control-size, 48px);
  height: var(--header-control-size, 48px);
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.dark .menu-toggle-btn {
  background: rgba(9, 9, 11, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

.menu-toggle-btn .menu-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bubble-pill-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle-btn .menu-line + .menu-line {
  margin-top: 6px;
}

.menu-toggle-btn.open .menu-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle-btn.open .menu-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Bubble Menu Overlay */
.bubble-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: radial-gradient(120% 120% at 20% 20%, rgba(255, 190, 130, 0.08), transparent 55%),
              radial-gradient(120% 120% at 80% 30%, rgba(79, 180, 109, 0.08), transparent 55%),
              var(--bubble-overlay);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.bubble-menu-overlay.open {
  display: flex;
  opacity: 1;
}

.bubble-menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 0;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 900px) {
  .bubble-menu-list {
    gap: 1.5rem 0;
  }
}

.bubble-menu-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  max-width: 520px;
}

@media (min-width: 640px) {
  .bubble-menu-item {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .bubble-menu-item {
    flex: 0 0 33.333%;
  }
}

.bubble-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  padding: clamp(1rem, 2vw, 2rem) 0;
  border-radius: 9999px;
  background: var(--bubble-pill-bg);
  color: var(--bubble-pill-color);
  border: 1.5px solid var(--bubble-pill-border);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 12px 36px rgba(255, 107, 26, 0.08);
  transform: scale(0);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

@media (min-width: 900px) {
  .bubble-menu-link {
    min-height: 150px;
    font-size: clamp(1.28rem, 3.2vw, 3.1rem);
  }

  .bubble-menu-link:hover {
    transform: scale(1.06) !important;
  }

  .bubble-menu-link:active {
    transform: scale(0.94) !important;
  }
}

@media (max-width: 899px) {
  .bubble-menu-overlay {
    padding-top: 120px;
    align-items: flex-start;
  }

  .bubble-menu-link:hover {
    transform: scale(1.06);
  }

  .bubble-menu-link:active {
    transform: scale(0.94);
  }
}

/* --------------------------------------------------------------------------
   Surface Components
   -------------------------------------------------------------------------- */
.surface-panel {
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  background: rgba(255, 255, 255, 0.95);
  color: var(--foreground);
  box-shadow: var(--shadow-lg);
}

.dark .surface-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  color: white;
}

.surface-card {
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  background: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.dark .surface-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

/* --------------------------------------------------------------------------
   Menu Page Components
   -------------------------------------------------------------------------- */
.menu-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.menu-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  background: color-mix(in srgb, var(--background) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
}

.dark .menu-header {
  border-color: color-mix(in srgb, var(--border) 40%, transparent);
}

.menu-header-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-main {
  flex: 1;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .menu-main {
    padding: 2rem 1.5rem;
  }
}

.menu-container {
  max-width: 80rem;
  margin: 0 auto;
}

.menu-title {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .menu-title {
    font-size: 2.25rem;
  }
}

.menu-subtitle {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.menu-layout {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-grid-container {
  flex: 1;
  min-width: 0;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  background: var(--surface);
  transition: all 0.2s ease;
}

.dark .product-card {
  background: rgba(24, 24, 27, 0.8);
  border-color: rgba(63, 63, 70, 1);
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--primary) 50%, transparent);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f4f4f5;
}

.dark .product-image {
  background: #27272a;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
}

.product-info {
  padding: 1rem;
}

.product-name {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.product-add-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-add-btn:hover {
  background: color-mix(in srgb, var(--primary) 90%, black);
}

.product-add-btn:active {
  transform: scale(0.95);
}

.product-add-btn.added {
  background: #22c55e;
}

/* Cart Sidebar */
.cart-sidebar {
  display: none;
  flex-direction: column;
  width: 20rem;
  height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: 1rem;
}

@media (min-width: 1024px) {
  .cart-sidebar {
    display: flex;
  }
}

.dark .cart-sidebar {
  background: #18181b;
  border-color: #27272a;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
}

.dark .cart-header {
  border-color: #3f3f46;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.cart-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.cart-count {
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  text-align: center;
}

.cart-empty svg {
  width: 3rem;
  height: 3rem;
  color: #a1a1aa;
}

.cart-empty-title {
  margin-top: 1rem;
  font-weight: 500;
}

.cart-empty-hint {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #fafafa;
}

.dark .cart-item {
  background: rgba(39, 39, 42, 0.5);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-qty-btn {
  padding: 0.375rem;
  border-radius: 9999px;
  transition: background 0.15s;
}

.cart-qty-btn:hover {
  background: #e4e4e7;
}

.dark .cart-qty-btn:hover {
  background: #3f3f46;
}

.cart-qty-btn svg {
  width: 1rem;
  height: 1rem;
}

.cart-item-qty {
  width: 2rem;
  text-align: center;
  font-weight: 600;
}

.cart-remove-btn {
  padding: 0.375rem;
  border-radius: 9999px;
  color: #ef4444;
  transition: background 0.15s;
}

.cart-remove-btn:hover {
  background: rgba(239, 68, 68, 0.1);
}

.dark .cart-remove-btn:hover {
  background: rgba(239, 68, 68, 0.2);
}

.cart-remove-btn svg {
  width: 1rem;
  height: 1rem;
}

.cart-clear-btn {
  width: 100%;
  padding: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s;
}

.cart-clear-btn:hover {
  color: #ef4444;
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
}

.dark .cart-footer {
  border-color: #3f3f46;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total-label {
  color: var(--muted-foreground);
}

.cart-total-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.cart-checkout-btn {
  width: 100%;
  padding: 0.875rem;
  border-radius: 9999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  transition: background 0.2s;
}

.cart-checkout-btn:hover {
  background: color-mix(in srgb, var(--primary) 90%, black);
}

/* Mobile Cart Drawer */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .cart-drawer-backdrop {
    display: none;
  }
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 51;
  width: 100%;
  max-width: 28rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.dark .cart-drawer {
  background: #18181b;
}

.cart-drawer.open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .cart-drawer {
    display: none;
  }
}

.cart-drawer-close {
  padding: 0.25rem;
  border-radius: 9999px;
  transition: background 0.15s;
}

.cart-drawer-close:hover {
  background: #e4e4e7;
}

.dark .cart-drawer-close:hover {
  background: #3f3f46;
}

.cart-drawer-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Floating Cart Button */
.cart-floating-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-2xl);
}

.cart-floating-btn.visible {
  display: flex;
}

@media (min-width: 1024px) {
  .cart-floating-btn {
    display: none !important;
  }
}

.cart-floating-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-floating-left svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cart-floating-label {
  font-weight: 600;
}

.cart-floating-total {
  font-size: 1.125rem;
  font-weight: 700;
}

/* Checkout Form */
.checkout-container {
  min-height: 60vh;
  padding: 3rem 1rem;
}

.checkout-form {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: 1.5rem;
}

.dark .checkout-form {
  background: #18181b;
  border-color: #27272a;
}

.checkout-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.checkout-subtitle {
  margin-top: 0.5rem;
  text-align: center;
  color: var(--muted-foreground);
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-label .required {
  color: #ef4444;
  margin-left: 0.25rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dark .form-input {
  background: #27272a;
  border-color: #3f3f46;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent);
}

.form-input.error {
  border-color: #ef4444;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
}

.checkout-summary {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: 0.75rem;
}

.dark .checkout-summary {
  background: #27272a;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.125rem;
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checkout-submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 9999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.checkout-submit-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--primary) 90%, black);
}

.checkout-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.checkout-back-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 9999px;
  background: transparent;
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.15s;
}

.checkout-back-btn:hover {
  color: var(--foreground);
}

/* Order Confirmation */
.confirmation-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.confirmation-card {
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  border-radius: 1.5rem;
  text-align: center;
}

.dark .confirmation-card {
  background: #18181b;
  border-color: #27272a;
}

.confirmation-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  border-radius: 9999px;
  color: #22c55e;
}

.dark .confirmation-icon {
  background: rgba(34, 197, 94, 0.2);
}

.confirmation-icon svg {
  width: 2rem;
  height: 2rem;
}

.confirmation-title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.confirmation-subtitle {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.confirmation-ticket {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: 0.75rem;
}

.dark .confirmation-ticket {
  background: #27272a;
}

.confirmation-ticket-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.confirmation-ticket-number {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.confirmation-message {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.confirmation-address {
  margin-top: 1.5rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-radius: 0.75rem;
}

.confirmation-address-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.confirmation-address-value {
  margin-top: 0.25rem;
  font-weight: 500;
}

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Menu Footer */
.menu-footer {
  border-top: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  background: var(--surface);
  padding: 1.5rem 1rem;
  text-align: center;
}

.dark .menu-footer {
  background: var(--background);
  border-color: #27272a;
}

.menu-footer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   404 Page - Retro TV
   -------------------------------------------------------------------------- */
.not-found-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
}

.not-found-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 72rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .not-found-container {
    flex-direction: row;
    gap: 5rem;
    text-align: left;
  }
}

.not-found-content {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.not-found-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}

.not-found-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .not-found-title {
    font-size: 3rem;
  }
}

.not-found-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.not-found-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .not-found-actions {
    flex-direction: row;
    align-items: center;
  }
}

.not-found-tip {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.not-found-tip strong {
  font-weight: 600;
  color: var(--foreground);
}

kbd {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-family: inherit;
}

/* Retro TV Styles */
.retro-tv-wrapper {
  position: relative;
  width: min(30em, 90vw);
  height: min(30em, 90vw);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-family: var(--font-sans);
}

.retro-tv-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30em;
  height: 30em;
}

.retro-tv-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5em;
}

.retro-tv-antenna {
  position: relative;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  border: 2px solid black;
  background-color: #f27405;
  margin-bottom: -6em;
  z-index: -1;
}

.retro-tv-antenna-shadow {
  position: absolute;
  background-color: transparent;
  width: 50px;
  height: 56px;
  margin-left: 1.68em;
  border-radius: 45%;
  transform: rotate(140deg);
  border: 4px solid transparent;
  box-shadow: inset 0px 16px #a85103, inset 0px 16px 1px 1px #a85103;
}

.retro-tv-antenna::after {
  content: "";
  position: absolute;
  margin-top: -9.4em;
  margin-left: 0.4em;
  transform: rotate(-25deg);
  width: 1em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #f69e50;
}

.retro-tv-antenna::before {
  content: "";
  position: absolute;
  margin-top: 0.2em;
  margin-left: 1.25em;
  transform: rotate(-20deg);
  width: 1.5em;
  height: 0.8em;
  border-radius: 50%;
  background-color: #f69e50;
}

.retro-tv-a1 {
  position: relative;
  top: -102%;
  left: -130%;
  width: 12em;
  height: 5.5em;
  border-radius: 50px;
  background-color: #1a1a1a;
  transform: rotate(-29deg);
  clip-path: polygon(50% 0%, 49% 100%, 52% 100%);
}

.retro-tv-a1d {
  position: relative;
  top: -211%;
  left: -35%;
  transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  border: 2px solid black;
  background-color: #979797;
  z-index: 99;
}

.retro-tv-a2 {
  position: relative;
  top: -210%;
  left: -10%;
  width: 12em;
  height: 4em;
  border-radius: 50px;
  background-color: #1a1a1a;
  clip-path: polygon(47% 0, 47% 0, 34% 34%, 54% 25%, 32% 100%, 29% 96%, 49% 32%, 30% 38%);
  transform: rotate(-8deg);
}

.retro-tv-a2d {
  position: relative;
  top: -294%;
  left: 94%;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  border: 2px solid black;
  background-color: #979797;
  z-index: 99;
}

.retro-tv-a-base {
  display: none;
}

.retro-tv-body {
  position: relative;
  width: 17em;
  height: 9em;
  margin-top: 3em;
  border-radius: 15px;
  background-color: #d36604;
  display: flex;
  justify-content: center;
  border: 2px solid #1d0e01;
  box-shadow: inset 0.2em 0.2em #e69635;
}

.retro-tv-curve {
  position: absolute;
  margin-top: 0.25em;
  margin-left: -0.25em;
  height: 12px;
  width: 12px;
}

.retro-tv-curve svg {
  width: 100%;
  height: 100%;
}

.retro-tv-display {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 3.5px 3.5px 0px #e69635;
}

.retro-tv-screen-outer {
  width: auto;
  height: auto;
  border-radius: 10px;
}

.retro-tv-screen-outer1 {
  width: 11em;
  height: 7.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.retro-tv-screen {
  width: 13em;
  height: 7.85em;
  border: 2px solid #1d0e01;
  background-color: #0f0f0f;
  border-radius: 10px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #252525;
  letter-spacing: 0.15em;
  text-align: center;
}

.retro-tv-notfound-text {
  background-color: black;
  padding-left: 0.3em;
  padding-right: 0.3em;
  font-size: 0.75em;
  color: white;
  border-radius: 5px;
  z-index: 10;
}

.retro-tv-lines {
  display: flex;
  column-gap: 0.1em;
  align-self: flex-end;
}

.retro-tv-line1,
.retro-tv-line3 {
  width: 2px;
  height: 0.5em;
  background-color: black;
  border-radius: 25px 25px 0px 0px;
  margin-top: 0.5em;
}

.retro-tv-line2 {
  flex-grow: 1;
  width: 2px;
  height: 1em;
  background-color: black;
  border-radius: 25px 25px 0px 0px;
}

.retro-tv-buttons {
  width: 4.25em;
  align-self: center;
  height: 8em;
  background-color: #e69635;
  border: 2px solid #1d0e01;
  padding: 0.6em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 0.75em;
  box-shadow: 3px 3px 0px #e69635;
}

.retro-tv-b1,
.retro-tv-b2 {
  width: 1.65em;
  height: 1.65em;
  border-radius: 50%;
  background-color: #7f5934;
  border: 2px solid black;
  box-shadow: inset 2px 2px 1px #b49577, -2px 0px #513721, -2px 0px 0px 1px black;
  position: relative;
}

.retro-tv-b1::before {
  content: "";
  position: absolute;
  margin-top: 1em;
  margin-left: 0.5em;
  transform: rotate(47deg);
  border-radius: 5px;
  width: 0.1em;
  height: 0.4em;
  background-color: #000000;
}

.retro-tv-b1::after {
  content: "";
  position: absolute;
  margin-top: 0.9em;
  margin-left: 0.8em;
  transform: rotate(47deg);
  border-radius: 5px;
  width: 0.1em;
  height: 0.55em;
  background-color: #000000;
}

.retro-tv-b1-inner {
  position: absolute;
  margin-top: -0.1em;
  margin-left: 0.65em;
  transform: rotate(45deg);
  width: 0.15em;
  height: 1.5em;
  background-color: #000000;
}

.retro-tv-b2::before {
  content: "";
  position: absolute;
  margin-top: 1.05em;
  margin-left: 0.8em;
  transform: rotate(-45deg);
  border-radius: 5px;
  width: 0.15em;
  height: 0.4em;
  background-color: #000000;
}

.retro-tv-b2::after {
  content: "";
  position: absolute;
  margin-top: -0.1em;
  margin-left: 0.65em;
  transform: rotate(-45deg);
  width: 0.15em;
  height: 1.5em;
  background-color: #000000;
}

.retro-tv-speakers {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}

.retro-tv-speakers-row {
  display: flex;
  column-gap: 0.25em;
}

.retro-tv-speaker-dot {
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background-color: #7f5934;
  border: 2px solid black;
  box-shadow: inset 1.25px 1.25px 1px #b49577;
}

.retro-tv-speaker-line {
  width: auto;
  height: 2px;
  background-color: #171717;
}

.retro-tv-bottom {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8.7em;
}

.retro-tv-base1,
.retro-tv-base2 {
  height: 1em;
  width: 2em;
  border: 2px solid #171717;
  background-color: #4d4d4d;
  margin-top: -0.15em;
  z-index: -1;
}

.retro-tv-base3 {
  position: absolute;
  height: 0.15em;
  width: 17.5em;
  background-color: #171717;
  margin-top: 0.8em;
}

.retro-tv-text-404 {
  position: absolute;
  display: flex;
  flex-direction: row;
  column-gap: 6em;
  z-index: -5;
  margin-bottom: 2em;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  font-size: 0.75em;
}

.retro-tv-text-4041,
.retro-tv-text-4042,
.retro-tv-text-4043 {
  transform: scaleY(24.5) scaleX(9);
}

@media only screen and (max-width: 495px) {
  .retro-tv-text-404 {
    column-gap: 6em;
  }
}

@media only screen and (max-width: 395px) {
  .retro-tv-text-404 {
    column-gap: 4em;
  }

  .retro-tv-text-4041,
  .retro-tv-text-4042,
  .retro-tv-text-4043 {
    transform: scaleY(25) scaleX(8);
  }
}

/* --------------------------------------------------------------------------
   Reveal Links (Footer)
   -------------------------------------------------------------------------- */
.reveal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.reveal-link {
  position: relative;
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  overflow: hidden;
}

.dark .reveal-link {
  color: white;
}

.reveal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.reveal-link:hover::after {
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Empty State
   -------------------------------------------------------------------------- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  text-align: center;
}

.empty-state-icon {
  font-size: 3.75rem;
}

.empty-state-text {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   View Transitions
   -------------------------------------------------------------------------- */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

/* --------------------------------------------------------------------------
   Responsive Bubble Size
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --bubble-size: 56px;
  }
}

/* --------------------------------------------------------------------------
   Hidden Classes for JS
   -------------------------------------------------------------------------- */
.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

