/* ============================================
   BUI VIEN STREET - DARK HERO THEME
   Pixel-genaue Replikation vom Figma Design
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* Design Tokens - Dark Theme */
:root {
  --bv-dark-bg: #0f0f0f;
  --bv-dark-bg-alt: #141414;
  --bv-dark-surface: #1a1a1a;
  --bv-gold: #d9a441;
  --bv-gold-light: #e5b85a;
  --bv-gold-dark: #c4923a;
  --bv-white: #ffffff;
  --bv-white-soft: rgba(255, 255, 255, 0.85);
  --bv-white-muted: rgba(255, 255, 255, 0.65);
  --bv-teal-glow: rgba(0, 180, 150, 0.15);
  --bv-header-height-dark: 80px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Screen Reader Only - Hidden visually but accessible to bots/screen readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================
   DARK HEADER
   ============================================ */

.bv-dark-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--bv-header-height-dark);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-dark-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.bv-dark-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.bv-dark-logo-main {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bv-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bv-dark-logo-sub {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--bv-white-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation */
.bv-dark-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.bv-dark-nav-link {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bv-white-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}

.bv-dark-nav-link:hover {
  color: var(--bv-gold);
}

.bv-dark-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bv-gold);
  transition: width 0.3s ease;
}

.bv-dark-nav-link:hover::after {
  width: 100%;
}

/* Header Actions */
.bv-dark-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Cart Button im Header */
.bv-dark-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-white-soft);
  transition: all 0.2s ease;
}

.bv-dark-cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bv-gold);
}

.bv-dark-cart-btn svg {
  width: 22px;
  height: 22px;
}

.bv-dark-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.bv-dark-theme-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--bv-white-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.bv-dark-theme-toggle:hover {
  color: var(--bv-gold);
  background: rgba(255, 255, 255, 0.05);
}

.bv-dark-theme-toggle svg {
  width: 20px;
  height: 20px;
}

/* Header CTA Buttons */
.bv-dark-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 6px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.bv-dark-cta--primary {
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
  border-color: var(--bv-gold);
}

.bv-dark-cta--primary:hover {
  background: var(--bv-gold-light);
  border-color: var(--bv-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(217, 164, 65, 0.35);
}

.bv-dark-cta--secondary {
  background: transparent;
  color: var(--bv-gold);
  border-color: var(--bv-gold);
}

.bv-dark-cta--secondary:hover {
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
  transform: translateY(-1px);
}

.bv-dark-cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile Menu Button */
.bv-dark-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--bv-white);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.bv-dark-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bv-dark-bg);
  overflow: hidden;
}

/* Background Image */
.bv-dark-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bv-dark-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark Gradient Overlay (links stärker mit türkisem Schimmer) */
.bv-dark-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    /* Türkis/Teal Color Wash über das ganze Bild */
    linear-gradient(
      135deg,
      rgba(0, 80, 70, 0.4) 0%,
      rgba(0, 100, 90, 0.3) 30%,
      rgba(0, 120, 100, 0.2) 60%,
      rgba(0, 80, 70, 0.15) 100%
    ),
    /* Dunklerer Gradient von links */
    linear-gradient(
      90deg,
      rgba(10, 12, 12, 0.92) 0%,
      rgba(10, 15, 15, 0.8) 30%,
      rgba(10, 20, 20, 0.5) 55%,
      rgba(10, 25, 25, 0.3) 75%,
      rgba(10, 25, 25, 0.2) 100%
    );
}

/* Teal/Green Glow Effect */
.bv-dark-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    ellipse 80% 60% at 85% 50%,
    rgba(0, 150, 130, 0.12) 0%,
    rgba(0, 180, 150, 0.08) 30%,
    transparent 70%
  );
  pointer-events: none;
}

/* Hero Content */
.bv-dark-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--bv-header-height-dark) + 4rem) 2rem 4rem;
  width: 100%;
}

.bv-dark-hero-inner {
  max-width: 650px;
}

/* Eyebrow Text */
.bv-dark-hero-eyebrow {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bv-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Main Headline */
.bv-dark-hero-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--bv-white);
}

.bv-dark-hero-title-accent {
  display: block;
  color: var(--bv-gold);
  font-style: italic;
}

/* Description Text */
.bv-dark-hero-desc {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--bv-white-muted);
  margin: 0 0 2.5rem;
  max-width: 520px;
}

/* Hero CTA Buttons */
.bv-dark-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bv-dark-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: 6px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.bv-dark-hero-cta--primary {
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
  border-color: var(--bv-gold);
}

.bv-dark-hero-cta--primary:hover {
  background: var(--bv-gold-light);
  border-color: var(--bv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 164, 65, 0.4);
}

.bv-dark-hero-cta--secondary {
  background: transparent;
  color: var(--bv-gold);
  border-color: var(--bv-gold);
}

.bv-dark-hero-cta--secondary:hover {
  background: rgba(217, 164, 65, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 164, 65, 0.2);
}

.bv-dark-hero-cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Scroll Indicator / Öffnungszeiten Preview */
.bv-dark-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
}

.bv-dark-hero-scroll-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bv-white-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero Öffnungszeiten Box */
.bv-dark-hero-hours {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bv-dark-hero-hours-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bv-white-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bv-dark-hero-hours-time {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bv-white);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
  .bv-dark-header-inner {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .bv-dark-nav {
    gap: 1.5rem;
  }

  .bv-dark-nav-link {
    font-size: 0.85rem;
  }

  .bv-dark-hero-content {
    padding: calc(var(--bv-header-height-dark) + 3rem) 1.5rem 3rem;
  }

  .bv-dark-hero-inner {
    max-width: 550px;
  }

  .bv-dark-hero-desc {
    font-size: 1rem;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
  .bv-dark-header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 1rem;
  }

  .bv-dark-nav {
    display: none;
  }

  .bv-dark-header-actions {
    gap: 0.75rem;
  }

  .bv-dark-header-actions .bv-dark-cta {
    display: none;
  }

  .bv-dark-menu-btn {
    display: flex;
  }

  .bv-dark-theme-toggle {
    width: 36px;
    height: 36px;
  }

  .bv-dark-logo-main {
    font-size: 1.15rem;
  }

  .bv-dark-logo-sub {
    font-size: 0.6rem;
  }

  .bv-dark-hero {
    min-height: 100svh;
  }

  .bv-dark-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.7) 0%,
      rgba(15, 15, 15, 0.85) 40%,
      rgba(15, 15, 15, 0.95) 100%
    );
  }

  .bv-dark-hero-content {
    padding: calc(var(--bv-header-height-dark) + 2rem) 1.25rem 6rem;
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
  }

  .bv-dark-hero-inner {
    max-width: 100%;
  }

  .bv-dark-hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
  }

  .bv-dark-hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .bv-dark-hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .bv-dark-hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .bv-dark-hero-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .bv-dark-hero-scroll {
    bottom: 1.5rem;
    left: 1.25rem;
  }
}

/* ============================================
   MOBILE NAV PANEL (Dark Theme)
   ============================================ */

.bv-dark-mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bv-dark-mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.bv-dark-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bv-dark-surface);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.bv-dark-mobile-nav-overlay.is-open .bv-dark-mobile-nav {
  transform: translateX(0);
}

.bv-dark-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-dark-mobile-nav-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--bv-white);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.bv-dark-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.bv-dark-mobile-nav-link {
  padding: 1rem;
  color: var(--bv-white-soft);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.bv-dark-mobile-nav-link:hover,
.bv-dark-mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--bv-gold);
}

.bv-dark-mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.bv-dark-mobile-nav-ctas .bv-dark-cta {
  width: 100%;
  justify-content: center;
}

/* ============================================
   SECTION: KULINARISCHE HIGHLIGHTS
   4 Category Cards mit Hover-Effekt
   ============================================ */

.bv-dark-highlights {
  padding: 5rem 2rem;
  background: var(--bv-dark-bg);
}

.bv-dark-highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bv-dark-section-eyebrow {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bv-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.bv-dark-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--bv-white);
  text-align: center;
  margin: 0 0 0.75rem;
}

.bv-dark-section-subtitle {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: var(--bv-white-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.bv-dark-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bv-dark-highlight-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bv-dark-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bv-dark-highlight-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bv-dark-highlight-card:hover .bv-dark-highlight-card-img {
  transform: scale(1.08);
}

.bv-dark-highlight-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 15, 15, 0.7) 100%
  );
}

.bv-dark-highlight-card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   SECTION: FEATURED DISHES
   4 Gerichte mit Bild, Name, Preis
   ============================================ */

.bv-dark-dishes {
  padding: 5rem 2rem;
  background: var(--bv-dark-bg-alt);
}

.bv-dark-dishes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bv-dark-dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.bv-dark-dish-card {
  background: var(--bv-dark-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bv-dark-dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.bv-dark-dish-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.bv-dark-dish-card-content {
  padding: 1.25rem;
}

.bv-dark-dish-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.bv-dark-dish-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0;
}

.bv-dark-dish-card-price {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bv-gold);
  white-space: nowrap;
}

.bv-dark-dish-card-desc {
  font-size: 0.875rem;
  color: var(--bv-white-muted);
  line-height: 1.5;
  margin: 0;
}

.bv-dark-dishes-cta {
  text-align: center;
}

.bv-dark-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 2px solid var(--bv-gold);
  border-radius: 8px;
  background: transparent;
  color: var(--bv-gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bv-dark-btn-outline:hover {
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.3);
}

.bv-dark-btn-outline svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTION: UNSERE GESCHICHTE
   Text links + 4 Stat-Karten rechts
   ============================================ */

.bv-dark-story {
  padding: 5rem 2rem;
  background: var(--bv-dark-bg);
  position: relative;
  overflow: hidden;
}

.bv-dark-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 50%;
  bottom: 0;
  background: radial-gradient(
    ellipse 120% 80% at 20% 50%,
    rgba(217, 164, 65, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.bv-dark-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bv-dark-story-content {
  max-width: 520px;
}

.bv-dark-story-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--bv-white);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.bv-dark-story-text {
  font-size: 1rem;
  color: var(--bv-white-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.bv-dark-story-text--highlight {
  color: var(--bv-gold);
}

.bv-dark-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.bv-dark-stat-card {
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bv-dark-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.3);
}

.bv-dark-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--bv-gold);
  margin-bottom: 0.25rem;
}

.bv-dark-stat-label {
  font-size: 0.85rem;
  color: var(--bv-white-muted);
}

.bv-dark-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

/* ============================================
   SECTION: UNSER RESTAURANT
   3-Image Gallery
   ============================================ */

.bv-dark-gallery {
  padding: 5rem 2rem;
  background: var(--bv-dark-bg-alt);
}

.bv-dark-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bv-dark-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.bv-dark-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.bv-dark-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bv-dark-gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   SECTION: TESTIMONIAL
   Zitat + Sterne
   ============================================ */

.bv-dark-testimonial {
  padding: 5rem 2rem;
  background: var(--bv-dark-bg);
  text-align: center;
}

.bv-dark-testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 3rem 2.5rem;
}

.bv-dark-testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bv-white);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.bv-dark-testimonial-stars {
  color: var(--bv-gold);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.bv-dark-testimonial-author {
  font-size: 0.95rem;
  color: var(--bv-white-muted);
}

.bv-dark-testimonial-author strong {
  color: var(--bv-white-soft);
}

/* ============================================
   SECTION: STANDORT / KONTAKT
   Map + Info (Redesigned)
   ============================================ */

.bv-dark-location {
  padding: 5rem 2rem;
  background: var(--bv-dark-bg-alt);
}

.bv-dark-location-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bv-dark-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.bv-dark-location-map {
  background: var(--bv-dark-surface);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bv-dark-location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.bv-dark-location-map-placeholder {
  text-align: center;
  padding: 2rem;
}

.bv-dark-location-map-pin {
  width: 60px;
  height: 60px;
  color: var(--bv-gold);
  margin-bottom: 1rem;
}

.bv-dark-location-map-text {
  color: var(--bv-white-soft);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.bv-dark-location-map-subtext {
  color: var(--bv-white-muted);
  font-size: 0.85rem;
  margin: 0;
}

.bv-dark-location-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0 0 1.25rem;
}

.bv-dark-location-title:not(:first-child) {
  margin-top: 2rem;
}

.bv-dark-location-address-box {
  margin-bottom: 0.5rem;
}

.bv-dark-location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bv-dark-location-icon {
  color: var(--bv-gold);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.bv-dark-location-icon svg {
  width: 100%;
  height: 100%;
}

.bv-dark-location-text {
  color: var(--bv-white-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bv-dark-location-link {
  color: var(--bv-gold);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.bv-dark-location-link:hover {
  opacity: 0.8;
}

.bv-dark-btn-outline--small {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.bv-dark-location-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Anfahrt Boxen */
.bv-dark-anfahrt-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bv-dark-anfahrt-box {
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.bv-dark-anfahrt-label {
  display: block;
  color: var(--bv-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bv-dark-anfahrt-text {
  color: var(--bv-white-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ============================================
   SECTION: RESERVIERUNG
   Form + Info (Redesigned)
   ============================================ */

.bv-dark-reservation {
  padding: 5rem 2rem;
  background: var(--bv-dark-bg);
}

.bv-dark-reservation-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bv-dark-reservation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bv-dark-reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bv-dark-reservation-form-wrap {
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
}

.bv-dark-form-group {
  margin-bottom: 1.25rem;
}

.bv-dark-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bv-white-soft);
  margin-bottom: 0.5rem;
}

.bv-dark-form-label svg {
  width: 18px;
  height: 18px;
  color: var(--bv-white-muted);
}

.bv-dark-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bv-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--bv-white);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bv-dark-form-input::placeholder {
  color: var(--bv-white-muted);
}

.bv-dark-form-input:focus {
  outline: none;
  border-color: var(--bv-gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15);
}

.bv-dark-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bv-dark-form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bv-gold);
  border: none;
  border-radius: 8px;
  color: var(--bv-dark-bg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.bv-dark-form-submit:hover {
  background: var(--bv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.bv-dark-form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--bv-white-muted);
}

/* Reservation Info Column */
.bv-dark-reservation-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bv-dark-reservation-contact-box,
.bv-dark-reservation-hours-box {
  background: transparent;
}

.bv-dark-reservation-box-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0 0 1rem;
}

.bv-dark-reservation-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.bv-dark-reservation-contact-label {
  font-size: 0.85rem;
  color: var(--bv-white-muted);
}

.bv-dark-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.bv-dark-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}

.bv-dark-hours-item:last-child {
  border-bottom: none;
}

.bv-dark-hours-day {
  color: var(--bv-white-soft);
  font-weight: 500;
  flex-shrink: 0;
  min-width: 100px;
}

.bv-dark-hours-time {
  color: var(--bv-white-muted);
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Mobile: Öffnungszeiten vertikal anzeigen */
@media (max-width: 480px) {
  .bv-dark-hours-item {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .bv-dark-hours-day {
    min-width: auto;
    font-size: 0.95rem;
  }
  
  .bv-dark-hours-time {
    text-align: left;
    font-size: 0.85rem;
    padding-left: 0;
  }
}

.bv-dark-hours-holiday {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.bv-dark-hours-holiday-label {
  color: var(--bv-white-soft);
}

.bv-dark-hours-holiday-status {
  color: var(--bv-gold);
  font-weight: 600;
}

.bv-dark-reservation-tip {
  background: rgba(217, 164, 65, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.bv-dark-reservation-tip-icon {
  color: var(--bv-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bv-dark-reservation-tip-text {
  font-size: 0.9rem;
  color: var(--bv-white-soft);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   FOOTER
   4-Spalten Layout
   ============================================ */

.bv-dark-footer {
  background: var(--bv-dark-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 2rem 2rem;
}

.bv-dark-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bv-dark-footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.bv-dark-footer-brand {
  max-width: 280px;
}

.bv-dark-footer-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.bv-dark-footer-logo-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bv-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bv-dark-footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--bv-white-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
}

.bv-dark-footer-desc {
  font-size: 0.9rem;
  color: var(--bv-white-muted);
  line-height: 1.6;
  margin: 0;
}

.bv-dark-footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.25rem;
}

.bv-dark-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bv-dark-footer-links li {
  margin-bottom: 0.75rem;
}

.bv-dark-footer-links a {
  color: var(--bv-white-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.bv-dark-footer-links a:hover {
  color: var(--bv-gold);
}

.bv-dark-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bv-dark-footer-contact-icon {
  color: var(--bv-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bv-dark-footer-contact-text {
  color: var(--bv-white-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.bv-dark-footer-hours-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  gap: 0.125rem;
}

.bv-dark-footer-hours-day {
  color: var(--bv-white-soft);
  font-weight: 500;
}

.bv-dark-footer-hours-time {
  color: var(--bv-white-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.bv-dark-footer-hours-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--bv-gold);
}

.bv-dark-footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.bv-dark-footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-white-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.bv-dark-footer-social:hover {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  color: var(--bv-dark-bg);
  transform: translateY(-2px);
}

.bv-dark-footer-social svg {
  width: 18px;
  height: 18px;
}

.bv-dark-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bv-dark-footer-copy {
  font-size: 0.85rem;
  color: var(--bv-white-muted);
}

.bv-dark-footer-legal {
  display: flex;
  gap: 2rem;
}

.bv-dark-footer-legal a {
  font-size: 0.85rem;
  color: var(--bv-white-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bv-dark-footer-legal a:hover {
  color: var(--bv-gold);
}

/* ============================================
   RESPONSIVE - TABLET (≤1024px)
   ============================================ */

@media (max-width: 1024px) {
  .bv-dark-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bv-dark-dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bv-dark-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bv-dark-story-stats {
    max-width: 400px;
  }
  
  .bv-dark-gallery-grid {
    gap: 1rem;
  }
  
  .bv-dark-location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .bv-dark-reservation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .bv-dark-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (≤768px)
   ============================================ */

@media (max-width: 768px) {
  .bv-dark-highlights,
  .bv-dark-dishes,
  .bv-dark-story,
  .bv-dark-gallery,
  .bv-dark-testimonial,
  .bv-dark-location,
  .bv-dark-reservation {
    padding: 3rem 1.25rem;
  }
  
  .bv-dark-section-title {
    font-size: 1.75rem;
  }
  
  .bv-dark-section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .bv-dark-highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .bv-dark-highlight-card {
    aspect-ratio: 1/1.2;
  }
  
  .bv-dark-dishes-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .bv-dark-dish-card-content {
    padding: 1rem;
  }
  
  .bv-dark-story-inner {
    gap: 2rem;
  }
  
  .bv-dark-story-content {
    text-align: center;
  }
  
  .bv-dark-story-stats {
    margin: 0 auto;
  }
  
  .bv-dark-stat-card {
    padding: 1.25rem;
  }
  
  .bv-dark-stat-value {
    font-size: 1.5rem;
  }
  
  .bv-dark-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bv-dark-testimonial-inner {
    padding: 2rem 1.5rem;
  }
  
  .bv-dark-testimonial-quote {
    font-size: 1.15rem;
  }
  
  .bv-dark-location-map {
    aspect-ratio: 16/10;
  }
  
  .bv-dark-form-row {
    grid-template-columns: 1fr;
  }
  
  .bv-dark-footer {
    padding: 3rem 1.25rem 1.5rem;
  }
  
  .bv-dark-footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .bv-dark-footer-brand {
    max-width: none;
  }
  
  .bv-dark-footer-socials {
    justify-content: center;
  }
  
  .bv-dark-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .bv-dark-footer-legal {
    gap: 1.5rem;
  }
  
  .bv-dark-footer-col .bv-dark-footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bv-dark-footer-col .bv-dark-footer-hours-item {
    text-align: center;
    align-items: center;
  }
  
  .bv-dark-footer-contact-item {
    justify-content: center;
  }
  
  .bv-dark-footer-contact-text {
    text-align: left;
  }
  
  .bv-dark-hero-hours {
    bottom: 1.25rem;
    left: 1.25rem;
  }
  
  .bv-dark-location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .bv-dark-location-map {
    aspect-ratio: 16/10;
  }
  
  .bv-dark-reservation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .bv-dark-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LIGHT MODE STYLES
   Theme Toggle Unterstützung
   ============================================ */

/* Light Mode CSS Variables */
:root {
  /* Light Mode Colors */
  --bv-light-bg: #f8f6f1;
  --bv-light-bg-alt: #f0ede5;
  --bv-light-surface: #ffffff;
  --bv-light-text: #1a1a1a;
  --bv-light-text-soft: #333333;
  --bv-light-text-muted: #666666;
  --bv-light-border: #e0dcd4;
}

/* Light Mode Body */
body.bv-light-mode {
  background: var(--bv-light-bg);
  color: var(--bv-light-text);
}

/* Light Mode Header */
body.bv-light-mode .bv-dark-header {
  background: rgba(248, 246, 241, 0.95);
  border-bottom-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-logo-main {
  color: var(--bv-gold-dark);
}

body.bv-light-mode .bv-dark-logo-sub {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-nav-link {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-nav-link:hover {
  color: var(--bv-gold-dark);
}

body.bv-light-mode .bv-dark-theme-toggle {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-theme-toggle:hover {
  color: var(--bv-gold-dark);
  background: rgba(0, 0, 0, 0.05);
}

body.bv-light-mode .bv-dark-menu-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

/* Light Mode Hero */
body.bv-light-mode .bv-dark-hero {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-dark-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(248, 246, 241, 0.95) 0%,
    rgba(248, 246, 241, 0.85) 25%,
    rgba(248, 246, 241, 0.5) 50%,
    rgba(248, 246, 241, 0.3) 75%,
    transparent 100%
  );
}

body.bv-light-mode .bv-dark-hero-glow {
  background: radial-gradient(
    ellipse 80% 60% at 85% 50%,
    rgba(217, 164, 65, 0.1) 0%,
    rgba(217, 164, 65, 0.05) 30%,
    transparent 70%
  );
}

body.bv-light-mode .bv-dark-hero-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-hero-desc {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-hero-hours-label {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-hero-hours-time {
  color: var(--bv-light-text);
}

/* Light Mode Sections */
body.bv-light-mode .bv-dark-highlights,
body.bv-light-mode .bv-dark-story,
body.bv-light-mode .bv-dark-testimonial,
body.bv-light-mode .bv-dark-reservation {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-dark-dishes,
body.bv-light-mode .bv-dark-gallery,
body.bv-light-mode .bv-dark-location {
  background: var(--bv-light-bg-alt);
}

body.bv-light-mode .bv-dark-section-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-section-subtitle {
  color: var(--bv-light-text-muted);
}

/* Light Mode Cards */
body.bv-light-mode .bv-dark-dish-card,
body.bv-light-mode .bv-dark-stat-card,
body.bv-light-mode .bv-dark-reservation-form-wrap,
body.bv-light-mode .bv-dark-anfahrt-box {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-dish-card-name {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-dish-card-desc {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-stat-label {
  color: var(--bv-light-text-muted);
}

/* Light Mode Location */
body.bv-light-mode .bv-dark-location-map {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-location-map-text {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-location-map-subtext {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-location-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-location-text {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-anfahrt-text {
  color: var(--bv-light-text-muted);
}

/* Light Mode Reservation */
body.bv-light-mode .bv-dark-reservation-box-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-reservation-contact-label {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-hours-day {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-hours-time {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-hours-holiday-label {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-form-input {
  background: var(--bv-light-bg);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-form-input::placeholder {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-form-label {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-form-label svg {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-form-note {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-reservation-tip {
  background: rgba(217, 164, 65, 0.1);
  border-color: rgba(217, 164, 65, 0.25);
}

body.bv-light-mode .bv-dark-reservation-tip-text {
  color: var(--bv-light-text-soft);
}

/* Light Mode Testimonial */
body.bv-light-mode .bv-dark-testimonial-inner {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-testimonial-quote {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-testimonial-author {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-testimonial-author strong {
  color: var(--bv-light-text-soft);
}

/* Light Mode Story */
body.bv-light-mode .bv-dark-story-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-story-text {
  color: var(--bv-light-text-muted);
}

/* Light Mode Footer */
body.bv-light-mode .bv-dark-footer {
  background: var(--bv-light-bg-alt);
  border-top-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-footer-logo-main {
  color: var(--bv-gold-dark);
}

body.bv-light-mode .bv-dark-footer-logo-sub {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-desc {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-col h4 {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-footer-links a {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-links a:hover {
  color: var(--bv-gold-dark);
}

body.bv-light-mode .bv-dark-footer-contact-text {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-hours-day {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-footer-hours-time {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-social {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-social:hover {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  color: var(--bv-light-surface);
}

body.bv-light-mode .bv-dark-footer-bottom {
  border-top-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-footer-copy {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-legal a {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-footer-legal a:hover {
  color: var(--bv-gold-dark);
}

/* Light Mode Mobile Nav */
body.bv-light-mode .bv-dark-mobile-nav-overlay {
  background: rgba(0, 0, 0, 0.4);
}

body.bv-light-mode .bv-dark-mobile-nav {
  background: var(--bv-light-surface);
  border-left-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-mobile-nav-head {
  border-bottom-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-mobile-nav-close {
  background: var(--bv-light-bg);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-mobile-nav-link {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-dark-mobile-nav-link:hover {
  background: var(--bv-light-bg);
  color: var(--bv-gold-dark);
}

/* Theme Toggle Animation */
.bv-dark-theme-toggle svg {
  transition: transform 0.3s ease;
}

body.bv-light-mode .bv-dark-theme-toggle svg {
  transform: rotate(180deg);
}

/* ============================================
   DARK THEME: MENUS PAGE (Speisekarten)
   ============================================ */

.bv-menus-selection {
  min-height: calc(100vh - var(--bv-header-height-dark));
  padding: calc(var(--bv-header-height-dark) + 3rem) 2rem 4rem;
  background: var(--bv-dark-bg);
}

.bv-menus-selection-inner {
  max-width: 800px;
  margin: 0 auto;
}

.bv-menus-selection-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bv-menus-selection-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0 0 1rem;
}

.bv-menus-selection-subtitle {
  font-size: 1.1rem;
  color: var(--bv-white-muted);
  margin: 0;
}

.bv-menus-selection-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bv-menus-pdf-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--bv-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.bv-menus-pdf-btn:hover {
  background: rgba(217, 164, 65, 0.1);
  border-color: var(--bv-gold);
  transform: translateX(4px);
}

.bv-menus-pdf-btn-icon {
  font-size: 1.5rem;
}

.bv-menus-pdf-btn-text {
  flex: 1;
}

.bv-menus-pdf-btn-arrow {
  font-size: 1.5rem;
  color: var(--bv-gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bv-menus-pdf-btn:hover .bv-menus-pdf-btn-arrow {
  opacity: 1;
}

/* Light Mode */
body.bv-light-mode .bv-menus-selection {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-menus-selection-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-menus-selection-subtitle {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-menus-pdf-btn {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-menus-pdf-btn:hover {
  background: rgba(217, 164, 65, 0.1);
  border-color: var(--bv-gold);
}

/* ============================================
   DARK THEME: RESERVATION PAGE
   ============================================ */

.bv-reservation {
  min-height: calc(100vh - var(--bv-header-height-dark));
  padding: calc(var(--bv-header-height-dark) + 3rem) 2rem 4rem;
  background: var(--bv-dark-bg);
}

.bv-reservation-inner {
  max-width: 700px;
  margin: 0 auto;
}

.bv-reservation-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bv-reservation-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0 0 0.75rem;
}

.bv-reservation-subtitle {
  font-size: 1rem;
  color: var(--bv-white-muted);
  margin: 0;
}

.bv-reservation-alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.bv-reservation-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.bv-reservation-alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.bv-reservation-alert-warning {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #facc15;
}

.bv-reservation-form {
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.bv-reservation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.bv-reservation-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bv-reservation-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-white-soft);
}

.bv-reservation-required {
  color: var(--bv-gold);
}

.bv-reservation-input,
.bv-reservation-textarea,
.bv-reservation-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bv-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--bv-white);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bv-reservation-input:focus,
.bv-reservation-textarea:focus {
  outline: none;
  border-color: var(--bv-gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15);
}

/* Date Input - Kalender Icon Styling */
.bv-reservation-input[type="date"] {
  position: relative;
  color-scheme: dark;
  padding-right: 1rem;
  cursor: pointer;
}

.bv-reservation-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  filter: invert(1) brightness(2) sepia(1) saturate(3) hue-rotate(5deg);
  position: absolute;
  left: auto;
  right: 1rem;
  width: 22px;
  height: 22px;
  transition: all 0.2s ease;
}

.bv-reservation-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  filter: invert(1) brightness(2.5) sepia(1) saturate(4) hue-rotate(10deg);
  transform: scale(1.1);
}

.bv-reservation-hint {
  font-size: 0.8rem;
  color: var(--bv-white-muted);
}

/* Select Dropdown Styling für Dark Mode */
select.bv-reservation-input {
  cursor: pointer;
  appearance: none;
  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='%23d9a441' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.bv-reservation-input option,
.bv-reservation-input option {
  background: var(--bv-dark-surface, #1a1a1a);
  color: var(--bv-white, #fff);
  padding: 0.5rem;
}

select.bv-reservation-input optgroup,
.bv-reservation-input optgroup {
  background: var(--bv-dark-surface, #1a1a1a);
  color: var(--bv-gold, #d9a441);
  font-weight: 600;
}

/* Light Mode Select */
body.bv-light-mode select.bv-reservation-input {
  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='%23b8862e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

body.bv-light-mode select.bv-reservation-input option,
body.bv-light-mode .bv-reservation-input option {
  background: var(--bv-light-surface, #fff);
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode select.bv-reservation-input optgroup,
body.bv-light-mode .bv-reservation-input optgroup {
  background: var(--bv-light-surface, #fff);
  color: var(--bv-gold-dark, #b8862e);
}

/* =========================================
   Cart Drawer Voucher Select - Dark Mode
   ========================================= */
.bv-cart-voucher-select,
#cart-voucher-select {
  background: var(--bv-dark-bg, #0d0d0d);
  color: var(--bv-white, #fff);
  border: 1px solid var(--bv-gold, #d9a441);
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  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='%23d9a441' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.bv-cart-voucher-select:focus,
#cart-voucher-select:focus {
  outline: none;
  border-color: var(--bv-gold-light, #e8b84a);
  box-shadow: 0 0 0 2px rgba(217, 164, 65, 0.2);
}

.bv-cart-voucher-select option,
#cart-voucher-select option {
  background: var(--bv-dark-surface, #1a1a1a);
  color: var(--bv-white, #fff);
  padding: 0.5rem;
}

/* Light Mode Cart Voucher Select */
body.bv-light-mode .bv-cart-voucher-select,
body.bv-light-mode #cart-voucher-select {
  background: var(--bv-light-surface, #fff);
  color: var(--bv-light-text, #1a1a1a);
  border-color: #d0d6cc;
  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='%23b8862e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

body.bv-light-mode .bv-cart-voucher-select option,
body.bv-light-mode #cart-voucher-select option {
  background: var(--bv-light-surface, #fff);
  color: var(--bv-light-text, #1a1a1a);
}

.bv-reservation-section {
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-reservation-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0 0 1.25rem;
}

.bv-reservation-info {
  background: rgba(217, 164, 65, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.bv-reservation-info p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--bv-white-soft);
  line-height: 1.5;
}

.bv-reservation-info p:last-child {
  margin-bottom: 0;
}

.bv-reservation-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.bv-reservation-submit {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--bv-gold);
  border: none;
  border-radius: 10px;
  color: var(--bv-dark-bg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bv-reservation-submit:hover {
  background: var(--bv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.bv-btn--ghost {
  padding: 1rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--bv-white-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bv-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--bv-white);
}

/* Time Selection Grid */
.bv-reservation-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
}

.bv-reservation-time-btn {
  padding: 0.75rem 0.5rem;
  background: var(--bv-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--bv-white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-reservation-time-btn:hover {
  border-color: var(--bv-gold);
  background: rgba(217, 164, 65, 0.1);
}

.bv-reservation-time-btn.active {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  color: var(--bv-dark-bg);
  font-weight: 600;
}

.bv-reservation-time-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem;
  color: var(--bv-white-muted);
  font-size: 0.9rem;
}

/* Light Mode */
body.bv-light-mode .bv-reservation {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-reservation-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-reservation-subtitle {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-reservation-form {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-reservation-label {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-reservation-input,
body.bv-light-mode .bv-reservation-textarea {
  background: var(--bv-light-bg);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-reservation-input[type="date"] {
  color-scheme: light;
}

body.bv-light-mode .bv-reservation-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.6;
}

body.bv-light-mode .bv-reservation-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  filter: brightness(0.8);
}

body.bv-light-mode .bv-reservation-h2 {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-reservation-info p {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-reservation-time-btn {
  background: var(--bv-light-bg);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

/* ============================================
   DARK THEME: MENU PAGE (Bestellen)
   ============================================ */

.bv-menu {
  min-height: calc(100vh - var(--bv-header-height-dark));
  padding: calc(var(--bv-header-height-dark) + 2rem) 1rem 6rem;
  background: var(--bv-dark-bg);
}

.bv-menu-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--bv-white);
  text-align: center;
  margin: 0 0 0.5rem;
}

.bv-menu-subtitle {
  font-size: 1rem;
  color: var(--bv-white-muted);
  text-align: center;
  margin: 0 0 1.5rem;
}

/* Kitchen Status */
.bv-kitchen-status {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-align: center;
  font-size: 0.9rem;
}

.bv-kitchen-status--open {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.bv-kitchen-status--closed {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* Menu Sections */
.bv-menu-sections {
  max-width: 900px;
  margin: 0 auto;
}

.bv-menu-section {
  margin-bottom: 2.5rem;
}

.bv-menu-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bv-gold);
  margin: 0 0 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-menu-section-description {
  font-size: 0.9rem;
  color: var(--bv-white-muted);
  margin: 0 0 1rem;
}

/* Menu Items */
.bv-menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.bv-menu-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.menu-item-main {
  flex: 1;
  min-width: 0;
}

.bv-menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.bv-menu-item-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bv-white);
  margin: 0;
}

.bv-menu-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bv-gold);
  white-space: nowrap;
}

.bv-menu-item-description {
  font-size: 0.9rem;
  color: var(--bv-white-muted);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.bv-menu-item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-vegan {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.badge-vegetarian {
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}

.badge-spicy {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.badge-popular {
  background: rgba(217, 164, 65, 0.15);
  color: var(--bv-gold);
}

.badge-alcohol {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.bv-menu-item-allergens {
  font-size: 0.8rem;
  color: var(--bv-white-muted);
  margin-top: 0.5rem;
}

/* Item Actions */
.bv-menu-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.bv-menu-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.bv-btn-add {
  width: 40px;
  height: 40px;
  background: var(--bv-gold);
  border: none;
  border-radius: 8px;
  color: var(--bv-dark-bg);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-btn-add:hover {
  background: var(--bv-gold-light);
  transform: scale(1.05);
}

/* Sticky Category Header */
.sticky-category-header {
  position: fixed;
  top: var(--bv-header-height-dark);
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.sticky-category-header-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-category-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sticky-category-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sticky-category-nav::-webkit-scrollbar {
  display: none;
}

.sticky-category-btn {
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--bv-white-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sticky-category-btn:hover,
.sticky-category-btn.active {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  color: var(--bv-dark-bg);
}

.sticky-category-filters {
  display: flex;
  gap: 0.5rem;
}

.sticky-filter-btn {
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--bv-white-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sticky-filter-btn-active {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

/* Sticky Cart */
.sticky-cart {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-cart-hidden {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.sticky-cart-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--bv-gold);
  border: none;
  border-radius: 50px;
  color: var(--bv-dark-bg);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(217, 164, 65, 0.4);
  transition: all 0.2s ease;
}

.sticky-cart-button:hover {
  background: var(--bv-gold-light);
  transform: scale(1.02);
}

.sticky-cart-icon svg {
  width: 20px;
  height: 20px;
}

.sticky-cart-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.85rem;
}

.sticky-cart-cta {
  font-size: 0.9rem;
}

/* Item Modal */
.bv-item-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.bv-item-modal {
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bv-item-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: var(--bv-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.bv-item-modal-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--bv-white);
  margin: 0 0 0.5rem;
}

.bv-item-modal-description {
  color: var(--bv-white-muted);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.bv-item-modal-allergens {
  color: var(--bv-white-muted);
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.bv-item-modal-options {
  margin-bottom: 1rem;
}

.bv-item-modal-qty-row,
.bv-item-modal-notes-row {
  margin-bottom: 1rem;
}

.bv-item-modal-qty-row label,
.bv-item-modal-notes-row label {
  display: block;
  font-weight: 600;
  color: var(--bv-white-soft);
  margin-bottom: 0.5rem;
}

.bv-item-modal-qty-row select,
.bv-item-modal-notes-row textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bv-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--bv-white);
  font-size: 1rem;
}

.bv-item-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-item-modal-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bv-gold);
}

.bv-item-modal-footer .btn-primary {
  padding: 0.875rem 1.5rem;
  background: var(--bv-gold);
  border: none;
  border-radius: 10px;
  color: var(--bv-dark-bg);
  font-weight: 600;
  cursor: pointer;
}

/* Light Mode */
body.bv-light-mode .bv-menu {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-menu-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-menu-subtitle {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-menu-section-title {
  border-bottom-color: var(--bv-light-border);
}

body.bv-light-mode .bv-menu-item {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-menu-item-name {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-menu-item-description {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .sticky-category-header {
  background: rgba(248, 246, 241, 0.95);
  border-bottom-color: var(--bv-light-border);
}

body.bv-light-mode .sticky-category-btn {
  border-color: var(--bv-light-border);
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-item-modal {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-item-modal-header h2 {
  color: var(--bv-light-text);
}

/* ============================================
   DARK THEME: CHECKOUT PAGE
   ============================================ */

.bv-checkout {
  min-height: calc(100vh - var(--bv-header-height-dark));
  padding: calc(var(--bv-header-height-dark) + 2rem) 1rem 4rem;
  background: var(--bv-dark-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .bv-checkout {
    grid-template-columns: 1fr;
  }
}

.bv-checkout-title {
  grid-column: 1 / -1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--bv-white);
  text-align: center;
  margin: 0 0 1.5rem;
}

.bv-checkout-cart,
.bv-checkout-form {
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.bv-checkout-cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bv-checkout-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0;
}

.bv-checkout-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bv-gold);
  text-decoration: none;
  font-size: 0.9rem;
}

.bv-checkout-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.bv-checkout-line {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-checkout-line:last-child {
  border-bottom: none;
}

.bv-checkout-line-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.bv-checkout-line-name {
  color: var(--bv-white);
  font-weight: 600;
}

.bv-checkout-line-price {
  color: var(--bv-gold);
}

.bv-checkout-line-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.bv-checkout-line-qty {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bv-checkout-qty-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  color: var(--bv-white);
  font-size: 1.25rem;
  cursor: pointer;
}

.bv-checkout-qty-input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--bv-white);
  font-size: 0.95rem;
  padding: 0.4rem;
}

.bv-checkout-remove-btn {
  background: transparent;
  border: none;
  color: #f87171;
  font-size: 0.85rem;
  cursor: pointer;
}

.bv-checkout-options {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0.5rem 0;
}

.bv-checkout-option {
  font-size: 0.85rem;
  color: var(--bv-white-muted);
}

.bv-checkout-notes {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--bv-white-muted);
  font-style: italic;
}

.bv-checkout-subtotal {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--bv-white-soft);
}

.bv-checkout-subtotal strong {
  color: var(--bv-white);
}

/* Checkout Form */
.bv-checkout-label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-white-soft);
}

.bv-checkout-input,
.bv-checkout-select,
.bv-checkout-textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.875rem 1rem;
  background: var(--bv-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--bv-white);
  font-size: 1rem;
}

.bv-checkout-input:focus,
.bv-checkout-select:focus,
.bv-checkout-textarea:focus {
  outline: none;
  border-color: var(--bv-gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15);
}

.bv-checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--bv-white-soft);
  cursor: pointer;
}

.bv-checkout-checkbox input {
  margin-top: 0.2rem;
}

.bv-checkout-user-hint {
  background: rgba(217, 164, 65, 0.1);
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--bv-white-soft);
}

.bv-checkout-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bv-gold);
  border: none;
  border-radius: 10px;
  color: var(--bv-dark-bg);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.25s ease;
}

.bv-checkout-submit:hover {
  background: var(--bv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.bv-checkout-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

/* Light Mode */
body.bv-light-mode .bv-checkout {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-checkout-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-checkout-cart,
body.bv-light-mode .bv-checkout-form {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-checkout-h2 {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-checkout-line-name {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-checkout-subtotal {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-checkout-subtotal strong {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-checkout-label {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-checkout-input,
body.bv-light-mode .bv-checkout-select,
body.bv-light-mode .bv-checkout-textarea {
  background: var(--bv-light-bg);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-checkout-checkbox {
  color: var(--bv-light-text-soft);
}

/* ============================================
   DARK THEME: EMPTY CART PAGE
   ============================================ */

.bv-empty-cart-page {
  min-height: calc(100vh - var(--bv-header-height-dark));
  padding: calc(var(--bv-header-height-dark) + 4rem) 2rem;
  background: var(--bv-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-empty-cart-container {
  width: 100%;
  max-width: 500px;
}

.bv-empty-cart-card {
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.bv-empty-cart-icon {
  margin-bottom: 1.5rem;
  color: var(--bv-gold);
}

.bv-empty-cart-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0 0 0.75rem;
}

.bv-empty-cart-text {
  color: var(--bv-white-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.bv-empty-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bv-empty-cart-btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--bv-gold);
  border-radius: 10px;
  color: var(--bv-dark-bg);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.bv-empty-cart-btn-primary:hover {
  background: var(--bv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.bv-empty-cart-btn-secondary {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--bv-white-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.bv-empty-cart-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--bv-white);
}

body.bv-light-mode .bv-empty-cart-page {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-empty-cart-card {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-empty-cart-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-empty-cart-text {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-empty-cart-btn-secondary {
  border-color: var(--bv-light-border);
  color: var(--bv-light-text-muted);
}

/* ============================================
   DARK THEME: GLOBAL INPUTS & BUTTONS
   ============================================ */

/* Global Input Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bv-dark-bg, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--bv-white, #fff);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--bv-gold, #d9a441);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Select Arrow */
select {
  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='%23d9a441' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Global Button Styling */
button,
.btn,
[type="submit"],
[type="button"] {
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary,
.bv-btn--primary,
[type="submit"]:not(.btn-secondary):not(.btn-ghost) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--bv-gold, #d9a441);
  border: none;
  border-radius: 10px;
  color: var(--bv-dark-bg, #0f0f0f);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover,
.bv-btn--primary:hover,
[type="submit"]:not(.btn-secondary):not(.btn-ghost):hover {
  background: var(--bv-gold-light, #e5b85a);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.btn-primary:disabled,
.bv-btn--primary:disabled,
[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary,
.btn-ghost,
.bv-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.btn-secondary:hover,
.btn-ghost:hover,
.bv-btn--ghost:hover {
  border-color: var(--bv-gold, #d9a441);
  color: var(--bv-gold, #d9a441);
  background: rgba(217, 164, 65, 0.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

/* Light Mode Inputs */
body.bv-light-mode input[type="text"],
body.bv-light-mode input[type="email"],
body.bv-light-mode input[type="tel"],
body.bv-light-mode input[type="password"],
body.bv-light-mode input[type="number"],
body.bv-light-mode input[type="date"],
body.bv-light-mode input[type="time"],
body.bv-light-mode input[type="search"],
body.bv-light-mode select,
body.bv-light-mode textarea {
  background: var(--bv-light-bg, #f8f6f1);
  border-color: var(--bv-light-border, #e0dcd4);
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode input::placeholder,
body.bv-light-mode textarea::placeholder {
  color: #999;
}

body.bv-light-mode .btn-secondary,
body.bv-light-mode .btn-ghost,
body.bv-light-mode .bv-btn--ghost {
  border-color: var(--bv-light-border, #e0dcd4);
  color: var(--bv-light-text-muted, #666);
}

/* ============================================
   DARK THEME: ITEM MODAL (Menu Page)
   ============================================ */

.item-modal-overlay,
.bv-item-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.item-modal,
.bv-item-modal {
  position: relative;
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bv-dark-surface, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.item-modal-close,
.bv-item-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--bv-white, #fff);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.item-modal-close:hover,
.bv-item-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.item-modal-header,
.bv-item-modal-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.item-modal-header h2,
.bv-item-modal-header h2,
#item-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bv-white, #fff);
  margin: 0 0 0.5rem;
  padding-right: 2rem;
}

.item-modal-description,
.bv-item-modal-description,
#item-modal-description {
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.item-modal-allergens,
.bv-item-modal-allergens,
#item-modal-allergens {
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  font-size: 0.85rem;
  margin: 0;
}

.item-modal-options,
.bv-item-modal-options,
#item-modal-options {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Option Groups */
.option-group,
.item-modal-option-group {
  margin-bottom: 1.25rem;
}

.option-group:last-child,
.item-modal-option-group:last-child {
  margin-bottom: 0;
}

.option-group-title,
.item-modal-option-group-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-gold, #d9a441);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.option-item,
.item-modal-option-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.option-item:last-child,
.item-modal-option-item:last-child {
  border-bottom: none;
}

.option-item input[type="checkbox"],
.option-item input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--bv-gold, #d9a441);
  cursor: pointer;
}

.option-item label,
.item-modal-option-item label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
  cursor: pointer;
}

.option-price {
  color: var(--bv-gold, #d9a441);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Quantity Row */
.item-modal-qty-row,
.bv-item-modal-qty-row {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.item-modal-qty-row label,
.bv-item-modal-qty-row label {
  font-weight: 600;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
}

.item-modal-qty-row select,
.bv-item-modal-qty-row select,
#item-modal-qty {
  width: auto;
  min-width: 80px;
  padding: 0.5rem 2rem 0.5rem 1rem;
}

/* Notes Row */
.item-modal-notes-row,
.bv-item-modal-notes-row {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.item-modal-notes-row label,
.bv-item-modal-notes-row label {
  display: block;
  font-weight: 600;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
  margin-bottom: 0.5rem;
}

.item-modal-notes-row textarea,
.bv-item-modal-notes-row textarea,
#item-modal-notes {
  resize: vertical;
  min-height: 80px;
}

/* Footer */
.item-modal-footer,
.bv-item-modal-footer {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.item-modal-price,
.bv-item-modal-price {
  display: flex;
  flex-direction: column;
}

.item-modal-price span:first-child,
#item-modal-base-price {
  font-size: 0.85rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
}

.item-modal-total-price,
.bv-item-modal-total-price,
#item-modal-total-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bv-gold, #d9a441);
}

.item-modal-footer .btn-primary,
.bv-item-modal-footer .btn-primary,
#item-modal-add-to-cart {
  flex: 1;
  max-width: 200px;
}

/* Light Mode Item Modal */
body.bv-light-mode .item-modal,
body.bv-light-mode .bv-item-modal {
  background: var(--bv-light-surface, #fff);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .item-modal-header h2,
body.bv-light-mode .bv-item-modal-header h2,
body.bv-light-mode #item-modal-title {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .item-modal-description,
body.bv-light-mode .bv-item-modal-description {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .item-modal-close,
body.bv-light-mode .bv-item-modal-close {
  background: var(--bv-light-bg, #f8f6f1);
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .option-item label,
body.bv-light-mode .item-modal-option-item label {
  color: var(--bv-light-text-soft, #333);
}

body.bv-light-mode .item-modal-footer,
body.bv-light-mode .bv-item-modal-footer {
  background: var(--bv-light-bg, #f8f6f1);
}

/* ============================================
   DARK THEME: ACCOUNT PAGE
   ============================================ */

.bv-account,
.bv-account-app {
  min-height: calc(100vh - var(--bv-header-height-dark, 80px));
  padding: calc(var(--bv-header-height-dark, 80px) + 1.5rem) 1rem 6rem;
  background: var(--bv-dark-bg, #0f0f0f);
}

/* App Hero */
.bv-app-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bv-dark-surface, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
}

.bv-app-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bv-gold, #d9a441), var(--bv-gold-dark, #c4923a));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bv-dark-bg, #0f0f0f);
  flex-shrink: 0;
}

.bv-app-hero-body {
  flex: 1;
  min-width: 0;
}

.bv-app-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bv-white, #fff);
  margin: 0 0 0.25rem;
}

.bv-app-hero-sub {
  font-size: 0.9rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bv-app-edit {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  text-decoration: none;
  transition: all 0.2s ease;
}

.bv-app-edit:hover {
  background: rgba(217, 164, 65, 0.2);
  color: var(--bv-gold, #d9a441);
}

/* Stats */
.bv-app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bv-app-stat {
  background: var(--bv-dark-surface, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.bv-app-stat-label {
  font-size: 0.75rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bv-app-stat-label::before {
  content: attr(data-icon) " ";
}

.bv-app-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bv-gold, #d9a441);
  line-height: 1;
}

.bv-app-stat-hint {
  font-size: 0.7rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
  margin-top: 0.35rem;
}

/* Section */
.bv-app-section {
  margin-bottom: 1.5rem;
}

.bv-app-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bv-white, #fff);
  margin: 0 0 0.75rem;
  padding-left: 0.25rem;
}

/* List Items */
.bv-app-list {
  background: var(--bv-dark-surface, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.bv-app-list-item,
.bv-app-list-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--bv-white, #fff);
  text-decoration: none;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bv-app-list-item:last-child,
.bv-app-list-button:last-child {
  border-bottom: none;
}

.bv-app-list-item:hover,
.bv-app-list-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Logout Button Styling */
.bv-app-list-logout {
  color: #ef4444 !important;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bv-app-list-logout:hover {
  background: rgba(239, 68, 68, 0.1) !important;
}
.bv-app-list-logout .bv-app-list-icon {
  filter: none;
}
body.bv-light-mode .bv-app-list-logout {
  color: #dc2626 !important;
  border-top-color: rgba(0, 0, 0, 0.1);
}
body.bv-light-mode .bv-app-list-logout:hover {
  background: rgba(220, 38, 38, 0.08) !important;
}

.bv-app-list-item .left,
.bv-app-list-button .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bv-app-list-icon {
  font-size: 1.25rem;
}

.bv-app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 0.5rem;
  background: var(--bv-gold, #d9a441);
  border-radius: 12px;
  color: var(--bv-dark-bg, #0f0f0f);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Progress */
.bv-app-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.bv-app-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--bv-gold, #d9a441), var(--bv-gold-light, #e5b85a));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.bv-app-subtext {
  font-size: 0.85rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
}

/* Bottom Navigation */
.bv-app-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bv-dark-surface, #1a1a1a);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

.bv-app-bottom-nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bv-app-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.2s ease;
}

.bv-app-bottom-nav a .icon {
  font-size: 1.25rem;
}

.bv-app-bottom-nav a.is-active,
.bv-app-bottom-nav a:hover {
  color: var(--bv-gold, #d9a441);
}

/* Drawer/Modal (Account) */
.bv-order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  display: none;
  backdrop-filter: blur(4px);
}

.bv-order-modal-overlay.open {
  display: block;
}

.bv-order-modal-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bv-dark-surface, #1a1a1a);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1501;
}

.bv-order-modal-overlay.open .bv-order-modal-drawer,
.bv-order-modal-drawer.open {
  transform: translateX(0);
}

.bv-order-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-order-modal-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bv-white, #fff);
}

.bv-order-modal-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: var(--bv-white, #fff);
  font-size: 1rem;
  cursor: pointer;
}

.bv-order-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

/* Wallet Items */
.bv-wallet-block {
  margin-bottom: 1.5rem;
}

.bv-wallet-block-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bv-gold, #d9a441);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.bv-wallet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bv-wallet-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.bv-wallet-item-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.bv-wallet-title {
  font-weight: 600;
  color: var(--bv-white, #fff);
  margin-bottom: 0.25rem;
}

.bv-wallet-meta {
  font-size: 0.85rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
}

.bv-wallet-badge {
  background: var(--bv-gold, #d9a441);
  color: var(--bv-dark-bg, #0f0f0f);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

/* Account Cards */
.bv-account-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bv-account-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bv-account-card-head {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bv-account-card-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bv-account-card-title strong {
  color: var(--bv-white, #fff);
}

.bv-account-chip {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: rgba(217, 164, 65, 0.15);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bv-gold, #d9a441);
}

.bv-account-card-body {
  padding: 1rem;
}

.bv-account-actions {
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: flex-end;
}

.bv-order-details-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--bv-gold, #d9a441);
  border-radius: 6px;
  color: var(--bv-gold, #d9a441);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-order-details-btn:hover {
  background: var(--bv-gold, #d9a441);
  color: var(--bv-dark-bg, #0f0f0f);
}

.bv-account-empty {
  text-align: center;
  padding: 2rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
}

/* Light Mode Account */
body.bv-light-mode .bv-account,
body.bv-light-mode .bv-account-app {
  background: var(--bv-light-bg, #f8f6f1);
}

body.bv-light-mode .bv-app-hero,
body.bv-light-mode .bv-app-stat,
body.bv-light-mode .bv-app-list,
body.bv-light-mode .bv-app-bottom-nav {
  background: var(--bv-light-surface, #fff);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-app-hero-title,
body.bv-light-mode .bv-app-section-title {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-app-hero-sub,
body.bv-light-mode .bv-app-stat-label,
body.bv-light-mode .bv-app-subtext {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-app-list-item,
body.bv-light-mode .bv-app-list-button {
  color: var(--bv-light-text, #1a1a1a);
  border-bottom-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-app-bottom-nav a {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-order-modal-drawer {
  background: var(--bv-light-surface, #fff);
  border-left-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-order-modal-title {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-wallet-item,
body.bv-light-mode .bv-account-card {
  background: var(--bv-light-bg, #f8f6f1);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-wallet-title,
body.bv-light-mode .bv-account-card-title strong {
  color: var(--bv-light-text, #1a1a1a);
}

/* ============================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  /* Inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    padding: 0.75rem 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Item Modal - Mobile Full Screen */
  .item-modal-overlay,
  .bv-item-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .item-modal,
  .bv-item-modal {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
  }

  /* Fixed Close Button - Mobile */
  .item-modal-close,
  .bv-item-modal-close {
    position: fixed;
    top: env(safe-area-inset-top, 0.75rem);
    right: 0.75rem;
    z-index: 100;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
  }

  /* Modal Header - Mobile */
  .item-modal-header,
  .bv-item-modal-header {
    padding: calc(env(safe-area-inset-top, 0) + 3.5rem) 1rem 0.75rem;
    flex-shrink: 0;
  }

  .item-modal-header h2,
  .bv-item-modal-header h2 {
    font-size: 1.25rem;
    padding-right: 3rem;
  }

  /* Scrollable Content Area - Mobile */
  .item-modal-options,
  .bv-item-modal-options {
    padding: 0.75rem 1rem;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .item-modal-qty-row,
  .bv-item-modal-qty-row,
  .item-modal-notes-row,
  .bv-item-modal-notes-row {
    padding: 0.75rem 1rem;
    flex-shrink: 0;
  }

  /* Fixed Footer with Button - Mobile */
  .item-modal-footer,
  .bv-item-modal-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    padding-bottom: calc(env(safe-area-inset-bottom, 0) + 1rem);
    flex-direction: column;
    gap: 0.75rem;
    background: var(--bv-dark-surface, #1a1a1a);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    z-index: 50;
  }

  .item-modal-footer .btn-primary,
  .bv-item-modal-footer .btn-primary,
  #item-modal-add-to-cart {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
  }

  /* Light Mode Footer - Mobile */
  body.bv-light-mode .item-modal-footer,
  body.bv-light-mode .bv-item-modal-footer {
    background: var(--bv-light-surface, #fff);
    border-top-color: var(--bv-light-border, #e0dcd4);
  }

  /* Account Stats */
  .bv-app-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .bv-app-stat {
    padding: 0.75rem 0.5rem;
  }

  .bv-app-stat-label {
    font-size: 0.65rem;
  }

  .bv-app-stat-value {
    font-size: 1.25rem;
  }

  /* Drawers */
  .bv-cart-drawer,
  .bv-order-modal-drawer {
    max-width: 100%;
  }

  /* Cart Drawer Items */
  .bv-cart-drawer-body {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .bv-app-hero {
    padding: 1rem;
  }

  .bv-app-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .bv-app-hero-title {
    font-size: 1.1rem;
  }

  .bv-app-hero-sub {
    font-size: 0.8rem;
  }

  .bv-app-list-item,
  .bv-app-list-button {
    padding: 0.875rem 1rem;
  }
}

/* ============================================
   DARK THEME: AUTH PAGES (Login, Register, etc.)
   ============================================ */

.bv-auth {
  min-height: calc(100vh - var(--bv-header-height-dark, 80px));
  padding: calc(var(--bv-header-height-dark, 80px) + 2rem) 1rem 4rem;
  background: var(--bv-dark-bg, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bv-dark-surface, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
}

.bv-auth-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bv-auth-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--bv-white, #fff);
  margin: 0 0 0.5rem;
}

.bv-auth-subtitle {
  font-size: 0.95rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  margin: 0;
}

.bv-auth-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.bv-auth-errors-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #f87171;
  font-size: 0.9rem;
}

.bv-auth-errors-list li + li {
  margin-top: 0.25rem;
}

.bv-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bv-auth-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bv-auth-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
}

.bv-auth-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bv-dark-bg, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--bv-white, #fff);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.bv-auth-input:focus {
  outline: none;
  border-color: var(--bv-gold, #d9a441);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.2);
}

.bv-auth-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.bv-auth-actions {
  margin-top: 0.5rem;
}

.bv-auth-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bv-gold, #d9a441);
  border: none;
  border-radius: 12px;
  color: var(--bv-dark-bg, #0f0f0f);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bv-auth-submit:hover {
  background: var(--bv-gold-light, #e5b85a);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.bv-auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.bv-auth-link {
  color: var(--bv-gold, #d9a441);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bv-auth-link:hover {
  color: var(--bv-gold-light, #e5b85a);
  text-decoration: underline;
}

.bv-auth-foot {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
}

.bv-auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
  font-size: 0.85rem;
}

.bv-auth-divider::before,
.bv-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.bv-auth-oauth {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bv-auth-oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--bv-white, #fff);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bv-auth-oauth-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.bv-auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
  cursor: pointer;
}

.bv-auth-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--bv-gold, #d9a441);
}

/* Light Mode Auth */
body.bv-light-mode .bv-auth {
  background: var(--bv-light-bg, #f8f6f1);
}

body.bv-light-mode .bv-auth-card {
  background: var(--bv-light-surface, #fff);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-auth-title {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-auth-subtitle,
body.bv-light-mode .bv-auth-foot {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-auth-label {
  color: var(--bv-light-text-soft, #333);
}

body.bv-light-mode .bv-auth-input {
  background: var(--bv-light-bg, #f8f6f1);
  border-color: var(--bv-light-border, #e0dcd4);
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-auth-input::placeholder {
  color: #999;
}

body.bv-light-mode .bv-auth-oauth-btn {
  background: var(--bv-light-bg, #f8f6f1);
  border-color: var(--bv-light-border, #e0dcd4);
  color: var(--bv-light-text, #1a1a1a);
}

/* ============================================
   DARK THEME: REGISTER PAGE
   ============================================ */

.bv-register {
  min-height: calc(100vh - var(--bv-header-height-dark, 80px));
  padding: calc(var(--bv-header-height-dark, 80px) + 3rem) 2rem 4rem;
  background: var(--bv-dark-bg);
}

.bv-register-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
.bv-register-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bv-register-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--bv-white);
  margin: 0 0 0.75rem;
}

.bv-register-subtitle {
  font-size: 1rem;
  color: var(--bv-white-muted);
  margin: 0;
}

/* Alerts */
.bv-register-alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.bv-register-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.bv-register-alert-error ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.bv-register-alert-error li {
  margin-bottom: 0.25rem;
}

.bv-register-alert-error li:last-child {
  margin-bottom: 0;
}

/* Form Card */
.bv-register-form {
  background: var(--bv-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Grid für nebeneinander liegende Felder */
.bv-register-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .bv-register-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Field */
.bv-register-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bv-register-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-white-soft);
}

.bv-register-required {
  color: var(--bv-gold);
}

/* Inputs */
.bv-register-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bv-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--bv-white);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bv-register-input:focus {
  outline: none;
  border-color: var(--bv-gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15);
}

.bv-register-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Date Input - Kalender Icon Styling */
.bv-register-input[type="date"] {
  position: relative;
  color-scheme: dark;
  padding-right: 1rem;
  cursor: pointer;
}

.bv-register-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  filter: invert(1) brightness(2) sepia(1) saturate(3) hue-rotate(5deg);
  position: absolute;
  left: auto;
  right: 1rem;
  width: 22px;
  height: 22px;
  transition: all 0.2s ease;
}

.bv-register-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  filter: invert(1) brightness(2.5) sepia(1) saturate(4) hue-rotate(10deg);
  transform: scale(1.1);
}

.bv-register-hint {
  font-size: 0.8rem;
  color: var(--bv-white-muted);
  margin-top: -0.25rem;
}

/* Checkboxes */
.bv-register-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.bv-register-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--bv-white-soft);
  cursor: pointer;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.bv-register-checkbox-label:hover {
  background: rgba(217, 164, 65, 0.05);
}

.bv-register-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: var(--bv-dark-bg);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  margin-top: 0.1rem;
}

.bv-register-checkbox:checked {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
}

.bv-register-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--bv-dark-bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bv-register-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.2);
}

.bv-register-checkbox-label a {
  color: var(--bv-gold);
  text-decoration: none;
}

.bv-register-checkbox-label a:hover {
  text-decoration: underline;
}

/* Actions */
.bv-register-actions {
  margin-top: 1rem;
}

.bv-register-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bv-gold);
  border: none;
  border-radius: 10px;
  color: var(--bv-dark-bg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bv-register-submit:hover {
  background: var(--bv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.bv-register-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.bv-register-foot {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--bv-white-muted);
}

.bv-register-link {
  color: var(--bv-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bv-register-link:hover {
  color: var(--bv-gold-light);
  text-decoration: underline;
}

/* Light Mode */
body.bv-light-mode .bv-register {
  background: var(--bv-light-bg);
}

body.bv-light-mode .bv-register-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-register-subtitle {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-register-form {
  background: var(--bv-light-surface);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-register-label {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-register-input {
  background: var(--bv-light-bg);
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-register-input::placeholder {
  color: #999;
}

body.bv-light-mode .bv-register-input[type="date"] {
  color-scheme: light;
}

body.bv-light-mode .bv-register-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.6;
}

body.bv-light-mode .bv-register-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  filter: brightness(0.8);
}

body.bv-light-mode .bv-register-hint {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-register-checkbox-label {
  color: var(--bv-light-text-soft);
}

body.bv-light-mode .bv-register-checkbox-label:hover {
  background: rgba(217, 164, 65, 0.08);
}

body.bv-light-mode .bv-register-checkbox {
  background: var(--bv-light-bg);
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-register-checkbox:checked {
  background: var(--bv-gold-dark);
  border-color: var(--bv-gold-dark);
}

body.bv-light-mode .bv-register-checkbox:checked::after {
  border-color: #fff;
}

body.bv-light-mode .bv-register-foot {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-register-link {
  color: var(--bv-gold-dark);
}

body.bv-light-mode .bv-register-link:hover {
  color: var(--bv-gold);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .bv-register {
    padding: calc(var(--bv-header-height-dark, 80px) + 1.5rem) 1rem 2rem;
  }

  .bv-register-title {
    font-size: 1.75rem;
  }

  .bv-register-subtitle {
    font-size: 0.9rem;
  }

  .bv-register-form {
    padding: 1.5rem 1.25rem;
  }

  .bv-register-grid {
    gap: 1rem;
  }

  .bv-register-input {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
}

/* ============================================
   DARK THEME: CART DRAWER ITEMS
   ============================================ */

.cart-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Nicht verfügbare Artikel im Cart Drawer */
.cart-item-unavailable {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  animation: cartItemPulse 1.5s ease-in-out infinite;
}

@keyframes cartItemPulse {
  0%, 100% {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
  50% {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 8px 0 rgba(239, 68, 68, 0.3);
  }
}

.cart-item-unavailable-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.125rem 0.5rem;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.25rem;
  vertical-align: middle;
}

.cart-unavailable-alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 0.5rem;
  color: #fca5a5;
  font-size: 0.85rem;
}

.cart-unavailable-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #ef4444;
}

.cart-checkout-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: #6b7280 !important;
}

/* Item Info Section */
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--bv-white, #fff);
  line-height: 1.3;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.55));
}

.cart-item-discount {
  font-size: 0.8rem;
  color: #4ade80;
  font-weight: 500;
}

/* Options List */
.cart-drawer-options {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.cart-drawer-option {
  font-size: 0.8rem;
  color: var(--bv-white-soft, rgba(255,255,255,0.75));
  background: rgba(217, 164, 65, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-drawer-option-delta {
  color: var(--bv-gold, #d9a441);
  font-weight: 500;
}

/* Notes */
.cart-drawer-notes {
  display: block;
  font-size: 0.8rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
  font-style: italic;
  margin-top: 0.35rem;
  padding: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 4px 4px 0;
}

/* Controls Section */
.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.cart-qty-btn,
.cart-drawer-qty-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--bv-white, #fff);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.cart-qty-btn:hover,
.cart-drawer-qty-btn:hover {
  background: rgba(217, 164, 65, 0.25);
  color: var(--bv-gold, #d9a441);
}

.cart-qty-btn:active,
.cart-drawer-qty-btn:active {
  background: rgba(217, 164, 65, 0.4);
  transform: scale(0.95);
}

.cart-drawer-qty-display {
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bv-white, #fff);
}

/* Line Total */
.cart-item-line-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bv-gold, #d9a441);
}

/* Empty Cart Text */
.cart-empty-text {
  text-align: center;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

/* Light Mode Cart Items */
body.bv-light-mode .cart-item-row {
  background: var(--bv-light-bg, #f8f6f1);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .cart-item-unavailable {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
}

body.bv-light-mode .cart-unavailable-alert {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

body.bv-light-mode .cart-item-name {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .cart-item-meta,
body.bv-light-mode .cart-drawer-notes {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .cart-drawer-option {
  background: rgba(217, 164, 65, 0.15);
  color: var(--bv-light-text-soft, #333);
}

body.bv-light-mode .cart-item-controls {
  border-top-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .cart-item-qty-controls {
  background: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .cart-qty-btn,
body.bv-light-mode .cart-drawer-qty-btn {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .cart-drawer-qty-display {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .cart-empty-text {
  color: var(--bv-light-text-muted, #666);
}

/* Mobile Cart Drawer Items */
@media (max-width: 480px) {
  .cart-item-row {
    padding: 0.875rem;
  }

  .cart-item-name {
    font-size: 0.95rem;
  }

  .cart-drawer-options {
    gap: 0.25rem 0.5rem;
  }

  .cart-drawer-option {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }

  .cart-qty-btn,
  .cart-drawer-qty-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .cart-drawer-qty-display {
    min-width: 28px;
    font-size: 0.95rem;
  }

  .cart-item-line-total {
    font-size: 1rem;
  }
}

/* ============================================
   ITEM MODAL - DESKTOP LARGE & MOBILE FULLSCREEN
   ============================================ */

/* Desktop: Larger Modal (80% screen) */
@media (min-width: 769px) {
  .item-modal-overlay,
  .bv-item-modal-overlay {
    padding: 2rem;
  }

  .item-modal,
  .bv-item-modal {
    width: 85%;
    max-width: 720px;
    max-height: 85vh;
  }

  .item-modal-header,
  .bv-item-modal-header {
    padding: 1.75rem 2rem 1rem;
  }

  .item-modal-header h2,
  .bv-item-modal-header h2,
  #item-modal-title {
    font-size: 1.75rem;
  }

  .item-modal-options,
  .bv-item-modal-options,
  #item-modal-options {
    padding: 1.25rem 2rem;
  }

  .item-modal-qty-row,
  .bv-item-modal-qty-row {
    padding: 1rem 2rem;
  }

  .item-modal-notes-row,
  .bv-item-modal-notes-row {
    padding: 1rem 2rem;
  }

  .item-modal-footer,
  .bv-item-modal-footer {
    padding: 1.5rem 2rem;
  }
}

/* Mobile: Full Screen Modal with Fixed Header/Footer */
@media (max-width: 768px) {
  .item-modal-overlay,
  .bv-item-modal-overlay {
    padding: 0 !important;
    align-items: stretch !important;
  }

  .item-modal,
  .bv-item-modal {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  /* Fixed Close Button */
  .item-modal-close,
  .bv-item-modal-close {
    position: fixed !important;
    top: max(env(safe-area-inset-top, 12px), 12px) !important;
    right: 12px !important;
    z-index: 200 !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
  }

  /* Header with Top Safe Area */
  .item-modal-header,
  .bv-item-modal-header {
    padding-top: calc(max(env(safe-area-inset-top, 0px), 0px) + 4rem) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-bottom: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  .item-modal-header h2,
  .bv-item-modal-header h2,
  #item-modal-title {
    font-size: 1.35rem !important;
    padding-right: 3rem !important;
  }

  /* Scrollable Middle Section */
  .item-modal-options,
  .bv-item-modal-options,
  #item-modal-options {
    flex: 1 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0.75rem 1rem !important;
    min-height: 0 !important;
  }

  .item-modal-qty-row,
  .bv-item-modal-qty-row {
    flex-shrink: 0 !important;
    padding: 0.75rem 1rem !important;
  }

  .item-modal-notes-row,
  .bv-item-modal-notes-row {
    flex-shrink: 0 !important;
    padding: 0.75rem 1rem !important;
  }

  /* Fixed Footer with Add Button */
  .item-modal-footer,
  .bv-item-modal-footer {
    position: sticky !important;
    bottom: 0 !important;
    flex-shrink: 0 !important;
    padding: 1rem !important;
    padding-bottom: calc(max(env(safe-area-inset-bottom, 0px), 0px) + 1rem) !important;
    background: var(--bv-dark-surface, #1a1a1a) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    z-index: 100 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
  }

  .item-modal-footer .btn-primary,
  .bv-item-modal-footer .btn-primary,
  #item-modal-add-to-cart {
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
  }

  .item-modal-price,
  .bv-item-modal-price {
    text-align: center !important;
    margin-bottom: 0.5rem !important;
  }

  /* Light Mode Footer */
  body.bv-light-mode .item-modal-footer,
  body.bv-light-mode .bv-item-modal-footer {
    background: var(--bv-light-surface, #fff) !important;
    border-top-color: var(--bv-light-border, #e0dcd4) !important;
  }

  body.bv-light-mode .item-modal-close,
  body.bv-light-mode .bv-item-modal-close {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--bv-light-text, #1a1a1a) !important;
  }
}

/* Option Items Styling Enhancement */
.option-group {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.option-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.option-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bv-gold, #d9a441);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}

.option-group-hint {
  font-size: 0.8rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.55));
  margin: 0 0 0.75rem;
}

.option-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.15s ease;
}

.option-item:last-child {
  border-bottom: none;
}

.option-item:hover {
  background: rgba(255, 255, 255, 0.03);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 8px;
}

.option-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--bv-gold, #d9a441);
  cursor: pointer;
  flex-shrink: 0;
}

.option-item-name {
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
  font-size: 0.95rem;
}

.option-item-price {
  color: var(--bv-gold, #d9a441);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Light Mode Option Items */
body.bv-light-mode .option-group {
  border-bottom-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .option-group-hint {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .option-item {
  border-bottom-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .option-item-name {
  color: var(--bv-light-text-soft, #333);
}

/* ============================================
   ITEM MODAL - NEW FOOTER LAYOUT
   Qty (+/-) | Price | Add Button
   ============================================ */

/* Scrollable Content Container */
.item-modal-scroll-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}

/* Notes inside scroll area */
.item-modal-scroll-content .item-modal-notes-row {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* New Footer Layout */
.item-modal-footer,
.bv-item-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bv-dark-surface, #1a1a1a);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Qty Controls in Footer */
.item-modal-footer-qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.item-modal-qty-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--bv-white, #fff);
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.item-modal-qty-btn:hover {
  background: rgba(217, 164, 65, 0.3);
  color: var(--bv-gold, #d9a441);
}

.item-modal-qty-btn:active {
  background: rgba(217, 164, 65, 0.5);
  transform: scale(0.95);
}

.item-modal-qty-display {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bv-white, #fff);
}

/* Price in Footer */
.item-modal-footer-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 70px;
}

.item-modal-footer-price .item-modal-total-price,
.item-modal-footer-price .bv-item-modal-total-price,
.item-modal-footer-price #item-modal-total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bv-gold, #d9a441);
}

/* Add Button in Footer */
.item-modal-add-btn,
#item-modal-add-to-cart {
  flex: 1;
  max-width: none;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Light Mode Footer */
body.bv-light-mode .item-modal-footer,
body.bv-light-mode .bv-item-modal-footer {
  background: var(--bv-light-surface, #fff);
  border-top-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .item-modal-footer-qty {
  background: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .item-modal-qty-btn {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .item-modal-qty-display {
  color: var(--bv-light-text, #1a1a1a);
}

/* Desktop Footer */
@media (min-width: 769px) {
  .item-modal-scroll-content .item-modal-notes-row {
    padding: 1rem 2rem;
  }

  .item-modal-footer,
  .bv-item-modal-footer {
    padding: 1.25rem 2rem;
    gap: 1rem;
  }

  .item-modal-qty-btn {
    width: 44px;
    height: 44px;
  }

  .item-modal-footer-price .item-modal-total-price {
    font-size: 1.35rem;
  }

  .item-modal-add-btn,
  #item-modal-add-to-cart {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Mobile Footer - 3 Elements in ONE ROW */
@media (max-width: 768px) {
  .item-modal-scroll-content {
    flex: 1 !important;
    overflow-y: auto !important;
  }

  .item-modal-scroll-content .item-modal-notes-row {
    padding: 0.75rem 1rem !important;
  }

  .item-modal-footer,
  .bv-item-modal-footer {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    padding-bottom: calc(max(env(safe-area-inset-bottom, 0px), 0px) + 0.75rem) !important;
  }

  .item-modal-footer-qty {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .item-modal-qty-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .item-modal-qty-display {
    min-width: 24px;
    font-size: 0.95rem;
  }

  .item-modal-footer-price {
    flex-shrink: 0;
    min-width: auto;
  }

  .item-modal-footer-price .item-modal-total-price,
  .item-modal-footer-price #item-modal-total-price {
    font-size: 1.05rem;
  }

  .item-modal-add-btn,
  #item-modal-add-to-cart {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 0.7rem 0.75rem !important;
    font-size: 0.85rem !important;
  }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .item-modal-footer,
  .bv-item-modal-footer {
    gap: 0.35rem !important;
    padding: 0.75rem 0.75rem !important;
  }

  .item-modal-qty-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .item-modal-qty-display {
    min-width: 24px;
    font-size: 0.9rem;
  }

  .item-modal-footer-price .item-modal-total-price {
    font-size: 1rem;
  }

  .item-modal-add-btn,
  #item-modal-add-to-cart {
    padding: 0.65rem 0.5rem !important;
    font-size: 0.8rem !important;
  }
}

/* ============================================
   HEADER: USER BUTTON & MOBILE NAV FIX
   ============================================ */

/* User/Login Button */
.bv-dark-user-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
  transition: all 0.2s ease;
  text-decoration: none;
}

.bv-dark-user-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bv-gold, #d9a441);
}

.bv-dark-user-btn svg {
  width: 22px;
  height: 22px;
}

/* Mobile Menu Button - Force Right */
.bv-dark-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--bv-white);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-left: auto;
  order: 99;
}

/* Mobile Overlay */
.bv-dark-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bv-dark-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation - neue Variante mit .open */
nav.bv-dark-mobile-nav#bv-dark-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bv-dark-surface, #1a1a1a);
  z-index: 9991;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

nav.bv-dark-mobile-nav#bv-dark-mobile-nav.open {
  transform: translateX(0);
}

.bv-dark-mobile-nav-inner {
  padding: 5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bv-dark-mobile-nav-link {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.bv-dark-mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--bv-gold, #d9a441);
}

.bv-dark-mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.75rem 0;
}

.bv-dark-mobile-nav-logout {
  color: #f87171;
}

.bv-dark-mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-dark-mobile-nav-ctas .bv-dark-cta {
  width: 100%;
  justify-content: center;
}

/* Mobile Header Actions */
@media (max-width: 768px) {
  .bv-dark-header-actions {
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
  }

  .bv-dark-cta-desktop {
    display: none !important;
  }

  .bv-dark-menu-btn {
    display: flex;
    order: 99;
    flex-shrink: 0;
  }

  .bv-dark-theme-toggle {
    width: 36px;
    height: 36px;
    order: 1;
  }

  .bv-dark-cart-btn {
    width: 36px;
    height: 36px;
    order: 2;
  }

  .bv-dark-user-btn {
    width: 36px;
    height: 36px;
    order: 3;
  }

  .bv-dark-user-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Light Mode User Button */
body.bv-light-mode .bv-dark-user-btn {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-dark-user-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--bv-gold, #d9a441);
}

body.bv-light-mode .bv-dark-mobile-nav {
  background: var(--bv-light-surface, #fff);
  border-left-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-dark-mobile-nav-link {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-dark-mobile-nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.bv-light-mode .bv-dark-mobile-nav-divider {
  background: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-dark-mobile-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* ============================================
   PAGE LOADING ANIMATION - BRENNENDE WOKPFANNE
   ============================================ */

/* Loading Overlay */
.bv-page-loader {
  position: fixed;
  inset: 0;
  background: var(--bv-dark-bg, #0f0f0f);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bv-page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Wok Animation Container */
.bv-loader-wok {
  position: relative;
  width: 120px;
  height: 120px;
}

/* Wok Pan SVG */
.bv-loader-wok-svg {
  width: 100%;
  height: 100%;
}

/* Fire Animation */
.bv-loader-fire {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 50px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.bv-loader-flame {
  width: 12px;
  background: linear-gradient(to top, #ff6b35, #ffd93d, #fff);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: bv-flame-dance 0.5s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

.bv-loader-flame:nth-child(1) {
  height: 35px;
  animation-delay: 0s;
}

.bv-loader-flame:nth-child(2) {
  height: 45px;
  animation-delay: 0.1s;
}

.bv-loader-flame:nth-child(3) {
  height: 40px;
  animation-delay: 0.2s;
}

.bv-loader-flame:nth-child(4) {
  height: 35px;
  animation-delay: 0.15s;
}

@keyframes bv-flame-dance {
  0% {
    transform: scaleY(1) scaleX(1) rotate(-3deg);
    filter: brightness(1);
  }
  100% {
    transform: scaleY(1.2) scaleX(0.9) rotate(3deg);
    filter: brightness(1.2);
  }
}

/* Steam Animation */
.bv-loader-steam {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.bv-loader-steam-puff {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bv-steam-rise 1.5s ease-out infinite;
}

.bv-loader-steam-puff:nth-child(1) {
  animation-delay: 0s;
}

.bv-loader-steam-puff:nth-child(2) {
  animation-delay: 0.3s;
}

.bv-loader-steam-puff:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes bv-steam-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) scale(2);
  }
}

/* Loading Text */
.bv-loader-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.65));
  text-align: center;
}

.bv-loader-dots {
  display: inline-block;
  animation: bv-dots-pulse 1.5s ease-in-out infinite;
}

@keyframes bv-dots-pulse {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

.bv-loader-dots::after {
  content: '...';
  animation: bv-dots-anim 1.5s steps(3, end) infinite;
}

@keyframes bv-dots-anim {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}

/* Light Mode Loader */
body.bv-light-mode .bv-page-loader {
  background: var(--bv-light-bg, #f8f6f1);
}

body.bv-light-mode .bv-loader-text {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-loader-steam-puff {
  background: rgba(0, 0, 0, 0.15);
}

/* Lazy Load Images */
img[data-src],
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[data-src].loaded,
img.lazy.loaded {
  opacity: 1;
}

/* Skeleton Loading */
.bv-skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: bv-skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes bv-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

body.bv-light-mode .bv-skeleton {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background-size: 200% 100%;
}

/* ============================================
   NAVIGATION & DROPDOWN TEXT FIX
   ============================================ */

/* Light Mode Navigation Links */
body.bv-light-mode .bv-dark-nav-link {
  color: var(--bv-light-text, #1a1a1a) !important;
}

body.bv-light-mode .bv-dark-nav-link:hover {
  color: var(--bv-gold, #d9a441) !important;
}

body.bv-light-mode .bv-dark-header {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom-color: var(--bv-light-border, #e0dcd4) !important;
}

body.bv-light-mode .bv-dark-logo-main,
body.bv-light-mode .bv-dark-logo-sub {
  color: var(--bv-light-text, #1a1a1a) !important;
}

/* Dropdown/Select Dark Mode - Text lesbar */
.bv-dark-form-input option,
select.bv-dark-form-input option {
  background: var(--bv-dark-surface, #1a1a1a);
  color: var(--bv-white, #fff);
}

select.bv-dark-form-input optgroup {
  background: var(--bv-dark-surface, #1a1a1a);
  color: var(--bv-gold, #d9a441);
  font-weight: 600;
}

/* Light Mode Dropdowns */
body.bv-light-mode .bv-dark-form-input option,
body.bv-light-mode select.bv-dark-form-input option {
  background: var(--bv-light-surface, #fff);
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode select.bv-dark-form-input optgroup {
  background: var(--bv-light-surface, #fff);
  color: var(--bv-gold-dark, #b8862e);
}

/* Form Hint Text */
.bv-dark-form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
  margin-top: 0.35rem;
  transition: color 0.2s ease;
}

body.bv-light-mode .bv-dark-form-hint {
  color: var(--bv-light-text-muted, #666);
}

/* ============================================
   MOBILE NAVIGATION - IMPROVED STYLING
   ============================================ */

/* Mobile Nav Slide Panel */
nav.bv-dark-mobile-nav#bv-dark-mobile-nav {
  background: linear-gradient(180deg, var(--bv-dark-bg, #0f0f0f) 0%, var(--bv-dark-surface, #1a1a1a) 100%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

/* Close Button for Mobile Nav */
.bv-dark-mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--bv-white, #fff);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.2s ease;
  z-index: 10;
}

.bv-dark-mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bv-gold, #d9a441);
}

/* Mobile Nav Inner Container */
.bv-dark-mobile-nav-inner {
  padding: 4.5rem 1.5rem 2rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
}

/* Mobile Nav Logo */
.bv-dark-mobile-nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bv-gold, #d9a441);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Nav Links */
.bv-dark-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--bv-white-soft, rgba(255,255,255,0.85));
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.bv-dark-mobile-nav-link:hover,
.bv-dark-mobile-nav-link:focus {
  background: rgba(217, 164, 65, 0.1);
  color: var(--bv-gold, #d9a441);
}

.bv-dark-mobile-nav-link:active {
  background: rgba(217, 164, 65, 0.2);
  transform: scale(0.98);
}

/* Mobile Nav Divider */
.bv-dark-mobile-nav-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  margin: 1rem 0;
}

/* Logout Link */
.bv-dark-mobile-nav-logout {
  color: #f87171 !important;
}

.bv-dark-mobile-nav-logout:hover {
  background: rgba(248, 113, 113, 0.1) !important;
}

/* Mobile Nav CTAs */
.bv-dark-mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bv-dark-mobile-nav-ctas .bv-dark-cta {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
}

/* Light Mode Mobile Nav */
body.bv-light-mode nav.bv-dark-mobile-nav#bv-dark-mobile-nav {
  background: linear-gradient(180deg, var(--bv-light-bg, #f8f6f1) 0%, var(--bv-light-surface, #fff) 100%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

body.bv-light-mode .bv-dark-mobile-nav-close {
  background: var(--bv-light-bg, #f8f6f1);
  border-color: var(--bv-light-border, #e0dcd4);
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-dark-mobile-nav-link {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-dark-mobile-nav-link:hover {
  background: rgba(217, 164, 65, 0.1);
  color: var(--bv-gold-dark, #b8862e);
}

body.bv-light-mode .bv-dark-mobile-nav-divider {
  background: linear-gradient(90deg, transparent 0%, var(--bv-light-border, #e0dcd4) 50%, transparent 100%);
}

body.bv-light-mode .bv-dark-mobile-nav-ctas {
  border-top-color: var(--bv-light-border, #e0dcd4);
}

/* ============================================
   MOBILE NAV ELEGANT BUTTON-CARD DESIGN
   ============================================ */

/* Button-Card Design for Mobile Nav Links */
.bv-dark-mobile-nav-link.bv-mobile-card {
  display: block;
  padding: 0.9rem 1rem;
  margin: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  position: relative;
}

/* Subtle overlay/highlight effect */
.bv-dark-mobile-nav-link.bv-mobile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.02) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* First item - top border */
.bv-dark-mobile-nav-link.bv-mobile-card:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hover State - button press effect */
.bv-dark-mobile-nav-link.bv-mobile-card:hover,
.bv-dark-mobile-nav-link.bv-mobile-card:focus {
  background: rgba(217, 164, 65, 0.06);
  color: var(--bv-gold, #d9a441);
  border-bottom-color: rgba(217, 164, 65, 0.15);
}

.bv-dark-mobile-nav-link.bv-mobile-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(217, 164, 65, 0.08) 50%, transparent 100%);
}

/* Active/Pressed State */
.bv-dark-mobile-nav-link.bv-mobile-card:active {
  background: rgba(217, 164, 65, 0.1);
}

/* Logout Card Special Styling */
.bv-dark-mobile-nav-link.bv-mobile-card.bv-dark-mobile-nav-logout {
  color: rgba(248, 113, 113, 0.85);
}

.bv-dark-mobile-nav-link.bv-mobile-card.bv-dark-mobile-nav-logout:hover {
  background: rgba(248, 113, 113, 0.08);
  color: #f87171;
  border-bottom-color: rgba(248, 113, 113, 0.15);
}

/* Login Button as Card */
button.bv-dark-mobile-nav-link.bv-mobile-card {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

/* Light Mode Adjustments */
body.bv-light-mode .bv-dark-mobile-nav-link.bv-mobile-card {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-dark-mobile-nav-link.bv-mobile-card:first-of-type {
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.bv-light-mode .bv-dark-mobile-nav-link.bv-mobile-card::before {
  background: linear-gradient(90deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.02) 50%, rgba(0,0,0,0.01) 100%);
}

body.bv-light-mode .bv-dark-mobile-nav-link.bv-mobile-card:hover {
  background: rgba(217, 164, 65, 0.08);
  color: var(--bv-gold-dark, #b8862e);
  border-bottom-color: rgba(217, 164, 65, 0.2);
}

body.bv-light-mode .bv-dark-mobile-nav-link.bv-mobile-card:hover::before {
  background: linear-gradient(90deg, transparent 0%, rgba(217, 164, 65, 0.1) 50%, transparent 100%);
}

body.bv-light-mode .bv-dark-mobile-nav-link.bv-mobile-card.bv-dark-mobile-nav-logout {
  color: #dc2626;
}

body.bv-light-mode .bv-dark-mobile-nav-link.bv-mobile-card.bv-dark-mobile-nav-logout:hover {
  background: rgba(220, 38, 38, 0.06);
  border-bottom-color: rgba(220, 38, 38, 0.15);
}

/* ============================================
   CHECKOUT PAYMENT OPTIONS
   ============================================ */

.bv-checkout-payment {
  margin-top: 1.5rem;
}

.bv-checkout-payment-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--bv-white, #fff);
}

.bv-checkout-payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

/* Payment Options Responsive: 3 → 2 → 1 pro Reihe */
@media (max-width: 1200px) {
  .bv-checkout-payment-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bv-checkout-payment-options {
    grid-template-columns: 1fr;
  }
}

.bv-checkout-payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-checkout-payment-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(217, 164, 65, 0.3);
}

.bv-checkout-payment-option:has(input:checked) {
  background: rgba(217, 164, 65, 0.1);
  border-color: var(--bv-gold, #d9a441);
}

.bv-checkout-payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--bv-gold, #d9a441);
  flex-shrink: 0;
}

.bv-checkout-payment-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.bv-checkout-payment-icon {
  width: 28px;
  height: 28px;
  color: var(--bv-gold, #d9a441);
  flex-shrink: 0;
}

.bv-checkout-payment-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bv-checkout-payment-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bv-white, #fff);
}

.bv-checkout-payment-desc {
  font-size: 0.8rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
}

/* Payment Icon Wrapper für Stripe-Methoden */
.bv-checkout-payment-icon-wrap {
  width: 40px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bv-checkout-payment-icon-wrap svg,
.bv-checkout-payment-icon-wrap .payment-icon {
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 28px;
}

/* Payment Methods Grid */
.bv-checkout-payment-methods {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bv-checkout-payment-methods-title {
  font-size: 0.8rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
  margin-bottom: 0.75rem;
}

.bv-checkout-payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bv-checkout-payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.35rem;
  transition: all 0.2s ease;
}

.bv-checkout-payment-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.bv-checkout-payment-method .payment-icon {
  display: block;
  height: 20px;
  width: auto;
}

/* Light Mode */
body.bv-light-mode .bv-checkout-payment-title {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-checkout-payment-option {
  background: var(--bv-light-bg, #f8f6f1);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-checkout-payment-option:hover {
  background: rgba(217, 164, 65, 0.05);
}

body.bv-light-mode .bv-checkout-payment-option:has(input:checked) {
  background: rgba(217, 164, 65, 0.1);
  border-color: var(--bv-gold-dark, #b8862e);
}

body.bv-light-mode .bv-checkout-payment-name {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-checkout-payment-desc {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-checkout-payment-methods {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-checkout-payment-methods-title {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-checkout-payment-method {
  background: var(--bv-light-surface, #fff);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ============================================
   STRIPE PAYMENT METHODS SELECTION
   ============================================ */

.bv-stripe-payment-section {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-stripe-methods-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-white, #fff);
  margin-bottom: 0.75rem;
}

.bv-stripe-methods-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bv-stripe-methods-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.6));
  font-size: 0.9rem;
}

.bv-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--bv-gold, #d9a441);
  border-radius: 50%;
  animation: bv-spin 0.8s linear infinite;
}

@keyframes bv-spin {
  to { transform: rotate(360deg); }
}

/* Stripe Method Radio Option */
.bv-stripe-method-option {
  display: block;
  cursor: pointer;
  position: relative;
}

.bv-stripe-method-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bv-stripe-method-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.bv-stripe-method-option:hover .bv-stripe-method-content {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.bv-stripe-method-option.selected .bv-stripe-method-content,
.bv-stripe-method-option input:checked + .bv-stripe-method-content {
  background: rgba(217, 164, 65, 0.1);
  border-color: var(--bv-gold, #d9a441);
}

.bv-stripe-method-icon {
  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bv-stripe-method-icon svg {
  width: 100%;
  height: 100%;
}

.bv-stripe-method-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.bv-stripe-method-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bv-white, #fff);
}

.bv-stripe-method-desc {
  font-size: 0.8rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
}

.bv-stripe-method-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--bv-gold, #d9a441);
  transition: opacity 0.2s ease;
}

.bv-stripe-method-option.selected .bv-stripe-method-check,
.bv-stripe-method-option input:checked + .bv-stripe-method-content .bv-stripe-method-check {
  opacity: 1;
}

.bv-stripe-method-check svg {
  width: 18px;
  height: 18px;
}

/* Stripe Payment Element Container */
.bv-stripe-payment-element {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100px;
}

.bv-stripe-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  color: var(--bv-white-muted, rgba(255,255,255,0.6));
  font-size: 0.9rem;
}

/* Stripe Error Message */
.bv-stripe-error {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 0.9rem;
}

.bv-stripe-error-inline {
  padding: 1rem;
  text-align: center;
  color: #f87171;
}

.bv-stripe-no-methods {
  padding: 1rem;
  text-align: center;
  color: var(--bv-white-muted, rgba(255,255,255,0.5));
}

/* Light Mode Overrides */
body.bv-light-mode .bv-stripe-payment-section {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-stripe-methods-title {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-stripe-methods-loading {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-spinner {
  border-color: rgba(0,0,0,0.1);
  border-top-color: var(--bv-gold, #d9a441);
}

body.bv-light-mode .bv-stripe-method-content {
  background: var(--bv-light-surface, #fff);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-stripe-method-option:hover .bv-stripe-method-content {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.2);
}

body.bv-light-mode .bv-stripe-method-option.selected .bv-stripe-method-content,
body.bv-light-mode .bv-stripe-method-option input:checked + .bv-stripe-method-content {
  background: rgba(217, 164, 65, 0.08);
  border-color: var(--bv-gold, #d9a441);
}

body.bv-light-mode .bv-stripe-method-name {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-stripe-method-desc {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-stripe-payment-element {
  background: var(--bv-light-surface, #fff);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-stripe-loading {
  color: var(--bv-light-text-muted, #666);
}

/* ============================================
   DATE INPUT - FIX FOR MOBILE CALENDAR
   ============================================ */

/* Date Input - Native Picker behalten */
input[type="date"].bv-dark-form-input {
  position: relative;
  cursor: pointer;
  color-scheme: dark;
  padding-right: 2.5rem;
}

/* iOS Text-Ausrichtung */
input[type="date"].bv-dark-form-input::-webkit-date-and-time-value {
  text-align: left;
}

/* Kalender-Icon Styling */
input[type="date"].bv-dark-form-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  filter: invert(1) brightness(2) sepia(1) saturate(3) hue-rotate(5deg);
  position: absolute;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  padding: 0;
  transition: all 0.2s ease;
}

input[type="date"].bv-dark-form-input::-webkit-calendar-picker-indicator:hover {
  filter: invert(1) brightness(2.5) sepia(1) saturate(4) hue-rotate(10deg);
  transform: scale(1.1);
}

/* Mobile spezifisch */
@media (max-width: 768px) {
  input[type="date"].bv-dark-form-input {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px;
  }
}

/* Light Mode */
body.bv-light-mode input[type="date"].bv-dark-form-input {
  color-scheme: light;
}

body.bv-light-mode input[type="date"].bv-dark-form-input::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.7;
}

body.bv-light-mode input[type="date"].bv-dark-form-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* ============================================
   GOOGLE REVIEWS SLIDER
   ============================================ */

.bv-dark-reviews {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--bv-dark-surface) 0%, var(--bv-dark-bg) 100%);
}

.bv-dark-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bv-dark-reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bv-dark-reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.bv-dark-reviews-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.bv-dark-reviews-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bv-gold);
}

.bv-dark-reviews-count {
  color: var(--bv-dark-text-muted);
  font-size: 0.9rem;
}

.bv-dark-reviews-slider {
  overflow: hidden;
  margin: 0 -12px;
  padding: 0 12px;
}

.bv-dark-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.bv-dark-review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bv-dark-surface);
  border: 1px solid var(--bv-dark-border);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 280px;
}

@media (max-width: 1024px) {
  .bv-dark-review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .bv-dark-review-card {
    flex: 0 0 100%;
  }
}

.bv-dark-review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bv-dark-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bv-gold) 0%, #b8862e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bv-dark-bg);
}

.bv-dark-review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bv-dark-review-author {
  font-weight: 600;
  color: var(--bv-dark-text);
}

.bv-dark-review-date {
  font-size: 0.8rem;
  color: var(--bv-dark-text-muted);
}

.bv-dark-review-google {
  flex-shrink: 0;
}

.bv-dark-review-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.bv-dark-review-text {
  color: var(--bv-dark-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.bv-dark-reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.bv-dark-reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bv-dark-border);
  background: var(--bv-dark-surface);
  color: var(--bv-dark-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bv-dark-reviews-btn:hover:not(:disabled) {
  background: var(--bv-gold);
  border-color: var(--bv-gold);
  color: var(--bv-dark-bg);
}

.bv-dark-reviews-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bv-dark-reviews-btn svg {
  width: 20px;
  height: 20px;
}

.bv-dark-reviews-dots {
  display: flex;
  gap: 8px;
}

.bv-dark-reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--bv-dark-border);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.bv-dark-reviews-dot.active,
.bv-dark-reviews-dot:hover {
  background: var(--bv-gold);
  transform: scale(1.2);
}

.bv-dark-reviews-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  color: var(--bv-gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.bv-dark-reviews-link:hover {
  opacity: 0.8;
}

/* Light Mode */
body.bv-light-mode .bv-dark-reviews {
  background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
}

body.bv-light-mode .bv-dark-review-card {
  background: #fff;
  border-color: var(--bv-light-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

body.bv-light-mode .bv-dark-review-author {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-review-text {
  color: var(--bv-light-text-muted);
}

body.bv-light-mode .bv-dark-reviews-btn {
  background: #fff;
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-reviews-dot {
  background: var(--bv-light-border);
}

/* ============================================
   SONDERÖFFNUNGSZEITEN STYLING
   ============================================ */

.bv-dark-hours-special {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bv-dark-border);
}

.bv-dark-hours-special-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bv-gold);
  margin: 0 0 0.75rem 0;
}

.bv-dark-hours-special-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.bv-dark-hours-special-date {
  color: var(--bv-dark-text);
}

.bv-dark-hours-special-date small {
  display: block;
  color: var(--bv-dark-text-muted);
  font-size: 0.75rem;
}

.bv-dark-hours-special-time {
  color: var(--bv-gold);
  font-weight: 500;
  text-align: right;
}

.bv-dark-hours-special-time.is-closed {
  color: #ef4444;
}

/* Light Mode */
body.bv-light-mode .bv-dark-hours-special {
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-dark-hours-special-date {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-dark-hours-special-date small {
  color: var(--bv-light-text-muted);
}

/* Küchen-Schließzeiten */
.bv-dark-hours-kitchen {
  display: block;
  font-size: 0.75rem;
  color: var(--bv-dark-text-muted);
  font-weight: 400;
  margin-top: 2px;
}

body.bv-light-mode .bv-dark-hours-kitchen {
  color: var(--bv-light-text-muted);
}

/* ============================================
   ORDER STATUS PAGE
   ============================================ */

.bv-order-status-page {
  min-height: calc(100vh - 200px);
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bv-dark-bg) 0%, var(--bv-dark-surface) 100%);
}

.bv-order-status-container {
  max-width: 500px;
  width: 100%;
}

.bv-order-status-card {
  background: var(--bv-dark-surface);
  border: 1px solid var(--bv-dark-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.bv-order-status-header {
  margin-bottom: 2rem;
}

.bv-order-status-title {
  font-family: var(--bv-font-display);
  font-size: 1.75rem;
  color: var(--bv-dark-text);
  margin: 0 0 1rem 0;
}

.bv-order-status-code {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bv-order-status-code-label {
  font-size: 0.85rem;
  color: var(--bv-dark-text-muted);
}

.bv-order-status-code-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bv-gold);
  font-family: monospace;
  letter-spacing: 2px;
}

.bv-order-status-content {
  margin-bottom: 2rem;
}

.bv-order-status-status {
  background: rgba(217, 164, 65, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.bv-order-status-status-label {
  font-size: 0.85rem;
  color: var(--bv-dark-text-muted);
  margin-bottom: 0.5rem;
}

.bv-order-status-status-value {
  font-size: 1.25rem;
  font-weight: 600;
}

.bv-order-status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.bv-order-status-badge.status-pending {
  background: rgba(234, 179, 8, 0.2);
  color: #fbbf24;
}

.bv-order-status-badge.status-accepted {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.bv-order-status-badge.status-in-progress {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.bv-order-status-badge.status-ready {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.bv-order-status-badge.status-completed {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.bv-order-status-badge.status-cancelled {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.bv-order-status-pickup {
  background: var(--bv-dark-bg);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.bv-order-status-pickup-label {
  font-size: 0.85rem;
  color: var(--bv-dark-text-muted);
  margin-bottom: 0.25rem;
}

.bv-order-status-pickup-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bv-gold);
}

.bv-order-status-info {
  font-size: 0.85rem;
  color: var(--bv-dark-text-muted);
}

.bv-order-status-info p {
  margin: 0;
}

.bv-order-status-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bv-order-status-btn-primary,
.bv-order-status-btn-secondary {
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.bv-order-status-btn-primary {
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
}

.bv-order-status-btn-primary:hover {
  background: #e5b84a;
  transform: translateY(-2px);
}

.bv-order-status-btn-secondary {
  background: transparent;
  border: 1px solid var(--bv-dark-border);
  color: var(--bv-dark-text);
}

.bv-order-status-btn-secondary:hover {
  border-color: var(--bv-gold);
  color: var(--bv-gold);
}

.bv-order-status-error {
  text-align: center;
}

.bv-order-status-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bv-order-status-text {
  color: var(--bv-dark-text-muted);
  margin: 0 0 1.5rem 0;
}

.bv-order-status-loading {
  color: var(--bv-dark-text-muted);
  animation: bv-pulse 1.5s ease-in-out infinite;
}

.bv-order-status-error-text {
  color: #f87171;
}

@keyframes bv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Light Mode */
body.bv-light-mode .bv-order-status-page {
  background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
}

body.bv-light-mode .bv-order-status-card {
  background: #fff;
  border-color: var(--bv-light-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body.bv-light-mode .bv-order-status-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-order-status-status {
  background: rgba(184, 134, 46, 0.1);
}

body.bv-light-mode .bv-order-status-pickup {
  background: #f5f3f0;
}

body.bv-light-mode .bv-order-status-btn-secondary {
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}

/* ============================================
   RESERVATION SUCCESS PAGE
   ============================================ */

.bv-reservation-success-page {
  min-height: calc(100vh - 200px);
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bv-dark-bg) 0%, var(--bv-dark-surface) 100%);
}

.bv-reservation-success-container {
  max-width: 550px;
  width: 100%;
}

.bv-reservation-success-card {
  background: var(--bv-dark-surface);
  border: 1px solid var(--bv-dark-border);
  border-radius: 16px;
  padding: 2rem;
}

.bv-reservation-success-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bv-reservation-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bv-reservation-success-title {
  font-family: var(--bv-font-display);
  font-size: 1.75rem;
  color: var(--bv-dark-text);
  margin: 0 0 0.5rem 0;
}

.bv-reservation-success-subtitle {
  color: var(--bv-dark-text-muted);
  margin: 0;
}

.bv-reservation-success-content {
  margin-bottom: 2rem;
}

.bv-reservation-success-details {
  background: var(--bv-dark-bg);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.bv-reservation-success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bv-dark-border);
}

.bv-reservation-success-detail-row:last-child {
  border-bottom: none;
}

.bv-reservation-success-detail-label {
  color: var(--bv-dark-text-muted);
  font-size: 0.9rem;
}

.bv-reservation-success-detail-value {
  color: var(--bv-dark-text);
  font-weight: 600;
}

.bv-reservation-success-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}

.bv-reservation-success-badge.status-pending {
  background: rgba(234, 179, 8, 0.2);
  color: #fbbf24;
}

.bv-reservation-success-badge.status-confirmed {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.bv-reservation-success-badge.status-seated {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.bv-reservation-success-badge.status-completed {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.bv-reservation-success-badge.status-cancelled,
.bv-reservation-success-badge.status-no-show {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.bv-reservation-success-info {
  background: rgba(217, 164, 65, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.bv-reservation-success-info p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--bv-dark-text-muted);
}

.bv-reservation-success-info p:last-child {
  margin-bottom: 0;
}

.bv-reservation-success-info strong {
  color: var(--bv-gold);
}

.bv-reservation-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bv-reservation-success-btn-primary,
.bv-reservation-success-btn-secondary {
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.bv-reservation-success-btn-primary {
  background: var(--bv-gold);
  color: var(--bv-dark-bg);
}

.bv-reservation-success-btn-primary:hover {
  background: #e5b84a;
  transform: translateY(-2px);
}

.bv-reservation-success-btn-secondary {
  background: transparent;
  border: 1px solid var(--bv-dark-border);
  color: var(--bv-dark-text);
}

.bv-reservation-success-btn-secondary:hover {
  border-color: var(--bv-gold);
  color: var(--bv-gold);
}

.bv-reservation-success-error {
  text-align: center;
}

.bv-reservation-success-text {
  color: var(--bv-dark-text-muted);
  margin: 0 0 1.5rem 0;
}

/* Light Mode */
body.bv-light-mode .bv-reservation-success-page {
  background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
}

body.bv-light-mode .bv-reservation-success-card {
  background: #fff;
  border-color: var(--bv-light-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body.bv-light-mode .bv-reservation-success-title {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-reservation-success-details {
  background: #f5f3f0;
}

body.bv-light-mode .bv-reservation-success-detail-row {
  border-color: var(--bv-light-border);
}

body.bv-light-mode .bv-reservation-success-detail-value {
  color: var(--bv-light-text);
}

body.bv-light-mode .bv-reservation-success-info {
  background: rgba(184, 134, 46, 0.1);
}

body.bv-light-mode .bv-reservation-success-btn-secondary {
  border-color: var(--bv-light-border);
  color: var(--bv-light-text);
}


/* ============================================
   LAZY LOADING & IMAGE OPTIMIZATION
   ============================================ */

/* Lazy Load Placeholder mit Blur-Effect */
.lazy-image {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.lazy-image.loaded {
  opacity: 1;
}

/* Placeholder Background während des Ladens */
.lazy-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body.bv-light-mode .lazy-wrapper {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Shimmer Animation für Placeholder */
.lazy-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

body.bv-light-mode .lazy-wrapper::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.lazy-wrapper.loaded::before {
  display: none;
}

/* Native Lazy Loading Support */
img[loading="lazy"] {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Blur-up Technik für Bilder */
.blur-up {
  filter: blur(10px);
  transition: filter 0.5s ease;
}

.blur-up.loaded {
  filter: blur(0);
}

/* Aspect Ratio Container für Bilder */
.aspect-ratio-box {
  position: relative;
  width: 100%;
  height: 0;
}

.aspect-ratio-box--16-9 {
  padding-bottom: 56.25%;
}

.aspect-ratio-box--4-3 {
  padding-bottom: 75%;
}

.aspect-ratio-box--1-1 {
  padding-bottom: 100%;
}

.aspect-ratio-box img,
.aspect-ratio-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optimierte Bild-Darstellung */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

/* Content Visibility für Performance */
.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ============================================
   KITCHEN CLOSED MODAL & PREORDER
   ============================================ */

/* Preorder Hint Button in Status Bar */
.bv-preorder-hint-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--bv-gold, #d9a441);
  color: #1a1a1a;
  border: none;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-preorder-hint-btn:hover {
  background: #e6b84d;
  transform: scale(1.02);
}

/* Kitchen Modal Overlay */
.bv-kitchen-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem;
}

/* Modal Content */
.bv-kitchen-modal-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, #1a2820 0%, #0f1a14 100%);
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: bv-modal-appear 0.3s ease;
}

@keyframes bv-modal-appear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Close Button */
.bv-kitchen-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-kitchen-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Icon */
.bv-kitchen-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* Title */
.bv-kitchen-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bv-gold, #d9a441);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

/* Info */
.bv-kitchen-modal-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.bv-kitchen-modal-info strong {
  color: #fff;
}

/* Description */
.bv-kitchen-modal-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

/* Actions */
.bv-kitchen-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Buttons */
.bv-kitchen-modal-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-kitchen-modal-btn-primary {
  background: linear-gradient(135deg, #d9a441 0%, #b8862e 100%);
  color: #1a1a1a;
}

.bv-kitchen-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 164, 65, 0.3);
}

.bv-kitchen-modal-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bv-kitchen-modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Light Mode Adjustments */
body.bv-light-mode .bv-kitchen-modal {
  background: rgba(0, 0, 0, 0.6);
}

body.bv-light-mode .bv-kitchen-modal-content {
  background: linear-gradient(145deg, #fff 0%, #f8f6f1 100%);
  border-color: var(--bv-gold-dark, #b8862e);
}

body.bv-light-mode .bv-kitchen-modal-close {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6);
}

body.bv-light-mode .bv-kitchen-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #000;
}

body.bv-light-mode .bv-kitchen-modal-title {
  color: var(--bv-gold-dark, #b8862e);
}

body.bv-light-mode .bv-kitchen-modal-info {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-kitchen-modal-info strong {
  color: var(--bv-light-text, #1a1a1a);
}

body.bv-light-mode .bv-kitchen-modal-desc {
  color: var(--bv-light-text-muted, #666);
}

body.bv-light-mode .bv-kitchen-modal-btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: var(--bv-light-text, #1a1a1a);
  border-color: var(--bv-light-border, #e0dcd4);
}

body.bv-light-mode .bv-kitchen-modal-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 480px) {
  .bv-kitchen-modal-content {
    padding: 1.5rem 1rem;
  }

  .bv-kitchen-modal-icon {
    font-size: 2.5rem;
  }

  .bv-kitchen-modal-title {
    font-size: 1.3rem;
  }

  .bv-preorder-hint-btn {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
    width: fit-content;
  }
}

