/* Global Styles for VR-Infotainment Website */

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px; /* Offset für sticky header */
    background-color: #090A0F; /* Issue #167: Verhindert weißen Balken auf iOS */
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #090A0F;
    color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100%;
    min-height: -webkit-fill-available; /* iOS Safari fix */
}

/* Issue #167: iOS Safe Area Fix für weißen Balken */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }

    html::after {
        content: '';
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: env(safe-area-inset-bottom);
        background-color: #090A0F;
        z-index: 9999;
        pointer-events: none;
    }
}

img,
picture,
video {
    max-width: 100%;
    height: auto;
}

:root {
    --accent-start: #2563eb;
    --accent-end: #0ea5e9;
    --space-start: #0a0a0a;
    --space-end: #a8a8a8;
    --dino-start: #047857;
    --dino-end: #f97316;
    --dropdown-default-start: rgba(37, 99, 235, 0.9);
    --dropdown-default-end: rgba(14, 165, 233, 0.9);
}

/* Missing Tailwind utility classes */
.object-cover {
    object-fit: cover !important;
}

.object-contain {
    object-fit: contain !important;
}

.bg-blue-600 {
    background-color: #2563eb !important;
}

.bg-blue-700 {
    background-color: #1d4ed8 !important;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8 !important;
}

.bg-sky-400 {
    background-color: #38bdf8 !important;
}

.text-sky-400 {
    color: #38bdf8 !important;
}

.text-sky-200 {
    color: #bae6fd !important;
}

.page-home {
    --accent-start: #2563eb;
    --accent-end: #0ea5e9;
}

.page-tickets {
    --accent-start: #2563eb;
    --accent-end: #0ea5e9;
}

.page-weltall {
    --accent-start: #0a0a0a;
    --accent-end: #a8a8a8;
}

.page-dino {
    --accent-start: #047857;
    --accent-end: #f97316;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #60a5fa 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Space theme gradient */
.gradient-text-space {
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 50%, #0a0a0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dinosaur theme gradient */
.gradient-text-dino {
    background: linear-gradient(135deg, #fff 0%, #90EE90 50%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Liquid Glass effect - Matte finish */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.nav-glass {
    overflow: visible;
    background: rgba(12, 14, 22, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 48px -24px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-glass::before {
    border-radius: inherit;
}

.nav-glass:hover,
.nav-glass:focus-within {
    background: rgba(14, 16, 26, 0.94);
    box-shadow: 0 24px 52px -22px rgba(0, 0, 0, 0.75);
}

@supports selector(:has(*)) {
    .nav-glass:has(.nav-dropdown-button:hover),
    .nav-glass:has(.nav-dropdown-button:focus-visible),
    .nav-glass:has(.nav-dropdown.is-open) {
        transform: scale(1.02);
        background: rgba(16, 18, 28, 0.96);
        box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.8);
    }
}

.nav-link {
    position: relative;
    color: inherit;
    transition: color 0.3s ease;
}

.nav-link-active {
    color: #ffffff;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    border-radius: 999px;
}

.nav-dropdown-button {
    position: relative;
    z-index: 1;
    color: inherit;
    transition: color 0.3s ease;
    overflow: hidden;
}

.nav-dropdown-button::before {
    content: '';
    position: absolute;
    inset: -0.35rem -0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    pointer-events: none;
}

.nav-dropdown-button:hover::before,
.nav-dropdown-button:focus-visible::before,
.nav-dropdown.is-open .nav-dropdown-button::before {
    opacity: 1;
    transform: scale(1);
}

.nav-dropdown-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(7, 9, 15, 0.9);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-dropdown-button:hover::after,
.nav-dropdown-button:focus-visible::after,
.nav-dropdown.is-open .nav-dropdown-button::after {
    opacity: 1;
}

.nav-dropdown-button span,
.nav-dropdown-button i {
    position: relative;
    z-index: 1;
}

.nav-dropdown-button:hover,
.nav-dropdown-button:focus-visible,
.nav-dropdown.is-open .nav-dropdown-button {
    color: #ffffff;
}

.nav-dropdown-button i {
    transition: transform 0.2s ease;
}

.nav-dropdown-button:hover i,
.nav-dropdown-button:focus-visible i,
.nav-dropdown.is-open .nav-dropdown-button i {
    transform: rotate(180deg);
}

.nav-dropdown-button[data-active="true"] {
    color: #ffffff;
}

.nav-dropdown-button[data-active="true"]::after {
    content: '';
    position: absolute;
    left: -0.75rem;
    right: -0.75rem;
    bottom: -0.6rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    border-radius: 999px;
    z-index: 0;
    pointer-events: none;
}

.nav-dropdown-menu {
    position: relative;
    background: rgba(7, 9, 15, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 30px 60px -20px rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    overflow: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: rgba(7, 9, 15, 0.6);
    filter: blur(16px);
    z-index: -1;
    pointer-events: none;
}

.nav-dropdown [data-dropdown-menu] {
    display: none;
}

.nav-dropdown-menu a {
    position: relative;
    z-index: 1;
    color: #e2e8ff;
    padding: 0.6rem 0.8rem;
    border-radius: 0.9rem;
    cursor: pointer;
    pointer-events: auto;
    --link-hover-start: var(--dropdown-default-start);
    --link-hover-end: var(--dropdown-default-end);
}

.nav-dropdown-menu a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--link-hover-start), var(--link-hover-end));
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
    pointer-events: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
    color: #0b1120;
    box-shadow: 0 14px 32px -20px rgba(9, 10, 15, 0.9);
}

.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a:focus-visible::after,
.nav-dropdown-menu a[aria-current="page"]::after {
    opacity: 1;
}

.nav-dropdown-menu a i {
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover i,
.nav-dropdown-menu a:focus-visible i,
.nav-dropdown-menu a[aria-current="page"] i {
    transform: translateX(2px);
    color: #0b1120;
}

.nav-dropdown-menu a[data-theme="weltall"] {
    --link-hover-start: rgba(59, 130, 246, 0.95);
    --link-hover-end: rgba(96, 165, 250, 0.95);
}

.nav-dropdown-menu a[data-theme="dinosaurier"] {
    --link-hover-start: rgba(34, 197, 94, 0.95);
    --link-hover-end: rgba(249, 115, 22, 0.95);
}

.nav-dropdown.is-open [data-dropdown-menu] {
    display: flex;
}

.nav-accordion[open] summary {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.nav-accordion a {
    position: relative;
    z-index: 1;
    cursor: pointer;
    pointer-events: auto;
}

.nav-accordion a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.03), 
        transparent);
    transition: left 0.6s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px 0 rgba(31, 38, 135, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

/* Premium glass effect for widgets */
.glass-widget {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px -10px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px 0 rgba(255, 255, 255, 0.06),
        inset 0 -2px 4px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Space theme glass */
.glass-widget-space {
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(168, 168, 168, 0.2);
}

/* Dinosaur theme glass */
.glass-widget-dino {
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.08) 0%, 
        rgba(34, 139, 34, 0.05) 100%);
    border: 1px solid rgba(139, 69, 19, 0.15);
}

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

.hero-section-space {
    background: radial-gradient(ellipse at bottom, #0a0a0a 0%, #000000 100%);
}

/* Fix: Weltall Hero-Section volle Viewport-Breite für Sternenhimmel (Issue #152) */
.hero-section-space.wp-block-group {
    max-width: none !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}

/* Sternenhimmel volle Viewport-Breite */
.hero-section-space #stars {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

/* Mond-Visual bei voller Breite korrekt positionieren */
.hero-section-space .moon-visual {
    right: calc(50vw - 600px + 5%); /* Relativ zum 1200px Content-Bereich */
}

@media (max-width: 1200px) {
    .hero-section-space .moon-visual {
        right: 5%; /* Auf kleineren Screens normal positionieren */
    }
}

/* Content innerhalb zentriert halten */
.hero-section-space > .relative {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-section-dino {
    background: radial-gradient(ellipse at bottom, #2F4F2F 0%, #1C1C1C 100%);
}

/* Home (neutral brand) hero */
.hero-section-home {
    background:
        radial-gradient(1200px 600px at 10% 0%, rgba(82, 91, 255, 0.08), transparent 60%),
        radial-gradient(900px 500px at 90% 100%, rgba(0, 210, 165, 0.07), transparent 55%),
        linear-gradient(180deg, #0B0F14 0%, #090A0F 100%);
}

/* Transparenter Hintergrund wenn Scroll-Animation aktiv ist (Issue #69) */
body.home {
    background: transparent !important;
}

body.home .hero-section-home {
    background: transparent;
}

/* Alle Sektionen auf der Homepage transparent für Scroll-Animation */
body.home section,
body.home .wp-block-group {
    background-color: transparent !important;
}

/* FAQ-Sektion - Dunkler Hintergrund für Kontrast */
body.home #faq {
    background: #0d0f17 !important;
}

/* Kalender-Sektion transparent */
body.home .calendar-section {
    background: transparent !important;
}

/* Glass-Widgets behalten ihren halbtransparenten Hintergrund für Lesbarkeit */
body.home .glass-widget {
    background: rgba(15, 20, 30, 0.75) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.home-blob {
    position: absolute;
    width: 50vw; height: 50vw; max-width: 800px; max-height: 800px;
    filter: blur(60px);
    opacity: 0.25;
    border-radius: 50%;
}
.home-blob-1 { background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.6), rgba(14, 165, 233, 0.4)); top: -20%; left: -10%; }
.home-blob-2 { background: radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.5), rgba(234, 179, 8, 0.35)); bottom: -15%; right: -10%; }
.home-blob-3 { background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.35), rgba(59, 130, 246, 0.25)); top: 40%; right: 20%; width: 35vw; height: 35vw; }

/* Stars animation */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 5s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Enhanced Moon with texture */
.moon-visual {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8e8e8);
    border-radius: 50%;
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.5),
        inset -20px -20px 40px rgba(200, 200, 200, 0.3),
        inset 10px 10px 20px rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
    opacity: 0.95;
}

.moon-visual::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 15%;
    height: 15%;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.4), transparent);
    border-radius: 50%;
}

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

/* Planets background */
.planets-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.3;
}

.planet {
    position: absolute;
    border-radius: 50%;
    animation: orbit 60s linear infinite;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* Fade-in animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Improved Calendar styles */
.calendar-section {
    background: linear-gradient(135deg, #1B2735 0%, #090A0F 100%);
}

.calendar-widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 0 40px rgba(128, 128, 255, 0.15);
    position: relative;
}

.calendar-status {
    min-height: 1.5rem;
    transition: color 0.3s ease;
}

.calendar-status[data-state="loading"] {
    color: #cbd5f5;
}

.calendar-status[data-state="error"] {
    color: #fca5a5;
}

.calendar-status[data-state="loading"]::before {
    content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.5rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: transparent;
    vertical-align: middle;
    animation: calendar-spin 0.8s linear infinite;
}

@keyframes calendar-spin {
    to { transform: rotate(360deg); }
}

/* Booking wizard progress */
#wizard-stepper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0 3.5rem;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

#wizard-stepper::-webkit-scrollbar {
    display: none;
}

#wizard-stepper::before,
#wizard-stepper::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0; /* Streifen hinter Items positionieren */
}

#wizard-stepper::before {
    left: 3.5rem;
    right: 3.5rem;
    background: rgba(148, 163, 184, 0.15); /* Subtiler */
}

#wizard-stepper::after {
    left: 3.5rem;
    width: calc(var(--wizard-progress, 0) * (100% - 7rem));
    background: rgba(37, 99, 235, 0.5); /* Vollfarbe statt Verlauf */
    transition: width 0.35s ease;
}

@media (max-width: 900px) {
    #wizard-stepper {
        justify-content: flex-start;
        padding: 0 0.75rem;
        gap: 1rem;
        position: relative;
        /* Scroll-Snap für besseres Scroll-Erlebnis */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    #wizard-stepper::before,
    #wizard-stepper::after {
        display: none;
    }

    /* Scroll-Indikatoren: Schatten an den Seiten */
    #wizard-stepper::before {
        content: '';
        display: block;
        position: sticky;
        left: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(90deg, rgba(9, 10, 15, 0.9) 0%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    .wizard-stepper__item {
        scroll-snap-align: start;
    }
}

.wizard-stepper__item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: rgba(12, 15, 25, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18);
    min-width: 210px;
    flex: 1 1 0;
    transition: transform 0.3s ease, border 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.wizard-stepper__item[data-state="upcoming"] {
    opacity: 0.7;
}

.wizard-stepper__item[data-state="active"] {
    background: rgba(37, 99, 235, 0.4); /* Vollfarbe Royal Blue */
    border-color: rgba(14, 165, 233, 0.6);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
    transform: translateY(-4px);
    opacity: 1;
}

.wizard-stepper__item[data-state="complete"] {
    background: rgba(16, 185, 129, 0.3); /* Vollfarbe Grün (funktionale Farbe bleibt) */
    border-color: rgba(16, 185, 129, 0.5);
    opacity: 1;
}

.wizard-stepper__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #f8fafc;
    flex-shrink: 0;
}

.wizard-stepper__item[data-state="complete"] .wizard-stepper__icon {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.55);
    color: #bbf7d0;
}

.wizard-stepper__item[data-state="active"] .wizard-stepper__icon {
    background: rgba(37, 99, 235, 0.85); /* Vollfarbe Royal Blue */
    border-color: rgba(14, 165, 233, 0.9);
}

.wizard-stepper__label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.25;
}

.wizard-stepper__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #e2e8f0;
    letter-spacing: 0.01em;
}

.wizard-stepper__subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .wizard-stepper__item {
        min-width: 180px;
    }

    .wizard-stepper__subtitle {
        display: none;
    }
}

.wizard-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.wizard-summary__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 17, 32, 0.85);
    color: #d1d5ff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-stage {
    background: linear-gradient(135deg, rgba(8, 10, 20, 0.96), rgba(14, 17, 34, 0.92));
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 30px;
    padding: clamp(1.75rem, 2.5vw, 3rem);
    box-shadow: 0 40px 70px rgba(8, 11, 24, 0.55);
}

.booking-stage__heading {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.booking-stage__heading p {
    color: #cbd5ff;
    font-size: 0.9rem;
}

.booking-stage__content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 3vw, 2.75rem);
}

@media (min-width: 1024px) {
    .booking-stage__content {
        flex-direction: row;
        align-items: stretch;
    }
}

.booking-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    background: rgba(12, 14, 28, 0.92);
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 26px;
    padding: clamp(1.35rem, 2vw, 1.85rem);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.08);
    gap: 1.35rem;
}

@media (min-width: 1280px) {
    .booking-panel {
        padding: clamp(1.75rem, 2.2vw, 2.1rem);
    }
}

.booking-calendar__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.booking-calendar__nav {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.7);
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.booking-calendar__nav:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.6);
    background: rgba(30, 41, 59, 0.9);
}

.calendar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 0.01em;
}

#wz-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.7rem;
    background: rgba(6, 8, 18, 0.86);
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(59, 130, 246, 0.08);
    min-height: 400px;
}

@media (max-width: 640px) {
    #wz-cal-grid {
        gap: 0.45rem;
        padding: 0.85rem;
        min-height: auto;
    }
}

.calendar-grid-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
}

.booking-calendar__legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.6rem 0.75rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.booking-calendar__legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.slot-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    padding: clamp(1.05rem, 1.6vw, 1.4rem) clamp(1.4rem, 2vw, 1.8rem);
    border-radius: 22px;
    border: 1px solid rgba(63, 76, 130, 0.38);
    background: rgba(10, 13, 26, 0.92);
    color: #e2e8f0;
    text-align: left;
    transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    min-height: 70px; /* Bessere Touch-Target-Größe */
}

.slot-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 22px 46px rgba(59, 130, 246, 0.28);
}

.slot-card.is-selected {
    border-color: rgba(14, 165, 233, 0.75);
    background: rgba(37, 99, 235, 0.65); /* Vollfarbe Royal Blue */
    box-shadow: 0 24px 52px rgba(37, 99, 235, 0.35);
}

/* Fast ausgebuchte Slots (weniger als 5 Plätze) */
.slot-card[data-available-slots="low"] {
    border-color: rgba(239, 68, 68, 0.4);
}

.slot-card[data-available-slots="low"]:hover {
    border-color: rgba(239, 68, 68, 0.6);
}

/* Mobile Optimierung */
@media (max-width: 640px) {
    .slot-card {
        gap: 1rem;
        padding: 1rem 1.25rem;
        min-height: 80px; /* Größer auf Mobile */
    }

    .slot-card:hover {
        transform: translateY(-1px); /* Reduziert auf Mobile */
    }
}

.slot-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.slot-card__time {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.slot-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.slot-card__meta--dual {
    justify-content: space-between;
}

.slot-card__capacity {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.45rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: rgba(51, 65, 99, 0.18);
    min-width: 118px;
}

.slot-card__capacity-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c7d2fe;
}

.slot-card__capacity-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
}

.slot-card__icon {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.slot-card:hover .slot-card__icon,
.slot-card.is-selected .slot-card__icon {
    color: #f1f5ff;
    transform: translateX(5px);
}

.slot-card[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-day {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: 18px;
    border: 1.5px solid rgba(79, 70, 229, 0.18);
    background: rgba(12, 16, 32, 0.9);
    color: #e7ecff;
    transition: transform 0.2s ease, box-shadow 0.3s ease, border 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    min-height: 112px;
    font-size: 0.95rem;
    text-align: center;
}

.calendar-day:not([aria-disabled="true"]) {
    cursor: pointer;
}

.calendar-day:not([aria-disabled="true"]):not(:disabled):hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.35);
}

.calendar-day.is-selected {
    border-color: rgba(14, 165, 233, 0.9);
    background: rgba(37, 99, 235, 0.75); /* Vollfarbe Royal Blue */
    box-shadow: 0 22px 44px rgba(37, 99, 235, 0.45);
    color: #f8fafc;
}

.calendar-day[aria-disabled="true"],
.calendar-day:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.placeholder {
    background: rgba(13, 15, 26, 0.4);
    border: 1px dashed rgba(148, 163, 184, 0.15);
    color: rgba(148, 163, 184, 0.28);
    cursor: default;
}

.calendar-day .day-number {
    font-size: 1.35rem;
    font-weight: 700;
}

.calendar-day .availability-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
}

.calendar-day .availability-remaining {
    font-size: 0.72rem;
    color: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.calendar-day[data-availability="high"] {
    background: linear-gradient(182deg, rgba(21, 128, 61, 0.92), rgba(8, 47, 28, 0.9));
    border-color: rgba(34, 197, 94, 0.65);
    color: #dcfce7;
}

.calendar-day[data-availability="medium"] {
    background: linear-gradient(182deg, rgba(202, 138, 4, 0.9), rgba(80, 44, 2, 0.92));
    border-color: rgba(251, 191, 36, 0.65);
    color: #fefce8;
}

.calendar-day[data-availability="low"] {
    background: linear-gradient(182deg, rgba(239, 68, 68, 0.88), rgba(120, 22, 22, 0.92));
    border-color: rgba(248, 113, 113, 0.6);
    color: #fee2e2;
}

.calendar-day[data-availability="soldout"],
.calendar-day[data-availability="closed"] {
    background: linear-gradient(182deg, rgba(30, 41, 59, 0.85), rgba(17, 24, 39, 0.92));
    border-color: rgba(71, 85, 105, 0.45);
    color: rgba(148, 163, 184, 0.75);
}

.calendar-legend-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    display: inline-block;
    background: rgba(148, 163, 184, 0.3);
}

.calendar-legend-dot.availability-high { background: rgba(34, 197, 94, 0.8); }
.calendar-legend-dot.availability-medium { background: rgba(245, 158, 11, 0.8); }
.calendar-legend-dot.availability-low { background: rgba(239, 68, 68, 0.8); }
.calendar-legend-dot.availability-soldout { background: rgba(148, 163, 184, 0.55); }
.calendar-legend-dot.availability-closed { background: rgba(71, 85, 105, 0.7); }

.calendar-grid {
    position: relative;
}

@media (max-width: 1024px) {
    .calendar-grid {
        width: 100%;
        overflow-x: hidden;
        overscroll-behavior-x: contain;
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .calendar-grid.grid {
        /* Fix Issue #9: Flexible columns instead of fixed minmax */
        grid-template-columns: repeat(7, 1fr);
        min-width: 0;
        gap: 0.3rem;
    }
}

.time-slot {
    appearance: none;
    width: 100%;
    background: rgba(17, 24, 39, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
    color: #f8fafc;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.3s ease;
    cursor: pointer;
}

.time-slot .slot-time {
    font-size: 1.05rem;
    line-height: 1.1;
}

.time-slot .slot-label {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(203, 213, 225, 0.85);
}

.time-slot .slot-remaining {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.92;
}

.time-slot[data-availability="high"] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85) 0%, rgba(16, 185, 129, 0.92) 100%);
    border-color: rgba(134, 239, 172, 0.55);
    color: #ecfdf5;
}

.time-slot[data-availability="medium"] {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.88) 0%, rgba(234, 179, 8, 0.92) 100%);
    border-color: rgba(253, 224, 71, 0.6);
    color: #fefce8;
}

.time-slot[data-availability="low"] {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.88) 0%, rgba(234, 88, 12, 0.92) 100%);
    border-color: rgba(251, 146, 60, 0.6);
    color: #fff7ed;
}

.time-slot[data-availability="soldout"] {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.9) 0%, rgba(220, 38, 38, 0.95) 100%);
    border-color: rgba(248, 113, 113, 0.55);
    color: #fee2e2;
    cursor: not-allowed;
}

.time-slot:not([aria-disabled="true"]):not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(99, 102, 241, 0.35);
}

.time-slot.is-selected {
    border-color: rgba(248, 113, 222, 0.9);
    box-shadow: 0 14px 36px rgba(168, 85, 247, 0.45);
    transform: translateY(-3px);
}

.time-slot[aria-disabled="true"],
.time-slot:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* Solar system module */
.solar-system-shell {
    padding: 1.5rem;
    border-radius: 1.75rem;
}

.solar-system-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .solar-system-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

.solar-system-view {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 320px;
    border-radius: 1.5rem;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(17, 22, 34, 0.85) 55%, rgba(9, 10, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.solar-system-view::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    opacity: 0.15;
    pointer-events: none;
}

.solar-system-canvas {
    position: relative;
    width: 100%;
    height: 100%;
}

.solar-system-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, #ffdfaa 0%, #fbbf24 55%, rgba(251, 191, 36, 0.4) 100%);
    box-shadow: 0 0 45px rgba(251, 191, 36, 0.65);
    z-index: 3;
}

.solar-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: border-color 0.3s ease;
    z-index: 1;
}

.solar-orbit.is-active {
    border-color: rgba(96, 165, 250, 0.7);
}

.solar-planet {
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: currentColor;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.solar-planet:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.9);
    outline-offset: 2px;
}

.solar-planet:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(148, 163, 184, 0.4);
}

.solar-planet.is-active {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.55);
}

.solar-planet-label {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.9);
    white-space: nowrap;
    pointer-events: none;
}

.solar-system-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.solar-system-panel-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.solar-system-info {
    display: grid;
    gap: 1rem;
}

.solar-system-facts {
    display: grid;
    gap: 0.75rem;
}

.solar-system-facts li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.95rem;
}

.solar-system-facts li span {
    flex-shrink: 0;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(96, 165, 250, 0.85);
}

/* Dino carousel */
.dino-carousel-shell {
    padding: 1.5rem;
    border-radius: 1.75rem;
    overflow: hidden;
}

.dino-carousel-layout {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 1024px) {
    .dino-carousel-layout {
        grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

.dino-carousel-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dino-carousel-button {
    position: relative;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    color: #E2E8F0;
    display: grid;
    gap: 0.35rem;
    transition: all 0.25s ease;
}

.dino-carousel-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.65), rgba(249, 115, 22, 0.45));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dino-carousel-button span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(226, 232, 240, 0.7);
}

.dino-carousel-button strong {
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.dino-carousel-button:hover,
.dino-carousel-button:focus-visible {
    border-color: rgba(74, 222, 128, 0.85);
    transform: translateY(-2px);
}

.dino-carousel-button:hover::after,
.dino-carousel-button:focus-visible::after,
.dino-carousel-button.is-active::after {
    opacity: 1;
}

.dino-carousel-button.is-active {
    color: #0F172A;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px -20px rgba(14, 116, 144, 0.55);
}

.dino-carousel-detail {
    background: rgba(15, 23, 42, 0.35);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .dino-carousel-detail {
        padding: 2rem;
    }
}

.dino-detail-header {
    display: grid;
    gap: 0.5rem;
}

.dino-detail-header > span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(74, 222, 128, 0.85);
}

.dino-detail-body {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .dino-detail-body {
        grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
        align-items: center;
        gap: 2rem;
    }
}

.dino-visual {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.dino-visual-figure {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dino-visual-figure svg,
.dino-visual-figure img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 25px rgba(15, 118, 110, 0.35));
}

.dino-figure-image {
    opacity: 0;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.dino-figure-image.is-ready {
    opacity: 1;
}

.dino-figure-shape {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: 0 20px 35px -20px rgba(6, 95, 70, 0.6);
}

.dino-figure-fallback.is-hidden {
    display: none;
}

.dino-visual.is-clickable {
    cursor: zoom-in;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.dino-visual.is-clickable:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.35);
    transform: translateY(-2px);
}

.dino-visual[aria-disabled="true"] {
    cursor: default;
}

.dino-visual-hint {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.9);
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 999px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.dino-visual-hint i {
    width: 16px;
    height: 16px;
}

.dino-visual.is-clickable:hover .dino-visual-hint,
.dino-visual.is-clickable:focus-visible .dino-visual-hint {
    opacity: 1;
    transform: translateY(0);
}

.dino-figure-trex {
    background: linear-gradient(135deg, #f97316, #ef4444);
    clip-path: polygon(6% 70%, 14% 52%, 30% 40%, 45% 46%, 55% 26%, 74% 34%, 88% 49%, 82% 62%, 92% 74%, 74% 80%, 70% 92%, 48% 96%, 26% 88%, 20% 95%, 10% 86%);
}

.dino-figure-stegosaurus {
    background: linear-gradient(135deg, #22c55e, #bef264);
    clip-path: polygon(5% 70%, 13% 60%, 18% 40%, 28% 30%, 38% 45%, 48% 29%, 60% 44%, 70% 28%, 82% 44%, 92% 56%, 88% 72%, 98% 84%, 78% 88%, 66% 96%, 42% 98%, 30% 92%, 18% 82%, 10% 86%);
}

.dino-figure-brachiosaurus {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    clip-path: polygon(12% 80%, 10% 60%, 20% 30%, 32% 15%, 44% 8%, 52% 26%, 62% 40%, 72% 66%, 82% 74%, 94% 82%, 80% 90%, 60% 96%, 40% 94%, 32% 88%, 20% 92%);
}

.dino-figure-triceratops {
    background: linear-gradient(135deg, #facc15, #f97316);
    clip-path: polygon(6% 75%, 14% 45%, 24% 35%, 34% 28%, 44% 50%, 54% 30%, 72% 36%, 90% 48%, 86% 70%, 94% 82%, 74% 88%, 68% 96%, 46% 98%, 28% 94%, 18% 84%, 10% 88%);
}

.dino-figure-velociraptor {
    background: linear-gradient(135deg, #f97316, #ec4899);
    clip-path: polygon(4% 72%, 10% 60%, 18% 44%, 32% 36%, 48% 28%, 66% 20%, 82% 30%, 74% 46%, 92% 56%, 78% 70%, 86% 80%, 66% 84%, 54% 92%, 34% 92%, 20% 84%, 12% 88%);
}

.dino-metrics {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.dino-metric {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dino-metric-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: rgba(34, 197, 94, 0.9);
}

.dino-metric-icon i {
    width: 20px;
    height: 20px;
}

.dino-metric-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.85);
}

.dino-metric-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.95);
}

.modal-dino-image-content {
    max-width: min(960px, 92vw);
    padding: 1.5rem;
}

.modal-dino-image-content .close-button {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.dino-image-modal-body {
    display: grid;
    gap: 1.25rem;
}

.dino-image-modal-body img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 1.25rem;
    box-shadow: 0 25px 60px -25px rgba(15, 23, 42, 0.65);
}

.dino-image-modal-body img.is-error {
    display: none;
}

.dino-image-modal-caption {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.dino-image-modal-caption strong {
    font-size: 1.35rem;
    color: rgba(226, 232, 240, 0.98);
}

.dino-image-modal-caption span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.85);
}

.dino-image-modal-error {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(248, 113, 113, 0.9);
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.35);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
}

.dino-facts {
    display: grid;
    gap: 1rem;
}

.dino-facts p {
    color: rgba(226, 232, 240, 0.85);
}

.dino-fact-list {
    display: grid;
    gap: 0.75rem;
}

.dino-fact-list li {
    display: grid;
    gap: 0.25rem;
}

.dino-fact-list li span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.9);
}

.dino-fact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.dino-fact-tags span {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(34, 197, 94, 0.15);
    color: rgba(134, 239, 172, 0.85);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
}

.dino-detail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

@media (max-width: 1023px) {
    .solar-system-shell {
        padding: 1.25rem;
    }

    .solar-system-layout {
        gap: 1.5rem;
    }

    .dino-carousel-shell {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .solar-planet-label {
        display: none;
    }

    .dino-carousel-selector {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .dino-carousel-button {
        min-width: 220px;
    }
}

/* Site Logo */
.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* White logo on dark background */
    transition: transform 0.2s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .site-logo {
        width: 40px;
        height: 40px;
    }
}

/* New Navigation Links */
.nav-link-new {
    position: relative;
    font-weight: 500;
}

.nav-link-new::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.nav-link-new:hover::after,
.nav-link-new[aria-current="page"]::after {
    width: calc(100% - 24px);
}

/* Mobile Menu Sheet */
.mobile-menu-sheet {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 40;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-sheet.is-open {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 56px;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-accordion summary {
    list-style: none;
    cursor: pointer;
}

.mobile-nav-accordion summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-subitems {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0 0.5rem 1rem;
}

.mobile-nav-subitem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 48px;
}

.mobile-nav-subitem:hover,
.mobile-nav-subitem:active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #2563eb;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 56px;
}

.mobile-cta-button:hover,
.mobile-cta-button:active {
    background: #1d4ed8;
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (min-width: 1921px) {
    .container { max-width: 1600px; }
    .moon-visual { width: 180px; height: 180px; }
    .planet { transform: scale(1.2); }
}

@media (max-width: 1024px) {
    .moon-visual { width: 100px; height: 100px; }
    .planet { opacity: 0.2; transform: scale(0.8); }
    .glass-card { backdrop-filter: blur(8px); }
}

@media (max-width: 640px) {
    .moon-visual { width: 80px; height: 80px; }
    .planets-container { display: none; }
    .glass-card {
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.1);
    }
    .calendar-grid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        overflow-x: hidden;
    }
    .calendar-grid.grid {
        /* Fix Issue #9: Flexible columns for mobile viewports */
        grid-template-columns: repeat(7, 1fr);
        min-width: 0;
        gap: 0.2rem;
    }
    .calendar-day {
        min-height: 72px;
        padding: 0.6rem 0.45rem;
        gap: 0.35rem;
    }
    .calendar-day .availability-label {
        font-size: 0.68rem;
        line-height: 1.2;
    }
    .calendar-day .availability-remaining {
        font-size: 0.72rem;
    }
    .time-slot {
        padding: 0.75rem 0.7rem;
    }
    .modal-content {
        width: min(92%, 26rem);
        padding: 1.5rem;
    }
}

/* Utility classes */
.btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-primary[aria-disabled="true"],
.btn-primary[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Glassmorphism Button Styles */
.glass-button-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(37, 99, 235, 0.25); /* Vollfarbe Royal Blue */
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow:
        0 8px 32px 0 rgba(37, 99, 235, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.glass-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.4); /* Vollfarbe für Hover */
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
    z-index: -1;
}

.glass-button-primary:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 12px 48px 0 rgba(37, 99, 235, 0.35),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.08);
}

.glass-button-primary:hover::before {
    opacity: 1;
}

.glass-button-primary:active {
    transform: translateY(0) scale(0.98);
}

.glass-button-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.glass-button-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 24px 0 rgba(0, 0, 0, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.06);
}

.glass-button-secondary:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive adjustments for glass buttons */
@media (max-width: 768px) {
    .glass-button-primary,
    .glass-button-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Booking Flow Styles */
.booking-step {
    transition: opacity 0.3s ease-in-out;
}

.booking-step.hidden {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Person Type Buttons */
.person-type-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.person-type-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.person-type-btn.active {
    background: #2563eb; /* Vollfarbe Royal Blue */
    border-color: rgba(37, 99, 235, 0.5);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.person-type-btn.active:hover {
    background: #1e40af; /* Dunklerer Blauton für Hover */
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Weltall-Ausstellung: Schwarz/Weiß/Silbergrau Farbschema */
.glass-widget-space .relative.h-64,
.glass-widget-space .relative.md\:h-80 {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%) !important;
}

.glass-widget-space .relative.h-64 i[data-lucide="rocket"],
.glass-widget-space .relative.md\:h-80 i[data-lucide="rocket"] {
    color: #c0c0c0 !important; /* Silbergrau Icon */
}

.glass-widget-space h3 {
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Verstecke "Virtual Reality Erlebnisse in Dippoldiswalde" Badge */
.hero-section-home .has-text-align-center.bg-blue-600 {
    display: none !important;
}

/* Hero-Sektion: Mehr Abstand nach oben wegen Header */
.hero-section-home {
    padding-top: 120px !important;
}

@media (min-width: 768px) {
    .hero-section-home {
        padding-top: 140px !important;
    }
}

/* ==========================================================================
   Legal Pages (Impressum, Datenschutz)
   ========================================================================== */

.legal-page .legal-content {
    padding-top: 100px;
}

.legal-page .legal-content article {
    line-height: 1.8;
}

.legal-page .legal-content h1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.legal-page .legal-content h2 {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page .legal-content h3 {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page .legal-content p {
    margin-bottom: 1rem;
    color: #94a3b8;
}

.legal-page .legal-content ul,
.legal-page .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-page .legal-content li {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.legal-page .legal-content a {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-page .legal-content a:hover {
    color: #93c5fd;
}

.legal-page .legal-content strong {
    color: #e2e8f0;
}

.legal-page .legal-content address {
    font-style: normal;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .legal-page .legal-content {
        padding-top: 80px;
    }

    .legal-page .legal-content article {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Group Inquiry Page (Gruppenanfrage)
   Issue #190: Fix header overlap
   ========================================================================== */

.group-inquiry-section {
    padding-top: 120px;
}

@media (min-width: 768px) {
    .group-inquiry-section {
        padding-top: 140px;
    }
}

/* ==========================================================================
   Directions Section (Anfahrt)
   ========================================================================== */

.directions-tabs {
    position: relative;
}

.directions-tab-btn {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.directions-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.directions-tab-btn.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(14, 165, 233, 0.2));
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.directions-tab-btn.active i {
    color: #60a5fa;
}

.directions-panel {
    animation: directionsFadeIn 0.3s ease-out;
}

.directions-panel.hidden {
    display: none;
}

@keyframes directionsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Google Maps Container */
.google-maps-container {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.maps-consent-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.maps-consent-overlay.hidden {
    display: none;
}

.maps-iframe {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.maps-iframe.hidden {
    display: none;
}

.maps-consent-btn {
    transition: all 0.3s ease;
}

.maps-consent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

/* Responsive adjustments for directions */
@media (max-width: 1024px) {
    .directions-panel .grid {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .directions-tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .directions-tab-btn span {
        display: none;
    }

    .directions-tab-btn i {
        width: 1.25rem;
        height: 1.25rem;
    }

    .google-maps-container {
        min-height: 300px;
    }

    .maps-iframe {
        min-height: 300px;
    }
}

/* ==========================================================================
   Google Reviews Section (DSGVO-konform)
   ========================================================================== */

.reviews-section {
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Reviews Slider Container */
.reviews-slider-container {
    position: relative;
    padding: 0 2rem;
}

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

/* Slider Navigation Buttons */
.reviews-slider-prev,
.reviews-slider-next {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.reviews-slider-prev:hover,
.reviews-slider-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.reviews-slider-prev:hover {
    transform: translateY(-50%) scale(1.1) translateX(-4px);
}

.reviews-slider-next:hover {
    transform: translateY(-50%) scale(1.1) translateX(4px);
}

@media (max-width: 768px) {
    .reviews-slider-prev,
    .reviews-slider-next {
        display: none;
    }
}

/* Slider Track */
.reviews-slider {
    overflow: hidden;
    margin: 0 -0.75rem;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Review Slides */
.reviews-slide {
    flex-shrink: 0;
    padding: 0 0.75rem;
}

/* Desktop: 3 cards visible */
@media (min-width: 1024px) {
    .reviews-slide {
        width: 33.333%;
    }
}

/* Tablet: 2 cards visible */
@media (min-width: 768px) and (max-width: 1023px) {
    .reviews-slide {
        width: 50%;
    }
}

/* Mobile: 1 card visible */
@media (max-width: 767px) {
    .reviews-slide {
        width: 100%;
    }
}

/* Review Card Styling */
.review-card {
    height: 100%;
    min-height: 280px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Progress Bar (Issue #129) - Ersetzt Dots
   ========================================================================== */
.reviews-progress-bar {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.reviews-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #06b6d4);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.reviews-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

/* ==========================================================================
   Review Avatar (Issue #278 - Einheitliche Farbe, kein Gradient)
   ========================================================================== */
.review-avatar-gradient {
    background: #2563eb; /* Royal Blue - primäre Markenfarbe */
}

/* ==========================================================================
   Pause Indicator (Issue #129)
   ========================================================================== */
.reviews-pause-indicator {
    display: none !important;
}

.reviews-pause-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.reviews-pause-indicator svg {
    width: 24px;
    height: 24px;
    color: white;
}

.reviews-slider-container.is-paused .reviews-slider-prev,
.reviews-slider-container.is-paused .reviews-slider-next {
    opacity: 1;
}

/* ==========================================================================
   Keyboard Navigation Hint (Issue #129)
   ========================================================================== */
.reviews-keyboard-hint {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.reviews-keyboard-hint.visible {
    opacity: 1;
    visibility: visible;
}

.reviews-keyboard-hint kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.75rem;
    color: white;
}

.reviews-keyboard-hint span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Skeleton Loader (Issue #129)
   ========================================================================== */
.reviews-slider-container:not(.is-loaded) .reviews-slide {
    opacity: 0;
}

.reviews-slider-container:not(.is-loaded) .review-card {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.reviews-slider-container.is-loaded .reviews-slide {
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Touch Swipe Feedback (Issue #129)
   ========================================================================== */
.reviews-slider-container.is-swiping .reviews-slider-track {
    cursor: grabbing;
}

.reviews-slider-container.is-swiping .review-card {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Bounce effect at boundaries */
.reviews-slider-container.bounce-start .reviews-slider-track {
    animation: bounceStart 0.4s ease;
}

.reviews-slider-container.bounce-end .reviews-slider-track {
    animation: bounceEnd 0.4s ease;
}

@keyframes bounceStart {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

@keyframes bounceEnd {
    0%, 100% { transform: translateX(var(--current-offset, 0)); }
    50% { transform: translateX(calc(var(--current-offset, 0) - 20px)); }
}

/* Mobile swipe shadow during touch */
@media (max-width: 767px) {
    .reviews-slider-container.is-swiping::before,
    .reviews-slider-container.is-swiping::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        pointer-events: none;
        z-index: 5;
        opacity: 0.5;
    }

    .reviews-slider-container.is-swiping::before {
        left: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
    }

    .reviews-slider-container.is-swiping::after {
        right: 0;
        background: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
    }
}

/* Focus outline for accessibility */
.reviews-slider-container:focus {
    outline: 2px solid rgba(96, 165, 250, 0.5);
    outline-offset: 4px;
    border-radius: 8px;
}

/* Star Rating Animation */
.review-card .lucide-star {
    transition: transform 0.2s ease;
}

.review-card:hover .lucide-star {
    transform: scale(1.1);
}

/* Verified Badge */
.review-card .lucide-badge-check {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.review-card:hover .lucide-badge-check {
    opacity: 1;
}

/* Google Badge Styling */
.reviews-section .glass-widget.rounded-full {
    transition: all 0.3s ease;
}

.reviews-section .glass-widget.rounded-full:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Touch/Swipe support for mobile */
@media (max-width: 767px) {
    .reviews-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .reviews-slider::-webkit-scrollbar {
        display: none;
    }

    .reviews-slide {
        scroll-snap-align: start;
    }

    .reviews-slider-track {
        transition: none;
    }
}

/* ==========================================================================
   Header & Footer Contact Links (Issue #51)
   ========================================================================== */

/* Header Contact Links */
.header-contact-link {
    position: relative;
    padding: 0.35rem 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.header-contact-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.header-contact-link i {
    color: #60a5fa;
}

/* Mobile Contact Buttons */
.mobile-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.25s ease;
    text-decoration: none;
}

.mobile-contact-button:hover,
.mobile-contact-button:active {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.mobile-contact-button i {
    color: #60a5fa;
}

/* Footer Contact Section */
.footer-contact-link {
    position: relative;
    z-index: 1;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.footer-contact-link:hover {
    transform: translateX(4px);
}

/* Footer Grid Responsive */
@media (max-width: 767px) {
    .footer-grid {
        gap: 2.5rem;
    }

    .footer-contact,
    .footer-links {
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* Text Colors for Tailwind classes */
.text-blue-400 {
    color: #60a5fa !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.text-gray-700\/50 {
    border-color: rgba(55, 65, 81, 0.5) !important;
}

/* ========================================
   ISSUE #70: BEARBEITBARE BUCHUNGSLEISTE
   ======================================== */

/* Wizard Summary Label */
.wizard-summary__label {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.25rem;
}

/* Wizard Summary Separator */
.wizard-summary__separator {
    color: #64748b;
    font-size: 1rem;
    font-weight: 400;
    user-select: none;
}

/* Editable Chips */
.wizard-summary__chip--editable {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.wizard-summary__chip--editable:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-1px);
}

.wizard-summary__chip--editable:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.9);
    outline-offset: 2px;
}

.wizard-summary__chip--editable:active {
    transform: translateY(0);
}

/* Chip Edit Icon */
.chip-edit-icon {
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #818cf8;
    flex-shrink: 0;
}

.wizard-summary__chip--editable:hover .chip-edit-icon,
.wizard-summary__chip--editable:focus-visible .chip-edit-icon {
    opacity: 1;
}

/* Mobile Text Variants */
.chip-text--mobile {
    display: none;
}

@media (max-width: 640px) {
    .chip-text {
        display: none;
    }

    .chip-text--mobile {
        display: inline;
    }

    .wizard-summary__label {
        font-size: 0.75rem;
    }

    .wizard-summary__separator {
        font-size: 0.85rem;
    }

    .chip-edit-icon {
        width: 10px;
        height: 10px;
        opacity: 0.6;
    }
}

/* ========================================
   EDIT MODALS (Issue #70)
   ======================================== */

.edit-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.edit-modal[hidden] {
    display: none;
}

.edit-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.edit-modal__content {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(15, 17, 32, 0.98) 0%, rgba(25, 30, 55, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.edit-modal__content--calendar {
    max-width: 500px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.edit-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.edit-modal__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.edit-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.edit-modal__body {
    padding: 1.5rem;
}

.edit-modal__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.edit-modal__input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(15, 17, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    transition: border-color 0.2s ease;
}

.edit-modal__input:focus {
    outline: none;
    border-color: rgba(14, 165, 233, 0.5); /* Issue #175: Cyan statt Lila */
}

.edit-modal__hint {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #64748b;
}

.edit-modal__warning {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Issue #71: Ensure hidden class works on warnings and alternatives */
.edit-modal__warning.hidden,
.edit-modal__alternatives.hidden {
    display: none;
}

.edit-modal__warning svg,
.edit-modal__warning i {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.edit-modal__alternatives {
    margin-top: 1rem;
}

.edit-modal__alternatives-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.edit-modal__alternatives-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
}

.edit-modal__alternative-btn {
    padding: 0.75rem;
    background: rgba(15, 17, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 0.875rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-modal__alternative-btn:hover {
    background: rgba(14, 165, 233, 0.2); /* Issue #175: Cyan statt Lila */
    border-color: rgba(14, 165, 233, 0.4);
}

.edit-modal__alternative-btn span {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.edit-modal__footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
}

.edit-modal__btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-modal__btn--primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); /* Issue #175: Royal Blue statt Lila */
    color: #fff;
}

.edit-modal__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.edit-modal__btn--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.edit-modal__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.edit-modal__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

/* Calendar Controls in Modal */
.edit-modal__calendar-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.edit-modal__calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-modal__calendar-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.edit-modal__calendar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

/* Calendar Grid in Modal */
.edit-modal__calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}

.edit-modal__calendar-header {
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.edit-modal__calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(15, 17, 32, 0.4);
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-modal__calendar-day:hover:not(.edit-modal__calendar-day--disabled):not(.edit-modal__calendar-day--empty) {
    background: rgba(14, 165, 233, 0.2); /* Issue #175: Cyan statt Lila */
    border-color: rgba(14, 165, 233, 0.4);
}

.edit-modal__calendar-day--empty {
    background: transparent;
    cursor: default;
}

.edit-modal__calendar-day--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.edit-modal__calendar-day--selected {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%); /* Issue #175: Cyan statt Lila */
    color: #fff;
    border-color: transparent;
}

.edit-modal__calendar-day--today {
    border-color: rgba(14, 165, 233, 0.5); /* Issue #175: Cyan statt Lila */
}

.edit-modal__calendar-day-availability {
    font-size: 0.6rem;
    color: #64748b;
    margin-top: 0.15rem;
}

.edit-modal__calendar-day--selected .edit-modal__calendar-day-availability {
    color: rgba(255, 255, 255, 0.8);
}

/* Time Slots in Modal */
.edit-modal__time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
}

.edit-modal__time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 0.5rem;
    background: rgba(15, 17, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-modal__time-slot:hover:not(.edit-modal__time-slot--disabled) {
    background: rgba(14, 165, 233, 0.2); /* Issue #175: Cyan statt Lila */
    border-color: rgba(14, 165, 233, 0.4);
}

.edit-modal__time-slot--selected {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%); /* Issue #175: Cyan statt Lila */
    color: #fff;
    border-color: transparent;
}

.edit-modal__time-slot--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.edit-modal__time-slot-capacity {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.edit-modal__time-slot--selected .edit-modal__time-slot-capacity {
    color: rgba(255, 255, 255, 0.8);
}

/* Issue #175: Gleiche Verfügbarkeits-Farbcodierung wie Hauptkalender */
.edit-modal__calendar-day[data-availability="high"] {
    background: linear-gradient(182deg, rgba(21, 128, 61, 0.92), rgba(8, 47, 28, 0.9));
    border-color: rgba(34, 197, 94, 0.65);
    color: #dcfce7;
}

.edit-modal__calendar-day[data-availability="medium"] {
    background: linear-gradient(182deg, rgba(202, 138, 4, 0.9), rgba(80, 44, 2, 0.92));
    border-color: rgba(251, 191, 36, 0.65);
    color: #fefce8;
}

.edit-modal__calendar-day[data-availability="low"] {
    background: linear-gradient(182deg, rgba(239, 68, 68, 0.88), rgba(120, 22, 22, 0.92));
    border-color: rgba(248, 113, 113, 0.6);
    color: #fee2e2;
}

.edit-modal__calendar-day[data-availability="soldout"],
.edit-modal__calendar-day[data-availability="closed"] {
    background: linear-gradient(182deg, rgba(30, 41, 59, 0.85), rgba(17, 24, 39, 0.92));
    border-color: rgba(71, 85, 105, 0.45);
    color: rgba(148, 163, 184, 0.75);
}

.edit-modal__time-slot[data-availability="high"] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85) 0%, rgba(16, 185, 129, 0.92) 100%);
    border-color: rgba(134, 239, 172, 0.55);
    color: #ecfdf5;
}

.edit-modal__time-slot[data-availability="medium"] {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.88) 0%, rgba(234, 179, 8, 0.92) 100%);
    border-color: rgba(253, 224, 71, 0.6);
    color: #fefce8;
}

.edit-modal__time-slot[data-availability="low"] {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.88) 0%, rgba(234, 88, 12, 0.92) 100%);
    border-color: rgba(251, 146, 60, 0.6);
    color: #fff7ed;
}

.edit-modal__time-slot[data-availability="soldout"] {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.9) 0%, rgba(220, 38, 38, 0.95) 100%);
    border-color: rgba(248, 113, 113, 0.55);
    color: #fee2e2;
}

/* Mobile Adjustments for Modals */
@media (max-width: 640px) {
    .edit-modal {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .edit-modal__content {
        max-height: 85vh;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .edit-modal__header {
        padding: 1rem 1.25rem;
    }

    .edit-modal__title {
        font-size: 1.1rem;
    }

    .edit-modal__body {
        padding: 1.25rem;
    }

    .edit-modal__footer {
        padding: 0.75rem 1.25rem 1.25rem;
    }

    .edit-modal__calendar-day {
        min-height: 44px;
        padding: 0.35rem;
        font-size: 0.85rem;
    }

    .edit-modal__time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ========================================
   Newsletter Section Styles
   ======================================== */

.newsletter-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15); /* Issue #175: Cyan statt Lila */
}

.newsletter-section h3 {
    margin: 0;
    line-height: 1.4;
}

/* Newsletter Form Styles */
.newsletter-form {
    margin-top: 1rem;
}

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

.newsletter-input-wrapper {
    flex: 1;
}

.newsletter-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #fff;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.newsletter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    border-radius: 0.75rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.newsletter-button:active:not(:disabled) {
    transform: translateY(0);
}

.newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-button-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.newsletter-consent {
    margin-bottom: 0.75rem;
}

.newsletter-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    text-align: left;
}

.newsletter-checkbox {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    accent-color: #0ea5e9;
    cursor: pointer;
    flex-shrink: 0;
}

.newsletter-message {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.newsletter-message--success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.newsletter-message--error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .newsletter-section {
        padding: 1.25rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

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

    .newsletter-button {
        width: 100%;
    }
}

/* Issue #166: Hamburger-Icon auf Desktop verstecken */
@media (min-width: 768px) {
    #mobile-menu-button {
        display: none !important;
    }

    #mobile-menu {
        display: none !important;
    }
}

