/* ===================================
   DGS-Reisen - Modern Warm Design
   Kreatives, übersichtliches Reiseportal
   Version 2.0 - Dezember 2025
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap&subset=latin');

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

/* ===================================
   Accessibility Utilities
   =================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10001;
    border-radius: 0 0 8px 0;
}

.skip-to-main:focus {
    top: 0;
}

:root {
    /* Warme, einladende Farbpalette */
    --primary-color: #FF6B35;
    --primary-hover: #E85D2F;
    --primary-light: #FF8B5C;
    --secondary-color: #2D4059;
    --accent-color: #FFB84D;
    --accent-light: #FFC670;
    
    /* Text */
    --text-color: #2D3142;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    
    /* Backgrounds */
    --bg-color: #FAFAF9;
    --bg-cream: #FFF8F0;
    --bg-card: #FFFFFF;
    --bg-overlay: rgba(45, 64, 89, 0.9);
    
    /* Borders & Shadows */
    --border-color: #F3E8DB;
    --shadow-soft: 0 2px 12px rgba(255, 107, 53, 0.08);
    --shadow-medium: 0 4px 20px rgba(255, 107, 53, 0.12);
    --shadow-strong: 0 8px 32px rgba(255, 107, 53, 0.16);
    --shadow-hover: 0 12px 40px rgba(255, 107, 53, 0.2);
    
    /* Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Container */
    --container-width: 1280px;
    --container-padding: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2D3142;
    color: var(--text-color);
    background: #FAFAF9;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-color) 50%, #FFF 100%);
    background-attachment: fixed;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--secondary-color);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

/* ===================================
   Navigation - Glasmorphismus
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.logo span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: block;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 184, 77, 0.1) 100%);
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.cart-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 184, 77, 0.15) 100%);
    border-color: var(--primary-color);
}

.cart-icon {
    font-size: 1.25rem;
}

/* Navigation Actions Group */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-login:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.login-icon {
    font-size: 1.1rem;
}

/* Profile Dropdown Styles */
.profile-dropdown-wrapper {
    position: relative;
    display: none; /* Hidden by default, shown when logged in */
}

#loginLink {
    display: block; /* Shown by default, hidden when logged in */
}

.profile-dropdown-menu {
    position: fixed;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
    min-width: 240px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.profile-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
}

.profile-dropdown-item:hover {
    background: var(--bg-cream);
    color: var(--primary-color);
}

.profile-dropdown-item .dropdown-icon {
    font-size: 1.1rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ===================================
   Hero Section - Modern & Warm
   =================================== */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    position: relative;
    overflow: hidden;
    background: #333;
}

/* Video Hintergrund */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.5s ease;
}

/* Mobile: Video ausblenden, nur Poster */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    .hero-section {
        background: #333 url('assets/video-poster.jpg') center/cover no-repeat;
    }
}

/* Graues Overlay über Video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-section h1 {
    margin-bottom: var(--space-xl);
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.highlight-word {
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 184, 77, 0.5) 100%);
    padding: 0.1em 0.3em;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.highlight-word::after {
    content: '🤟';
    position: absolute;
    right: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 107, 53, 0.7); }
}

@keyframes wave {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(10deg); }
    75% { transform: translateY(-50%) rotate(-10deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Buttons - Warm & Modern
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ===================================
   Search & Filter - Creative
   =================================== */
.search-filter-section {
    padding: var(--space-xl) var(--space-md);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    margin: calc(var(--space-xl) * -1) var(--space-md) var(--space-xl);
    position: relative;
    z-index: 10;
}

.search-bar {
    display: flex;
    max-width: 800px;
    margin: 0 auto var(--space-md);
    background: var(--bg-cream);
    border-radius: 100px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

/* ===================================
   Main Content Layout with Sidebar
   =================================== */
.main-content-wrapper {
    background: var(--bg-light);
    min-height: 60vh;
}

.container-with-sidebar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-md);
    align-items: flex-start;
}

/* Left Sidebar - Filters */
.filters-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: var(--space-lg);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.sidebar-header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-color);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
}

.reset-all-filters-btn {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-all-filters-btn:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Main Content Area */
.main-content-area {
    flex: 1;
    min-width: 0;
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.search-bar input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    font-size: 1.05rem;
    outline: none;
    color: var(--text-color);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar button {
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: scale(1.05);
}

.filter-container {
    margin-bottom: var(--space-md);
    overflow: visible;
    position: relative;
}

.filter-container h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.filter-container h3 small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: none;
    margin-top: 0.2rem;
    font-weight: 400;
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.category-btn {
    padding: 0.5rem 0.75rem;
    background: var(--bg-cream);
    border: 2px solid transparent;
    border-radius: 6px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.category-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateX(3px);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-soft);
    transform: translateX(3px);
}

/* Month Filter Dropdown Styles */
.month-dropdown-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.month-dropdown-toggle {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-cream);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.month-dropdown-toggle:hover {
    border-color: var(--secondary-color);
    background: white;
}

.month-dropdown-toggle:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.month-dropdown-menu.show .dropdown-arrow {
    transform: rotate(180deg);
}

.month-dropdown-menu {
    position: fixed;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
    min-width: 200px;
}

.month-dropdown-menu.show {
    max-height: 280px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Fade-Effekt am unteren Rand wenn scrollbar */
.month-dropdown-menu.show::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
    display: block;
}

/* Scrollbar styling für Dropdown */
.month-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.month-dropdown-menu::-webkit-scrollbar-track {
    background: var(--bg-cream);
    border-radius: 4px;
}

.month-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.month-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #5e35b1;
}

/* Animation für nach oben öffnen */
.month-dropdown-menu.open-upward {
    transform-origin: bottom;
}

.month-checkbox-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
    border-bottom: 1px solid transparent;
}

.month-checkbox-item:not(:last-child) {
    border-bottom-color: var(--bg-cream);
}

.month-checkbox-item:hover {
    background-color: var(--bg-cream);
}

.month-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.month-checkbox-item span {
    font-size: 0.85rem;
    color: var(--text-color);
    flex: 1;
}

.month-checkbox-item input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: var(--secondary-color);
}

.results-count {
    text-align: center;
    margin-top: var(--space-sm);
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   Event Cards - Modern & Warm
   =================================== */
.events-section {
    /* No extra padding needed, handled by main-content-area */
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Widget Grid Layout - Auto responsive */
.events-grid-widget {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Responsive Sidebar Layout */
@media (max-width: 1024px) {
    .container-with-sidebar {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        position: static;
        margin-bottom: var(--space-lg);
        max-height: none;
    }
    
    .category-filters {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .category-btn {
        width: auto;
        flex: 0 0 auto;
    }
    
    #monthFilter {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .events-grid-widget {
        grid-template-columns: 1fr;
    }
    
    .search-filter-section {
        margin: -2rem var(--space-sm) var(--space-md);
        padding: var(--space-md);
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .search-bar button {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
    
    .category-filters {
        justify-content: center;
    }
}

/* Event Widget Card */
.event-widget-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.event-widget-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.event-widget-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-widget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-widget-card:hover .event-widget-image img {
    transform: scale(1.1);
}

.event-widget-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.event-widget-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-widget-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-widget-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.event-widget-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.event-widget-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.event-widget-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.event-widget-meta .meta-icon {
    font-size: 0.95rem;
}

.event-widget-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-widget-availability {
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 600;
}

.btn-widget {
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-widget:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-color);
    will-change: transform;
}

.event-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.event-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-image:hover .event-badge {
    opacity: 1;
}

.event-price {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.event-content {
    padding: var(--space-md);
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.event-card:hover .event-content h3 {
    color: var(--primary-color);
}

.event-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.event-details p {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.event-availability {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* ===================================
   About Page
   =================================== */
.about-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
    background-size: cover;
}

.about-hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
    padding: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-content .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.about-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Intro Section */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.about-intro-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-color);
    margin-bottom: var(--space-md);
}

.intro-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--space-md);
}

.about-intro-text p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.intro-cta {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.about-intro-image {
    background: white;
    border-radius: 16px;
    padding: var(--space-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-photo-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-color);
}

.team-photo-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    margin-top: var(--space-sm);
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Mission & Vision */
.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.mission-box,
.vision-box {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: var(--space-md);
}

.mission-box p,
.vision-box p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Section Title */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--text-color);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-weight: 700;
}

/* Facts Section */
.facts-section {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl) 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.fact-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.fact-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
}

.fact-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us-section {
    margin: var(--space-2xl) 0;
    padding: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.benefit-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: var(--space-xl) var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-height: 200px;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.benefit-icon {
    font-size: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    margin-bottom: var(--space-xs);
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.35rem;
    color: var(--text-color);
    margin: 0 0 var(--space-sm) 0;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    flex: 1;
}

/* Services Section */
.services-section {
    margin: var(--space-2xl) 0;
}

.services-list {
    display: grid;
    gap: var(--space-md);
}

.service-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--space-xs);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact CTA Section */
.contact-cta-section {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: white;
}

.contact-cta-content > p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.contact-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.contact-buttons .btn-primary:hover {
    background: var(--bg-color);
    transform: translateY(-2px);
}

.contact-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.contact-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    text-align: left;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-info-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .mission-vision-section {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 300px;
    }

    .facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .benefit-item {
        min-height: auto;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .intro-cta {
        flex-direction: column;
    }

    .intro-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-number {
        font-size: 1.5rem;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.faq-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-color);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-color);
}

.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question > span:nth-child(2) {
    flex: 1;
}

.faq-arrow {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--space-md) var(--space-lg);
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile adjustments for FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ===================================
   Footer - Warm & Modern
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2332 100%);
    color: white;
    padding: var(--space-2xl) var(--space-md) var(--space-md);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===================================
   Cart Page - Neues Layout
   =================================== */
.cart-section {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-color);
}

.cart-header {
    margin-bottom: var(--space-xl);
}

.cart-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-color);
    margin-bottom: var(--space-xs);
}

.cart-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-xl);
    align-items: start;
}

/* Cart Items Main Area */
.cart-items-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.cart-item-large {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.cart-item-large:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-2px);
}

.cart-item-image-large {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.cart-item-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cart-item-large:hover .cart-item-image-large img {
    transform: scale(1.05);
}

.remove-button {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.remove-button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.cart-item-details-large {
    padding: var(--space-xl);
}

.cart-item-header-large {
    margin-bottom: var(--space-lg);
}

.cart-item-header-large h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-top: var(--space-sm);
}

.cart-item-info-large {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1rem;
    color: var(--text-color);
}

.info-icon {
    font-size: 1.2rem;
}

.cart-item-quantity-large {
    margin-bottom: var(--space-xl);
}

.cart-item-quantity-large label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.quantity-select-large {
    width: 100%;
    max-width: 300px;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--bg-cream);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quantity-select-large:hover {
    border-color: var(--primary-light);
    background: white;
}

.quantity-select-large:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.cart-item-pricing-large {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-card) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.pricing-label {
    color: var(--text-light);
    font-weight: 500;
}

.pricing-value {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-total {
    padding-top: var(--space-md);
    border-top: 2px solid var(--border-color);
    margin-top: var(--space-sm);
}

.pricing-total .pricing-label {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-value-total {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
}

/* Cart Summary Sidebar */
.cart-summary-sticky {
    position: sticky;
    top: 100px;
}

.summary-card-main {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--border-color);
}

.summary-card-main h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-color);
}

.summary-details {
    margin-bottom: var(--space-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--text-color);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: var(--space-md) 0;
}

.summary-row-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-weight: 700;
}

.summary-row-total span:first-child {
    font-size: 1.1rem;
    color: var(--text-color);
}

.total-amount {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 800;
}

.btn-checkout {
    width: 100%;
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
}

.cart-info-features {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.info-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: var(--space-sm);
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Empty Cart State */
.empty-cart-state {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: var(--space-lg);
    opacity: 0.3;
}

.empty-cart-state h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: var(--space-md);
}

.empty-cart-state p {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

/* Recommendations Section */
.recommendations-section {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 2px solid var(--border-color);
}

.recommendations-section h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: var(--space-xl);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* ===================================
   Event Detail Page - Clean Design
   =================================== */

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-color);
    padding: var(--space-md) 0;
}

.breadcrumb-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

/* Hero Section - Clean */
.event-hero-clean {
    background: #fff;
    padding: 2rem 0 1rem;
}

.event-hero-image-clean {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-height: 500px;
}

.event-hero-image-clean img {
    width: 100%;
    height: 500px;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Event Header - Premium & Clean */
.event-header-clean {
    padding: 1rem 0 1.5rem;
}

.event-badges-row {
    display: none;
}

.event-badge-small {
    display: none;
}

.event-header-clean h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Meta Info - Clean & Elegant */
.event-meta-clean {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.meta-item-clean {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.meta-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* USP Badges - Subtle & Premium */
.usp-badges-clean {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.usp-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

.usp-icon-clean {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Grid Layout - Premium Proportions */
.event-detail-grid-clean {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

/* Booking Sidebar - Premium & Elegant */
.booking-sidebar-clean {
    position: sticky;
    top: 100px;
}

.booking-card-clean {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.booking-card-clean:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* Price Section - Clean & Clear */
.price-section-clean {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.price-label-clean {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount-clean {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Date Info - Clean & Minimal */
.date-info-clean {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
}

.date-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.date-content {
    flex: 1;
}

.date-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.date-value {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.date-subtext {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Availability - Clean */
.availability-info-clean {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.availability-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.availability-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.availability-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.availability-value {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Participant Selector - Clean & Elegant */
.participant-selector-clean {
    margin-bottom: 1.5rem;
}

.participant-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.quantity-control-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.quantity-control-clean input {
    width: 60px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--secondary-color);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--secondary-color);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Total Section - Clean */
.total-section-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.total-label-clean {
    font-weight: 600;
    color: #666;
}

.total-amount-clean {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* CTA Button - Premium & Clean */
.btn-cart-clean {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    margin-bottom: 1rem;
}

.btn-cart-clean:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Secondary Actions - Clean */
.secondary-actions-clean {
    display: flex;
    gap: 0.5rem;
}

.btn-icon-clean {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon-clean:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Responsive - Clean */
@media (max-width: 1024px) {
    .event-detail-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar-clean {
        position: static;
    }
}

@media (max-width: 768px) {
    .event-header-clean h1 {
        font-size: 2rem;
    }
    
    .event-meta-clean {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .meta-item-clean {
        font-size: 1.1rem;
    }
    
    .meta-icon {
        font-size: 1.6rem;
    }
    
    .usp-badges-clean {
        flex-direction: column;
    }
    
    .price-amount-clean {
        font-size: 3rem;
    }
    
    .event-detail-grid-clean {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-sidebar-clean {
        position: static;
    }
    
    .tab-btn {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    .tab-panel h3 {
        font-size: 1.8rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
}

/* Event Hero - Optimized */
.event-hero-optimized {
    position: relative;
    background: var(--secondary-color);
    overflow: hidden;
}

.event-hero-image-wrapper {
    height: 500px;
    overflow: hidden;
}

.event-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.event-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.event-hero-text {
    max-width: 800px;
}

.event-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-medium);
}

.event-hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.event-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.event-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-md);
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.highlight-icon {
    font-size: 1.2rem;
}

/* Event Detail Grid */
.event-detail-section {
    background: var(--bg-color);
}

.event-detail-grid-optimized {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-2xl);
    align-items: start;
}

/* Quick Info Card - Prominent */
.event-quick-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-medium);
    margin-bottom: var(--space-xl);
    border: 2px solid var(--border-color);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.quick-info-item-large {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.info-icon-large {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.info-content strong {
    display: block;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.availability-highlight {
    color: var(--primary-color);
}

/* USP Banner */
.usp-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--border-color);
}

.usp-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.usp-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Tabs - Clean & Premium */
.event-tabs {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.tab-panel h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.tab-panel p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    padding: var(--space-sm) 0;
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Program Days */
.program-day {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.day-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-medium);
}

.day-content h4 {
    margin-top: 0;
}

.day-content ul {
    list-style: none;
    padding-left: 0;
}

.day-content li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.day-content li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Leistungen Grid */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.leistung-card {
    background: var(--bg-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
}

.leistung-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.leistung-card h4 {
    font-size: 1.1rem;
    margin: 0 0 var(--space-sm);
    color: var(--text-color);
}

.leistung-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.nicht-inkludiert-box {
    background: var(--bg-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--text-light);
}

.nicht-inkludiert-box h4 {
    margin-top: 0;
}

.nicht-inkludiert-box ul {
    list-style: none;
    padding: 0;
}

.nicht-inkludiert-box li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text-light);
}

.nicht-inkludiert-box li:before {
    content: "×";
    color: var(--text-light);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Accessibility Grid */
.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.accessibility-card {
    background: var(--bg-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
}

.accessibility-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.accessibility-card h4 {
    font-size: 1.1rem;
    margin: 0 0 var(--space-sm);
    color: var(--text-color);
}

.accessibility-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Booking Sidebar - CRO Optimized */
.booking-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.booking-card-premium {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    border: 3px solid var(--primary-color);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.booking-price-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: var(--space-xl);
    text-align: center;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

.price-from {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-amount-large {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin: var(--space-xs) 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.price-per {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: 100px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-icon {
    font-size: 1rem;
}

/* Booking Form Optimized */
.booking-form-optimized {
    padding: var(--space-xl);
}

.form-group-booking {
    margin-bottom: var(--space-lg);
}

.form-label-booking {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.label-icon {
    font-size: 1.2rem;
}

.select-booking {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    background: var(--bg-cream);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-booking:hover {
    border-color: var(--primary-light);
    background: white;
}

.select-booking:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Total Calculation */
.total-calculation {
    background: var(--bg-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    font-size: 0.95rem;
}

.calc-amount {
    font-weight: 700;
    color: var(--text-color);
}

.calc-divider {
    height: 2px;
    background: var(--border-color);
    margin: var(--space-md) 0;
}

.calc-row-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.total-amount-large {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

/* Booking Buttons */
.btn-booking-primary {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    margin-bottom: var(--space-sm);
    font-family: 'Inter', sans-serif;
}

.btn-booking-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
}

.btn-booking-secondary {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-weight: 700;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: var(--space-lg);
    font-family: 'Inter', sans-serif;
}

.btn-booking-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.booking-guarantee {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.booking-guarantee p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: var(--space-xs) 0;
}

/* Trust Elements */
.booking-trust {
    padding: var(--space-md) var(--space-xl);
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-item-compact {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.trust-icon {
    font-size: 1.1rem;
}

/* Contact Card Sidebar */
.contact-card-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--border-color);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-icon {
    font-size: 2rem;
}

.contact-header h4 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-color);
}

.contact-card-sidebar p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--bg-cream);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-btn span:first-child {
    font-size: 1.5rem;
}

.contact-response {
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* ===================================
   Checkout Payment Widget Cards
   =================================== */

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}

.payment-card {
    position: relative;
}

.payment-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 180px;
    justify-content: center;
}

.payment-card:hover .payment-card-label {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.payment-card input[type="radio"]:checked + .payment-card-label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.payment-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-card-label h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.payment-card-label p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.payment-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-card input[type="radio"]:checked + .payment-card-label .payment-badge {
    background: var(--secondary-color);
}

/* Step description styling */
.step-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .cart-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .cart-summary-sticky {
        position: static;
    }
    
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-detail-grid-optimized {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .booking-sidebar-sticky {
        position: static;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .usp-banner {
        grid-template-columns: 1fr;
    }
    
    .leistungen-grid,
    .accessibility-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none; /* Mobiles Menu später implementieren */
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .search-filter-section {
        margin: 0 var(--space-sm) var(--space-lg);
    }
    
    .hero-section {
        min-height: 60vh;
        padding: var(--space-xl) var(--space-md);
    }
    
    .cart-item-image-large {
        height: 300px;
    }
    
    .cart-item-details-large {
        padding: var(--space-lg);
    }
    
    .cart-item-info-large {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-card-main {
        padding: var(--space-lg);
    }
    
    .event-hero-image-wrapper {
        height: 350px;
    }
    
    .event-hero-text h1 {
        font-size: 2rem;
    }
    
    .event-hero-highlights {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .event-quick-info-card {
        padding: var(--space-lg);
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .usp-banner {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .program-day {
        flex-direction: column;
    }
    
    .day-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .price-amount-large {
        font-size: 2.5rem;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .booking-card-premium {
        border-width: 2px;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================
   Modern Login/Auth Page Styling
   =================================== */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.auth-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(45, 64, 89, 0.9) 100%);
    z-index: 1;
}

.auth-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
}

.auth-card-modern {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-header-modern {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.auth-header-modern h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.auth-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.1rem;
}

.form-group-modern input {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group-modern input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-options-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label-modern input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-label-modern input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label-modern input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
}

.forgot-link-modern {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.forgot-link-modern:hover {
    color: var(--primary-hover);
}

.btn-auth-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-auth-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.auth-divider-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.auth-divider-modern::before,
.auth-divider-modern::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider-modern span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    padding: 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-google .social-icon {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
}

.auth-switch-modern {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.register-link-modern {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.register-link-modern:hover {
    text-decoration: underline;
}

.auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border-radius: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Checkout Page Styling */
.checkout-section {
    padding: 3rem 0;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #999;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: #e0e0e0;
    margin-top: 1.5rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.checkout-step h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.step-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Checkout Summary Event Card */
.summary-event {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.summary-event img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

.summary-event div {
    flex: 1;
    min-width: 0;
}

.summary-event h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.summary-event p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0.25rem 0;
}

.summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 1rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.summary-row:last-of-type {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .social-login {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .auth-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-progress {
        overflow-x: auto;
    }
}

/* ===================================
   Legal/AGB Page Styling
   =================================== */

.legal-page-section {
    padding: 3rem 0;
    background: var(--bg-color);
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.legal-sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.legal-nav a {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.825rem;
    line-height: 1.3;
}

.legal-nav a:hover {
    background: var(--bg-cream);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.legal-nav a.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 184, 77, 0.1) 100%);
    color: var(--primary-color);
    font-weight: 700;
    border-left: 3px solid var(--primary-color);
}

.legal-contact-card {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 1rem;
    border: 2px solid var(--border-color);
}

.legal-contact-card h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.legal-contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-link {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.legal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.legal-content-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-content-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.legal-section-content {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
}

.legal-section-content h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.legal-section-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.legal-section-content p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.legal-section-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-sidebar-card {
        margin-bottom: 2rem;
    }
}

/* ===================================
   Profile Page Styles
   =================================== */

.profile-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.profile-welcome h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.profile-welcome p {
    font-size: 1.125rem;
    color: var(--text-color);
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.profile-tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-tab:hover {
    color: var(--primary-color);
    background: var(--lighter-gray);
}

.profile-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Tab Content */
.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.profile-card h2 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.profile-card-subtitle {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Profile Info Grid */
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-info-item label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-info-item .info-value {
    font-size: 1.125rem;
    color: var(--dark-color);
    padding: 0.75rem 0;
}

.profile-address {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--light-gray);
}

.profile-address h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

/* Bookings Container */
#bookingsContainer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.booking-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--lighter-gray);
}

.booking-info h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.booking-number {
    font-size: 0.875rem;
    color: var(--text-color);
}

.booking-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.booking-status.pending {
    background: var(--warning-light);
    color: var(--warning-color);
}

.booking-status.confirmed {
    background: var(--success-light);
    color: var(--success-color);
}

.booking-status.cancelled {
    background: var(--error-light);
    color: var(--error-color);
}

.booking-status.completed {
    background: var(--info-light);
    color: var(--info-color);
}

.booking-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.booking-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.booking-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
}

.detail-icon {
    font-size: 1.25rem;
}

.booking-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Loading & Empty States */
.loading-state,
.empty-state,
.error-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state {
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Settings */
.settings-group {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.settings-group:last-child {
    border-bottom: none;
}

.settings-group h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--lighter-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.setting-item:last-child {
    margin-bottom: 0;
}

.setting-info {
    flex: 1;
}

.setting-info label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.setting-info p {
    font-size: 0.875rem;
    color: var(--text-color);
}

.setting-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.setting-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--primary-color);
}

/* Button Variants */
.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-danger {
    background: var(--error-color);
    color: white;
    border: 2px solid var(--error-color);
}

.btn-danger:hover {
    background: #c82333;
    border-color: #c82333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .profile-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .profile-tab {
        white-space: nowrap;
        padding: 1rem 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .profile-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-details {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .booking-actions {
        width: 100%;
        flex-direction: column;
    }

    .booking-actions button {
        width: 100%;
    }

    .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* ===================================
   CRO OPTIMIZATIONS - Event Detail Page
   =================================== */

/* Image Carousel - Premium & Elegant */
.image-carousel-container {
    margin: 2rem 0;
}

.image-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-main-image {
    width: 100%;
    height: 100%;
}

.carousel-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: var(--secondary-color);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.carousel-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-thumb:hover {
    opacity: 0.9;
}

.carousel-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.carousel-counter {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* Social Proof Banner */
.social-proof-banner {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #ffb74d;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.proof-icon {
    font-size: 24px;
}

.proof-text {
    font-size: 14px;
    color: #d84315;
}

.proof-text strong {
    color: #e65100;
    font-weight: 700;
}

/* Trust Signals Section */
.trust-signals-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 16px;
}

.trust-headline {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.trust-card h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #ef5350;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.urgency-icon {
    font-size: 32px;
}

.urgency-content {
    flex: 1;
}

.urgency-title {
    font-weight: 700;
    color: #c62828;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.urgency-text {
    font-size: 0.9rem;
    color: #d32f2f;
}

.urgency-text strong {
    font-size: 1.1rem;
    color: #b71c1c;
}

/* Booking Notification */
.booking-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    max-width: 350px;
}

.notification-avatar {
    font-size: 32px;
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.notification-content strong {
    color: var(--secondary-color);
}

/* FAQ Section - Clean & Professional */
.faq-section {
    margin: 3rem 0;
}

.faq-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(76, 175, 80, 0.03);
}

.faq-toggle {
    font-size: 20px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Testimonials Section - Clean & Trustworthy */
.testimonials-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-rating {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #FFB300;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Sticky Booking Sidebar */
.booking-sidebar-clean.sticky {
    position: sticky;
    top: 100px;
}

/* Cross-Selling Section */
.cross-sell-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.cross-sell-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.cross-sell-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cross-sell-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cross-sell-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cross-sell-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.cross-sell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cross-sell-card:hover .cross-sell-image img {
    transform: scale(1.1);
}

.cross-sell-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.cross-sell-urgency {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #ef5350;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.cross-sell-content {
    padding: 1.5rem;
}

.cross-sell-content h4 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

.cross-sell-location,
.cross-sell-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.cross-sell-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cross-sell-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cross-sell-availability {
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 600;
}

.cross-sell-cta {
    text-align: center;
}

.btn-secondary-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof-banner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cross-sell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .event-header-clean {
        margin-top: 1rem;
    }
    
    .event-header-clean h1 {
        font-size: 1.75rem;
    }
    
    .event-meta-clean {
        gap: 1rem;
    }
    
    .meta-item-clean {
        font-size: 0.9rem;
    }
    
    .price-amount-clean {
        font-size: 2rem;
    }
    
    .event-detail-grid-clean {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-sidebar-clean {
        position: static;
    }
    
    .image-carousel {
        border-radius: 8px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .event-tabs {
        padding: 1.5rem;
    }
    
    .tab-panel h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    .cross-sell-grid {
        grid-template-columns: 1fr;
    }
    
    .cross-sell-title {
        font-size: 1.5rem;
    }
}
