/**
 * Werkstatt24 Public Website Styles
 *
 * Modern Design System - Clean & Premium Dark
 * Completely separate from admin and portal styles
 *
 * @package Werkstatt24Core
 */

/* ==========================================================================
   CSS Variables / Design Tokens - Modern Premium Theme
   ========================================================================== */

:root {
    /* Primary Colors - Deep Black/Charcoal (Premium & Modern) */
    --w24-primary: #0a0a0a;
    --w24-primary-dark: #000000;
    --w24-primary-light: #1a1a1a;
    --w24-primary-50: #f5f5f5;
    --w24-primary-100: #e5e5e5;
    --w24-primary-200: #d4d4d4;

    /* Accent Colors - Werkstatt Red (Bold & Professional) */
    --w24-accent: #dc2626;
    --w24-accent-dark: #b91c1c;
    --w24-accent-light: #f87171;
    --w24-accent-50: #fef2f2;
    --w24-accent-100: #fee2e2;
    --w24-accent-glow: rgba(220, 38, 38, 0.4);

    /* Secondary Accent - Emerald (Trust & Success) */
    --w24-secondary: #10b981;
    --w24-secondary-dark: #059669;
    --w24-secondary-light: #34d399;

    /* Status Colors */
    --w24-success: #10b981;
    --w24-success-light: #34d399;
    --w24-warning: #f59e0b;
    --w24-warning-light: #fbbf24;
    --w24-error: #ef4444;
    --w24-info: #dc2626;

    /* Neutral Colors - Modern Gray Scale */
    --w24-white: #ffffff;
    --w24-black: #000000;
    --w24-gray-50: #fafafa;
    --w24-gray-100: #f4f4f5;
    --w24-gray-200: #e4e4e7;
    --w24-gray-300: #d4d4d8;
    --w24-gray-400: #a1a1aa;
    --w24-gray-500: #71717a;
    --w24-gray-600: #52525b;
    --w24-gray-700: #3f3f46;
    --w24-gray-800: #27272a;
    --w24-gray-900: #18181b;
    --w24-gray-950: #09090b;

    /* Modern Gradients */
    --w24-gradient-hero: linear-gradient(180deg, #09090b 0%, #18181b 100%);
    --w24-gradient-cta: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --w24-gradient-card: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    --w24-gradient-dark: linear-gradient(180deg, #09090b 0%, #18181b 100%);
    --w24-gradient-glow: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    --w24-gradient-mesh:
        radial-gradient(at 40% 20%, rgba(220, 38, 38, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(220, 38, 38, 0.05) 0px, transparent 50%);

    /* Typography - Modern Sans */
    --w24-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --w24-font-size-xs: 0.75rem;
    --w24-font-size-sm: 0.875rem;
    --w24-font-size-base: 1rem;
    --w24-font-size-lg: 1.125rem;
    --w24-font-size-xl: 1.25rem;
    --w24-font-size-2xl: 1.5rem;
    --w24-font-size-3xl: 2rem;
    --w24-font-size-4xl: 2.5rem;
    --w24-font-size-5xl: 3.5rem;
    --w24-font-size-6xl: 4.5rem;

    /* Font Weights */
    --w24-font-normal: 400;
    --w24-font-medium: 500;
    --w24-font-semibold: 600;
    --w24-font-bold: 700;
    --w24-font-extrabold: 800;

    /* Line Heights */
    --w24-line-tight: 1.2;
    --w24-line-normal: 1.5;
    --w24-line-relaxed: 1.7;

    /* Spacing - More generous */
    --w24-space-1: 0.25rem;
    --w24-space-2: 0.5rem;
    --w24-space-3: 0.75rem;
    --w24-space-4: 1rem;
    --w24-space-5: 1.25rem;
    --w24-space-6: 1.5rem;
    --w24-space-8: 2rem;
    --w24-space-10: 2.5rem;
    --w24-space-12: 3rem;
    --w24-space-16: 4rem;
    --w24-space-20: 5rem;
    --w24-space-24: 6rem;
    --w24-space-32: 8rem;

    /* Border Radius - Softer, more modern */
    --w24-radius-sm: 0.375rem;
    --w24-radius: 0.5rem;
    --w24-radius-md: 0.75rem;
    --w24-radius-lg: 1rem;
    --w24-radius-xl: 1.25rem;
    --w24-radius-2xl: 1.5rem;
    --w24-radius-full: 9999px;

    /* Modern Shadows */
    --w24-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --w24-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --w24-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --w24-shadow-md: 0 8px 16px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -4px rgba(0, 0, 0, 0.04);
    --w24-shadow-lg: 0 16px 32px -8px rgba(0, 0, 0, 0.1), 0 8px 16px -8px rgba(0, 0, 0, 0.06);
    --w24-shadow-xl: 0 24px 48px -12px rgba(0, 0, 0, 0.12);
    --w24-shadow-2xl: 0 32px 64px -16px rgba(0, 0, 0, 0.16);
    --w24-shadow-glow: 0 0 40px rgba(220, 38, 38, 0.15);
    --w24-shadow-glow-lg: 0 0 60px rgba(220, 38, 38, 0.2);

    /* Transitions - Smooth */
    --w24-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --w24-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --w24-transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --w24-transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --w24-container-max: 1280px;
    --w24-container-padding: 2rem;

    /* Z-Index Scale */
    --w24-z-dropdown: 100;
    --w24-z-sticky: 200;
    --w24-z-fixed: 300;
    --w24-z-modal-backdrop: 400;
    --w24-z-modal: 500;
}

/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */

.w24-public *,
.w24-public *::before,
.w24-public *::after {
    box-sizing: border-box;
}

.w24-public {
    font-family: var(--w24-font-family);
    font-size: var(--w24-font-size-base);
    line-height: var(--w24-line-normal);
    color: var(--w24-gray-700);
    background: var(--w24-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.w24-public h1,
.w24-public h2,
.w24-public h3,
.w24-public h4,
.w24-public h5,
.w24-public h6 {
    font-weight: var(--w24-font-bold);
    line-height: var(--w24-line-tight);
    color: var(--w24-gray-900);
    margin: 0 0 var(--w24-space-4);
    letter-spacing: -0.02em;
}

.w24-public h1 { font-size: var(--w24-font-size-4xl); }
.w24-public h2 { font-size: var(--w24-font-size-3xl); }
.w24-public h3 { font-size: var(--w24-font-size-2xl); }
.w24-public h4 { font-size: var(--w24-font-size-xl); }
.w24-public h5 { font-size: var(--w24-font-size-lg); }
.w24-public h6 { font-size: var(--w24-font-size-base); }

.w24-public p {
    margin: 0 0 var(--w24-space-4);
    color: var(--w24-gray-600);
}

.w24-public a {
    color: var(--w24-accent);
    text-decoration: none;
    transition: color var(--w24-transition-fast);
}

.w24-public a:hover {
    color: var(--w24-accent-dark);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.w24-container {
    width: 100%;
    max-width: var(--w24-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--w24-container-padding);
    padding-right: var(--w24-container-padding);
}

.w24-container-fluid {
    width: 100%;
    padding-left: var(--w24-container-padding);
    padding-right: var(--w24-container-padding);
}

.w24-section {
    padding-top: var(--w24-space-20);
    padding-bottom: var(--w24-space-20);
}

.w24-section-lg {
    padding-top: var(--w24-space-32);
    padding-bottom: var(--w24-space-32);
}

/* ==========================================================================
   Header & Navigation - Modern Dark
   ========================================================================== */

.w24-header {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: var(--w24-z-sticky);
}

.w24-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: var(--w24-space-8);
}

a.w24-logo,
.w24-logo {
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
    font-size: var(--w24-font-size-xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-white) !important;
    letter-spacing: -0.02em;
}

a.w24-logo:hover {
    color: var(--w24-white) !important;
}

.w24-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--w24-gradient-cta);
    border-radius: var(--w24-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--w24-white);
    box-shadow: var(--w24-shadow-glow);
}

.w24-logo-icon svg {
    width: 24px;
    height: 24px;
}

.w24-logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.w24-logo-accent {
    color: var(--w24-accent) !important;
}

/* Navigation */
.w24-nav {
    display: flex;
    align-items: center;
    gap: var(--w24-space-1);
}

.w24-nav-link {
    display: inline-flex;
    align-items: center;
    padding: var(--w24-space-2) var(--w24-space-4);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    color: var(--w24-gray-400);
    border-radius: var(--w24-radius);
    transition: all var(--w24-transition-fast);
}

.w24-nav-link:hover {
    color: var(--w24-white);
    background: rgba(255, 255, 255, 0.05);
}

.w24-nav-link.active {
    color: var(--w24-white);
    background: rgba(255, 255, 255, 0.1);
}

/* Header CTA */
.w24-header-cta {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
}

.w24-header-phone {
    display: flex;
    align-items: center;
    gap: var(--w24-space-2);
    font-weight: var(--w24-font-medium);
    color: var(--w24-gray-300);
    font-size: var(--w24-font-size-sm);
    text-decoration: none;
}

.w24-header-phone svg {
    width: 18px;
    height: 18px;
}

/* Open status - clickable phone link */
.w24-header-phone--open {
    color: var(--w24-white);
    padding: var(--w24-space-2) var(--w24-space-3);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--w24-radius);
    transition: all var(--w24-transition);
}

.w24-header-phone--open svg {
    color: var(--w24-success);
}

.w24-header-phone--open:hover {
    background: rgba(16, 185, 129, 0.25);
    color: var(--w24-white);
}

/* Closed status - non-clickable info */
.w24-header-phone--closed {
    color: var(--w24-gray-400);
    padding: var(--w24-space-2) var(--w24-space-3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--w24-radius);
}

.w24-header-phone--closed svg {
    color: var(--w24-warning);
}

/* Mobile Menu Toggle */
.w24-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: var(--w24-space-2);
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--w24-radius);
}

.w24-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.w24-mobile-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--w24-white);
}

/* ==========================================================================
   Hero Section - Minimal Dark Banner (like Services/About pages)
   ========================================================================== */

.w24-hero-minimal {
    background: var(--w24-gradient-hero);
    position: relative;
    overflow: hidden;
    padding: var(--w24-space-20) 0;
}

.w24-hero-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--w24-gradient-mesh);
    pointer-events: none;
}

.w24-hero-minimal-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.w24-hero-badge-light {
    display: inline-flex;
    align-items: center;
    gap: var(--w24-space-2);
    padding: var(--w24-space-2) var(--w24-space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--w24-radius-full);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    margin-bottom: var(--w24-space-6);
    color: var(--w24-white) !important;
}

.w24-hero-badge-light svg {
    color: var(--w24-success);
}

.w24-hero-minimal-title {
    font-size: var(--w24-font-size-5xl);
    font-weight: var(--w24-font-extrabold);
    color: var(--w24-white) !important;
    margin-bottom: var(--w24-space-6);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.w24-hero-minimal-subtitle {
    font-size: var(--w24-font-size-lg);
    color: var(--w24-white) !important;
    margin-bottom: var(--w24-space-8);
    line-height: var(--w24-line-relaxed);
}

.w24-hero-minimal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--w24-space-4);
    justify-content: center;
}

/* ==========================================================================
   Info Bar Section (Opening Hours, Contact)
   ========================================================================== */

.w24-info-bar {
    background: var(--w24-white);
    padding: var(--w24-space-4) 0;
    border-bottom: 1px solid var(--w24-gray-100);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.w24-info-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--w24-space-6);
}

.w24-info-bar-item {
    display: flex;
    align-items: center;
    gap: var(--w24-space-2);
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-700);
}

.w24-info-bar-item svg {
    color: var(--w24-accent);
    flex-shrink: 0;
}

.w24-info-bar-item a {
    color: var(--w24-gray-900);
    font-weight: var(--w24-font-medium);
    text-decoration: none;
}

.w24-info-bar-item a:hover {
    color: var(--w24-accent);
}

/* Status Badge */
.w24-status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--w24-space-2);
    padding: var(--w24-space-1) var(--w24-space-3);
    border-radius: var(--w24-radius-full);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
}

.w24-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.w24-status-open {
    background: rgba(16, 185, 129, 0.1);
    color: var(--w24-success);
}

.w24-status-open .w24-status-dot {
    background: var(--w24-success);
    animation: pulse 2s infinite;
}

.w24-status-closed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--w24-error);
}

.w24-status-closed .w24-status-dot {
    background: var(--w24-error);
}

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

/* ==========================================================================
   Buttons - Modern & Clean
   ========================================================================== */

.w24-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--w24-space-2);
    padding: var(--w24-space-3) var(--w24-space-6);
    font-family: inherit;
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--w24-radius-md);
    cursor: pointer;
    transition: all var(--w24-transition);
    white-space: nowrap;
}

.w24-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--w24-accent-glow);
}

.w24-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Primary Button */
.w24-btn-primary {
    background: var(--w24-gradient-cta);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.w24-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
    color: #ffffff !important;
}

.w24-btn-primary:active {
    transform: translateY(0);
}

.w24-btn-primary svg {
    color: #ffffff !important;
}

/* Secondary Button */
.w24-btn-secondary {
    background: var(--w24-white);
    color: var(--w24-gray-900);
    box-shadow: var(--w24-shadow-sm);
}

.w24-btn-secondary:hover {
    background: var(--w24-gray-50);
    transform: translateY(-2px);
    box-shadow: var(--w24-shadow-md);
}

/* Outline Button */
.w24-btn-outline {
    background: transparent;
    color: var(--w24-gray-900);
    border: 1.5px solid var(--w24-gray-200);
}

.w24-btn-outline:hover {
    background: var(--w24-gray-50);
    border-color: var(--w24-gray-300);
}

/* Ghost Button (for dark backgrounds) */
.w24-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--w24-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.w24-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Button Sizes */
.w24-btn-sm {
    padding: var(--w24-space-2) var(--w24-space-4);
    font-size: var(--w24-font-size-xs);
}

.w24-btn-lg {
    padding: var(--w24-space-4) var(--w24-space-8);
    font-size: var(--w24-font-size-base);
    border-radius: var(--w24-radius-lg);
}

.w24-btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
}

.w24-btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Cards - Clean & Modern
   ========================================================================== */

.w24-card {
    background: var(--w24-white);
    border-radius: var(--w24-radius-xl);
    border: 1px solid var(--w24-gray-100);
    overflow: hidden;
    transition: all var(--w24-transition);
}

.w24-card:hover {
    border-color: var(--w24-gray-200);
    box-shadow: var(--w24-shadow-lg);
    transform: translateY(-4px);
}

.w24-card-body {
    padding: var(--w24-space-8);
}

.w24-card-header {
    padding: var(--w24-space-6);
    border-bottom: 1px solid var(--w24-gray-100);
}

.w24-card-footer {
    padding: var(--w24-space-4) var(--w24-space-6);
    background: var(--w24-gray-50);
    border-top: 1px solid var(--w24-gray-100);
}

/* Service Card */
.w24-service-card {
    text-align: center;
    padding: var(--w24-space-10);
    background: var(--w24-white);
    border: 1px solid var(--w24-gray-100);
}

.w24-service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--w24-space-6);
    background: var(--w24-gray-50);
    border-radius: var(--w24-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--w24-transition);
}

.w24-service-card:hover .w24-service-icon {
    background: var(--w24-gray-900);
    transform: scale(1.05);
    box-shadow: var(--w24-shadow-lg);
}

.w24-service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--w24-gray-700);
    transition: color var(--w24-transition);
}

.w24-service-card:hover .w24-service-icon svg {
    color: var(--w24-white);
}

.w24-service-title {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-3);
    color: var(--w24-gray-900);
}

.w24-service-desc {
    color: var(--w24-gray-500);
    font-size: var(--w24-font-size-sm);
    margin-bottom: var(--w24-space-6);
    line-height: var(--w24-line-relaxed);
}

.w24-service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--w24-space-2);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    color: var(--w24-accent);
}

.w24-service-link:hover {
    color: var(--w24-accent-dark);
}

.w24-service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--w24-transition-fast);
}

.w24-service-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.w24-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w24-space-6);
}

/* ==========================================================================
   USP / Features Section
   ========================================================================== */

.w24-usps {
    background: var(--w24-gray-50);
}

.w24-usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--w24-space-8);
}

.w24-usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--w24-space-6);
}

.w24-usp-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--w24-space-5);
    background: var(--w24-white);
    border-radius: var(--w24-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--w24-shadow-md);
    transition: all var(--w24-transition);
}

.w24-usp-item:hover .w24-usp-icon {
    transform: translateY(-4px);
    box-shadow: var(--w24-shadow-lg);
}

.w24-usp-icon svg {
    width: 28px;
    height: 28px;
    color: var(--w24-accent);
}

.w24-usp-title {
    font-size: var(--w24-font-size-base);
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-2);
    color: var(--w24-gray-900);
}

.w24-usp-text {
    color: var(--w24-gray-500);
    font-size: var(--w24-font-size-sm);
    line-height: var(--w24-line-relaxed);
}

/* ==========================================================================
   Reviews / Testimonials - Premium Dark Section
   ========================================================================== */

.w24-reviews {
    background: var(--w24-gradient-dark);
    color: var(--w24-white);
    position: relative;
    overflow: hidden;
}

.w24-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--w24-gradient-mesh);
    pointer-events: none;
}

.w24-reviews .w24-container {
    position: relative;
    z-index: 1;
}

.w24-reviews-header {
    text-align: center;
    margin-bottom: var(--w24-space-12);
}

.w24-reviews-title {
    color: var(--w24-white);
    margin-bottom: var(--w24-space-4);
}

.w24-reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--w24-space-3);
}

.w24-reviews-stars {
    display: flex;
    gap: var(--w24-space-1);
    color: #fbbf24;
}

.w24-reviews-stars svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.w24-reviews-score {
    font-size: var(--w24-font-size-2xl);
    font-weight: var(--w24-font-bold);
}

.w24-reviews-count {
    color: var(--w24-gray-400);
}

.w24-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w24-space-6);
}

.w24-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--w24-radius-xl);
    padding: var(--w24-space-8);
    transition: all var(--w24-transition);
}

.w24-review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.w24-review-stars {
    display: flex;
    gap: var(--w24-space-1);
    color: #fbbf24;
    margin-bottom: var(--w24-space-4);
}

.w24-review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.w24-review-text {
    font-size: var(--w24-font-size-base);
    line-height: var(--w24-line-relaxed);
    margin-bottom: var(--w24-space-6);
    color: var(--w24-gray-300);
}

.w24-review-author {
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
}

.w24-review-avatar {
    width: 44px;
    height: 44px;
    background: var(--w24-gradient-cta);
    border-radius: var(--w24-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--w24-font-semibold);
    font-size: var(--w24-font-size-sm);
}

.w24-review-name {
    font-weight: var(--w24-font-semibold);
    color: var(--w24-white);
}

.w24-review-date {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-500);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.w24-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--w24-space-16);
    align-items: start;
}

.w24-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-6);
}

.w24-contact-item {
    display: flex;
    gap: var(--w24-space-4);
}

.w24-contact-icon {
    width: 52px;
    height: 52px;
    background: var(--w24-gray-50);
    border-radius: var(--w24-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--w24-transition);
}

.w24-contact-item:hover .w24-contact-icon {
    background: var(--w24-gray-900);
}

.w24-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--w24-gray-600);
    transition: color var(--w24-transition);
}

.w24-contact-item:hover .w24-contact-icon svg {
    color: var(--w24-white);
}

.w24-contact-label {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-500);
    margin-bottom: var(--w24-space-1);
}

.w24-contact-value {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-semibold);
    color: var(--w24-gray-900);
}

.w24-contact-value a {
    color: var(--w24-gray-900);
}

.w24-contact-value a:hover {
    color: var(--w24-accent);
}

/* Opening Hours */
.w24-hours {
    background: var(--w24-white);
    border: 1px solid var(--w24-gray-100);
    border-radius: var(--w24-radius-xl);
    padding: var(--w24-space-8);
}

.w24-hours-title {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-6);
    display: flex;
    align-items: center;
    gap: var(--w24-space-2);
}

.w24-hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-1);
}

.w24-hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--w24-space-3) 0;
    border-bottom: 1px solid var(--w24-gray-100);
}

.w24-hours-row:last-child {
    border-bottom: none;
}

.w24-hours-day {
    font-weight: var(--w24-font-medium);
    color: var(--w24-gray-700);
}

.w24-hours-time {
    color: var(--w24-gray-500);
}

.w24-hours-closed {
    color: var(--w24-error);
    font-weight: var(--w24-font-medium);
}

/* Map Container */
.w24-map-container {
    border-radius: var(--w24-radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--w24-shadow-lg);
}

.w24-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Forms - Clean & Modern
   ========================================================================== */

.w24-form {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-5);
}

.w24-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-2);
}

.w24-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--w24-space-4);
}

.w24-label {
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    color: var(--w24-gray-700);
}

.w24-label-required::after {
    content: ' *';
    color: var(--w24-error);
}

.w24-form-hint {
    font-size: var(--w24-font-size-xs);
    color: var(--w24-gray-500);
    margin-top: var(--w24-space-1);
}

.w24-input,
.w24-select,
.w24-textarea {
    width: 100%;
    padding: var(--w24-space-3) var(--w24-space-4);
    font-family: inherit;
    font-size: var(--w24-font-size-base);
    color: var(--w24-gray-900);
    background: var(--w24-white);
    border: 1.5px solid var(--w24-gray-200);
    border-radius: var(--w24-radius-md);
    transition: all var(--w24-transition-fast);
}

.w24-input:focus,
.w24-select:focus,
.w24-textarea:focus {
    outline: none;
    border-color: var(--w24-accent);
    box-shadow: 0 0 0 3px var(--w24-accent-glow);
}

.w24-input::placeholder,
.w24-textarea::placeholder {
    color: var(--w24-gray-400);
}

.w24-textarea {
    min-height: 120px;
    resize: vertical;
}

.w24-input-error {
    border-color: var(--w24-error);
}

.w24-error-message {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-error);
}

/* Checkbox & Radio */
.w24-checkbox-group,
.w24-radio-group {
    display: flex;
    align-items: flex-start;
    gap: var(--w24-space-3);
}

.w24-checkbox,
.w24-radio {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--w24-accent);
    cursor: pointer;
}

.w24-checkbox-label,
.w24-radio-label {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-600);
    cursor: pointer;
    line-height: var(--w24-line-relaxed);
}

/* ==========================================================================
   Multi-Step Booking Form - Modern
   ========================================================================== */

.w24-booking-wizard {
    background: var(--w24-white);
    border-radius: var(--w24-radius-2xl);
    border: 1px solid var(--w24-gray-100);
    overflow: hidden;
    box-shadow: var(--w24-shadow-xl);
}

/* Progress Bar */
.w24-booking-progress {
    display: flex;
    padding: var(--w24-space-6) var(--w24-space-8);
    background: var(--w24-gray-50);
    border-bottom: 1px solid var(--w24-gray-100);
}

.w24-progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.w24-progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--w24-gray-200);
}

.w24-progress-step:last-child::after {
    display: none;
}

.w24-progress-step.completed::after {
    background: var(--w24-success);
}

.w24-progress-step.active::after {
    background: linear-gradient(90deg, var(--w24-accent) 50%, var(--w24-gray-200) 50%);
}

.w24-progress-number {
    width: 40px;
    height: 40px;
    background: var(--w24-gray-200);
    border-radius: var(--w24-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--w24-font-semibold);
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-500);
    position: relative;
    z-index: 1;
    transition: all var(--w24-transition);
}

.w24-progress-step.active .w24-progress-number {
    background: var(--w24-accent);
    color: var(--w24-white);
    box-shadow: var(--w24-shadow-glow);
}

.w24-progress-step.completed .w24-progress-number {
    background: var(--w24-success);
    color: var(--w24-white);
}

.w24-progress-label {
    margin-top: var(--w24-space-2);
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-500);
}

.w24-progress-step.active .w24-progress-label {
    color: var(--w24-gray-900);
    font-weight: var(--w24-font-medium);
}

/* Booking Steps Content */
.w24-booking-content {
    padding: var(--w24-space-10);
}

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

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

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

.w24-booking-step-title {
    font-size: var(--w24-font-size-2xl);
    margin-bottom: var(--w24-space-2);
}

.w24-booking-step-desc {
    color: var(--w24-gray-500);
    margin-bottom: var(--w24-space-8);
}

/* Booking Actions */
.w24-booking-actions {
    display: flex;
    justify-content: space-between;
    padding: var(--w24-space-6) var(--w24-space-8);
    background: var(--w24-gray-50);
    border-top: 1px solid var(--w24-gray-100);
}

/* Calendar Picker */
.w24-calendar {
    background: var(--w24-white);
    border: 1px solid var(--w24-gray-200);
    border-radius: var(--w24-radius-xl);
    overflow: hidden;
}

.w24-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--w24-space-4) var(--w24-space-5);
    background: var(--w24-gray-50);
    border-bottom: 1px solid var(--w24-gray-100);
}

.w24-calendar-title {
    font-weight: var(--w24-font-semibold);
}

.w24-calendar-nav {
    display: flex;
    gap: var(--w24-space-2);
}

.w24-calendar-nav button {
    width: 32px;
    height: 32px;
    padding: 0;
    background: var(--w24-white);
    border: 1px solid var(--w24-gray-200);
    border-radius: var(--w24-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--w24-transition-fast);
}

.w24-calendar-nav button:hover {
    background: var(--w24-gray-100);
    border-color: var(--w24-gray-300);
}

.w24-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.w24-calendar-day-header {
    padding: var(--w24-space-3);
    text-align: center;
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    color: var(--w24-gray-500);
    background: var(--w24-gray-50);
}

.w24-calendar-day {
    padding: var(--w24-space-3);
    text-align: center;
    background: var(--w24-white);
    cursor: pointer;
    transition: all var(--w24-transition-fast);
    border-top: 1px solid var(--w24-gray-100);
}

.w24-calendar-day:hover:not(.disabled):not(.selected) {
    background: var(--w24-accent-50);
}

.w24-calendar-day.disabled {
    color: var(--w24-gray-300);
    cursor: not-allowed;
}

.w24-calendar-day.selected {
    background: var(--w24-accent);
    color: var(--w24-white);
    font-weight: var(--w24-font-semibold);
}

.w24-calendar-day.today {
    font-weight: var(--w24-font-bold);
    color: var(--w24-accent);
}

/* Time Slots */
.w24-timeslots {
    margin-top: var(--w24-space-8);
}

.w24-timeslots-title {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-4);
}

.w24-timeslots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--w24-space-3);
}

.w24-timeslot {
    padding: var(--w24-space-3);
    text-align: center;
    background: var(--w24-gray-50);
    border: 1.5px solid var(--w24-gray-200);
    border-radius: var(--w24-radius-md);
    cursor: pointer;
    font-weight: var(--w24-font-medium);
    font-size: var(--w24-font-size-sm);
    transition: all var(--w24-transition-fast);
}

.w24-timeslot:hover:not(.disabled):not(.selected) {
    border-color: var(--w24-accent);
    background: var(--w24-accent-50);
}

.w24-timeslot.selected {
    background: var(--w24-accent);
    border-color: var(--w24-accent);
    color: var(--w24-white);
}

.w24-timeslot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Booking Summary */
.w24-booking-summary {
    background: var(--w24-gray-50);
    border-radius: var(--w24-radius-xl);
    padding: var(--w24-space-6);
    border: 1px solid var(--w24-gray-100);
}

.w24-summary-title {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-4);
    padding-bottom: var(--w24-space-4);
    border-bottom: 1px solid var(--w24-gray-200);
}

.w24-summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--w24-space-2) 0;
}

.w24-summary-label {
    color: var(--w24-gray-500);
}

.w24-summary-value {
    font-weight: var(--w24-font-medium);
    color: var(--w24-gray-900);
}

/* ==========================================================================
   Alerts & Notifications
   ========================================================================== */

.w24-alert {
    display: flex;
    align-items: flex-start;
    gap: var(--w24-space-3);
    padding: var(--w24-space-4) var(--w24-space-5);
    border-radius: var(--w24-radius-lg);
    margin-bottom: var(--w24-space-4);
}

.w24-alert-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.w24-alert-content {
    flex: 1;
}

.w24-alert-title {
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-1);
}

.w24-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.w24-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.w24-alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.w24-alert-info {
    background: var(--w24-accent-50);
    color: var(--w24-accent-dark);
    border: 1px solid var(--w24-accent-100);
}

/* ==========================================================================
   Footer - Premium Dark
   ========================================================================== */

.w24-footer {
    background: var(--w24-gray-950);
    color: var(--w24-gray-400);
    padding: var(--w24-space-20) 0 var(--w24-space-10);
    position: relative;
}

.w24-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.w24-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--w24-space-12);
    margin-bottom: var(--w24-space-16);
}

.w24-footer-brand {
    max-width: 320px;
}

.w24-footer-logo {
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
    font-size: var(--w24-font-size-xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-white);
    margin-bottom: var(--w24-space-5);
}

.w24-footer-desc {
    color: var(--w24-gray-300);
    line-height: var(--w24-line-relaxed);
    font-size: var(--w24-font-size-sm);
}

.w24-footer-title {
    color: var(--w24-white) !important;
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.w24-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-3);
}

.w24-footer-link {
    color: var(--w24-gray-300);
    font-size: var(--w24-font-size-sm);
    transition: color var(--w24-transition-fast);
}

.w24-footer-link:hover {
    color: var(--w24-white);
}

.w24-footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-3);
}

.w24-footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-300);
}

.w24-footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--w24-accent);
}

.w24-footer-contact-item a {
    color: var(--w24-white);
}

.w24-footer-contact-item a:hover {
    color: var(--w24-white);
}

.w24-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--w24-space-8);
    border-top: 1px solid var(--w24-gray-800);
}

.w24-footer-copyright {
    color: var(--w24-gray-400);
    font-size: var(--w24-font-size-sm);
}

.w24-footer-legal {
    display: flex;
    gap: var(--w24-space-6);
}

.w24-footer-legal a {
    color: var(--w24-gray-400);
    font-size: var(--w24-font-size-sm);
}

.w24-footer-legal a:hover {
    color: var(--w24-white);
}

/* Footer Social Media Icons */
.w24-footer-social {
    display: flex;
    gap: var(--w24-space-4);
    align-items: center;
}

.w24-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--w24-gray-800);
    color: var(--w24-gray-400);
    transition: all 0.3s ease;
}

.w24-social-link:hover {
    background: var(--w24-accent);
    color: var(--w24-white);
    transform: translateY(-3px);
}

.w24-social-link svg {
    width: 20px;
    height: 20px;
}

/* WhatsApp Floating Button */
.w24-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.w24-whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.w24-whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@media (max-width: 768px) {
    .w24-whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .w24-whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.w24-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--w24-space-4);
}

.w24-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--w24-radius-lg);
    cursor: pointer;
}

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

.w24-gallery-item:hover img {
    transform: scale(1.08);
}

.w24-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.w24-gallery-item:hover .w24-gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.w24-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: var(--w24-space-8);
}

.w24-lightbox.active {
    display: flex;
}

.w24-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.w24-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--w24-radius-lg);
}

.w24-lightbox-close {
    position: absolute;
    top: var(--w24-space-4);
    right: var(--w24-space-4);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.w24-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.w24-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.w24-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.w24-lightbox-prev {
    left: var(--w24-space-4);
}

.w24-lightbox-next {
    right: var(--w24-space-4);
}

.w24-lightbox-title {
    position: absolute;
    bottom: var(--w24-space-4);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: var(--w24-font-size-sm);
    background: rgba(0, 0, 0, 0.5);
    padding: var(--w24-space-2) var(--w24-space-4);
    border-radius: var(--w24-radius);
}

@media (max-width: 1024px) {
    .w24-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .w24-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--w24-space-3);
    }

    .w24-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .w24-lightbox-prev {
        left: var(--w24-space-2);
    }

    .w24-lightbox-next {
        right: var(--w24-space-2);
    }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.w24-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--w24-space-16);
}

.w24-section-badge {
    display: inline-block;
    padding: var(--w24-space-1) var(--w24-space-4);
    background: var(--w24-accent-50);
    color: var(--w24-accent);
    font-size: var(--w24-font-size-xs);
    font-weight: var(--w24-font-semibold);
    border-radius: var(--w24-radius-full);
    margin-bottom: var(--w24-space-4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.w24-section-title {
    font-size: var(--w24-font-size-3xl);
    margin-bottom: var(--w24-space-4);
    color: var(--w24-gray-900);
}

.w24-section-subtitle {
    color: var(--w24-gray-500);
    font-size: var(--w24-font-size-lg);
    line-height: var(--w24-line-relaxed);
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.w24-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--w24-space-10);
}

.w24-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--w24-gray-200);
    border-top-color: var(--w24-accent);
    border-radius: var(--w24-radius-full);
    animation: spin 0.8s linear infinite;
}

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

/* ==========================================================================
   Auth Pages (Login/Register)
   ========================================================================== */

.w24-auth-container {
    max-width: 440px;
    margin: var(--w24-space-16) auto;
}

.w24-auth-card {
    background: var(--w24-white);
    border-radius: var(--w24-radius-2xl);
    border: 1px solid var(--w24-gray-100);
    padding: var(--w24-space-10);
    box-shadow: var(--w24-shadow-xl);
}

.w24-auth-header {
    text-align: center;
    margin-bottom: var(--w24-space-8);
}

.w24-auth-title {
    font-size: var(--w24-font-size-2xl);
    margin-bottom: var(--w24-space-2);
}

.w24-auth-subtitle {
    color: var(--w24-gray-500);
}

.w24-auth-divider {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
    margin: var(--w24-space-6) 0;
    color: var(--w24-gray-400);
    font-size: var(--w24-font-size-sm);
}

.w24-auth-divider::before,
.w24-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--w24-gray-200);
}

.w24-auth-footer {
    text-align: center;
    margin-top: var(--w24-space-6);
    padding-top: var(--w24-space-6);
    border-top: 1px solid var(--w24-gray-100);
    color: var(--w24-gray-500);
    font-size: var(--w24-font-size-sm);
}

.w24-auth-footer a {
    font-weight: var(--w24-font-semibold);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.w24-about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--w24-space-16);
    align-items: center;
}

.w24-about-image {
    border-radius: var(--w24-radius-2xl);
    overflow: hidden;
    box-shadow: var(--w24-shadow-2xl);
}

.w24-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.w24-about-content h2 {
    margin-bottom: var(--w24-space-6);
}

.w24-about-content p {
    color: var(--w24-gray-600);
    line-height: var(--w24-line-relaxed);
}

/* Team Grid */
.w24-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--w24-space-10);
}

.w24-team-card {
    text-align: center;
}

.w24-team-image {
    width: 140px;
    height: 140px;
    margin: 0 auto var(--w24-space-5);
    border-radius: var(--w24-radius-full);
    overflow: hidden;
    background: var(--w24-gray-100);
    box-shadow: var(--w24-shadow-lg);
}

.w24-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.w24-team-name {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-semibold);
    margin-bottom: var(--w24-space-1);
}

.w24-team-role {
    color: var(--w24-accent);
    font-weight: var(--w24-font-medium);
    margin-bottom: var(--w24-space-3);
    font-size: var(--w24-font-size-sm);
}

.w24-team-bio {
    color: var(--w24-gray-500);
    font-size: var(--w24-font-size-sm);
    line-height: var(--w24-line-relaxed);
}

/* ==========================================================================
   Services Detail Page
   ========================================================================== */

.w24-service-detail-header {
    background: var(--w24-gradient-dark);
    color: var(--w24-white);
    padding: var(--w24-space-20) 0;
    position: relative;
}

.w24-service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--w24-gradient-mesh);
    pointer-events: none;
}

.w24-service-detail-header .w24-container {
    position: relative;
    z-index: 1;
}

.w24-service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--w24-space-12);
}

.w24-service-sidebar {
    position: sticky;
    top: 100px;
}

.w24-service-cta-box {
    background: var(--w24-white);
    border-radius: var(--w24-radius-xl);
    padding: var(--w24-space-8);
    border: 1px solid var(--w24-gray-100);
    box-shadow: var(--w24-shadow-lg);
}

.w24-service-price {
    font-size: var(--w24-font-size-3xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    margin-bottom: var(--w24-space-4);
}

.w24-service-price span {
    font-size: var(--w24-font-size-base);
    font-weight: var(--w24-font-normal);
    color: var(--w24-gray-500);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.w24-text-center { text-align: center; }
.w24-text-left { text-align: left; }
.w24-text-right { text-align: right; }

.w24-text-primary { color: var(--w24-accent); }
.w24-text-accent { color: var(--w24-accent); }
.w24-text-muted { color: var(--w24-gray-500); }

.w24-bg-gray { background: var(--w24-gray-50); }
.w24-bg-primary { background: var(--w24-gray-900); }
.w24-bg-white { background: var(--w24-white); }

.w24-hidden { display: none !important; }
.w24-visible { display: block !important; }

.w24-mb-0 { margin-bottom: 0 !important; }
.w24-mt-0 { margin-top: 0 !important; }

/* ==========================================================================
   Closure Notice (Holiday/Vacation Banner)
   ========================================================================== */

.w24-closure-notice {
    padding: var(--w24-space-4) 0;
    font-size: var(--w24-font-size-sm);
    z-index: 100;
}

.w24-closure-notice--active {
    background: linear-gradient(135deg, var(--w24-error) 0%, #dc2626 100%);
    color: white;
}

.w24-closure-notice--upcoming {
    background: linear-gradient(135deg, var(--w24-warning) 0%, #d97706 100%);
    color: white;
}

.w24-closure-notice-content {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
    flex-wrap: wrap;
}

.w24-closure-notice-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.w24-closure-notice-icon svg {
    width: 100%;
    height: 100%;
}

.w24-closure-notice-text {
    flex: 1;
    line-height: var(--w24-line-normal);
}

.w24-closure-notice-text strong {
    font-weight: var(--w24-font-semibold);
}

.w24-closure-notice-text em {
    font-style: normal;
    font-weight: var(--w24-font-medium);
}

.w24-closure-notice-desc {
    display: block;
    margin-top: var(--w24-space-1);
    opacity: 0.9;
    font-size: var(--w24-font-size-xs);
}

.w24-btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: var(--w24-space-2) var(--w24-space-4);
    border-radius: var(--w24-radius-md);
    font-size: var(--w24-font-size-xs);
    font-weight: var(--w24-font-medium);
    white-space: nowrap;
    transition: all var(--w24-transition);
    text-decoration: none;
}

.w24-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

/* ==========================================================================
   Customer Portal CTA Section (Homepage)
   ========================================================================== */

.w24-portal-cta {
    background: linear-gradient(180deg, var(--w24-gray-50) 0%, var(--w24-white) 100%);
}

.w24-portal-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--w24-space-12);
    align-items: center;
}

.w24-portal-cta-title {
    font-size: var(--w24-font-size-3xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    margin-bottom: var(--w24-space-4);
    letter-spacing: -0.025em;
}

.w24-portal-cta-text {
    color: var(--w24-gray-600);
    font-size: var(--w24-font-size-lg);
    line-height: var(--w24-line-relaxed);
    margin-bottom: var(--w24-space-6);
}

.w24-portal-benefits-list {
    list-style: none;
    margin: 0 0 var(--w24-space-8) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-4);
}

.w24-portal-benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
    font-size: var(--w24-font-size-base);
    color: var(--w24-gray-700);
}

.w24-portal-benefits-list li svg {
    width: 24px;
    height: 24px;
    color: var(--w24-success);
    flex-shrink: 0;
}

.w24-portal-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--w24-space-4);
}

/* Portal Preview Visual */
.w24-portal-cta-visual {
    display: flex;
    justify-content: center;
}

.w24-portal-preview {
    background: var(--w24-white);
    border-radius: var(--w24-radius-xl);
    box-shadow: var(--w24-shadow-2xl);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--w24-gray-200);
}

.w24-portal-preview-header {
    background: var(--w24-gradient-hero);
    padding: var(--w24-space-4);
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
}

.w24-portal-preview-dots {
    display: flex;
    gap: var(--w24-space-2);
}

.w24-portal-preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: var(--w24-radius-full);
    background: rgba(255, 255, 255, 0.3);
}

.w24-portal-preview-dots span:first-child {
    background: #ef4444;
}

.w24-portal-preview-dots span:nth-child(2) {
    background: #fbbf24;
}

.w24-portal-preview-dots span:last-child {
    background: #22c55e;
}

.w24-portal-preview-header > span {
    color: var(--w24-white);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
}

.w24-portal-preview-content {
    padding: var(--w24-space-6);
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-4);
}

.w24-portal-preview-stat {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
    padding: var(--w24-space-4);
    background: var(--w24-gray-50);
    border-radius: var(--w24-radius-lg);
    border: 1px solid var(--w24-gray-100);
}

.w24-portal-preview-stat svg {
    width: 32px;
    height: 32px;
    color: var(--w24-accent);
    flex-shrink: 0;
}

.w24-portal-preview-stat.w24-preview-bonus svg {
    color: var(--w24-success);
}

.w24-preview-value {
    font-size: var(--w24-font-size-2xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    display: block;
    line-height: 1;
}

.w24-preview-label {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-600);
    display: block;
    margin-top: var(--w24-space-1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .w24-hero-minimal {
        padding: var(--w24-space-16) 0;
    }

    .w24-hero-minimal-title {
        font-size: var(--w24-font-size-4xl);
    }

    .w24-pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--w24-space-4);
    }

    .w24-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .w24-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .w24-usps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .w24-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .w24-about-hero {
        grid-template-columns: 1fr;
    }

    .w24-service-detail-content {
        grid-template-columns: 1fr;
    }

    .w24-portal-cta-inner {
        grid-template-columns: 1fr;
        gap: var(--w24-space-10);
    }

    .w24-portal-cta-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --w24-container-padding: 1.25rem;
    }

    .w24-section {
        padding-top: var(--w24-space-12);
        padding-bottom: var(--w24-space-12);
    }

    .w24-header-inner {
        height: 70px;
    }

    .w24-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--w24-gray-950);
        flex-direction: column;
        padding: var(--w24-space-4);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .w24-nav.active {
        display: flex;
    }

    .w24-nav-link {
        width: 100%;
        padding: var(--w24-space-3) var(--w24-space-4);
    }

    .w24-mobile-toggle {
        display: flex;
    }

    .w24-header-phone {
        display: none;
    }

    .w24-hero-minimal {
        padding: var(--w24-space-12) 0;
    }

    .w24-hero-minimal-title {
        font-size: var(--w24-font-size-3xl);
    }

    .w24-hero-minimal-subtitle {
        font-size: var(--w24-font-size-base);
    }

    .w24-hero-minimal-actions {
        flex-direction: column;
        align-items: center;
    }

    .w24-pricing-highlights {
        padding: var(--w24-space-8) 0;
    }

    .w24-pricing-item {
        padding: var(--w24-space-4);
    }

    .w24-pricing-icon {
        width: 48px;
        height: 48px;
    }

    .w24-pricing-icon svg {
        width: 24px;
        height: 24px;
    }

    .w24-services-grid {
        grid-template-columns: 1fr;
    }

    .w24-usps-grid {
        grid-template-columns: 1fr;
    }

    .w24-reviews-grid {
        grid-template-columns: 1fr;
    }

    .w24-contact-grid {
        grid-template-columns: 1fr;
        gap: var(--w24-space-10);
    }

    .w24-portal-cta-title {
        font-size: var(--w24-font-size-2xl);
    }

    .w24-portal-cta-text {
        font-size: var(--w24-font-size-base);
    }

    .w24-portal-cta-buttons {
        flex-direction: column;
    }

    .w24-portal-cta-buttons .w24-btn {
        width: 100%;
        justify-content: center;
    }

    .w24-portal-preview {
        max-width: 100%;
    }

    .w24-form-row {
        grid-template-columns: 1fr;
    }

    .w24-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--w24-space-10);
    }

    .w24-footer-bottom {
        flex-direction: column;
        gap: var(--w24-space-4);
        text-align: center;
    }

    .w24-footer-social {
        order: -1;
        justify-content: center;
    }

    .w24-booking-progress {
        overflow-x: auto;
        padding: var(--w24-space-4);
    }

    .w24-progress-step {
        min-width: 80px;
    }

    .w24-progress-label {
        font-size: var(--w24-font-size-xs);
    }

    .w24-booking-content {
        padding: var(--w24-space-6);
    }

    .w24-booking-actions {
        flex-direction: column;
        gap: var(--w24-space-3);
    }

    .w24-booking-actions .w24-btn {
        width: 100%;
    }

    .w24-auth-container {
        margin: var(--w24-space-8) auto;
        padding: 0 var(--w24-space-4);
    }

    .w24-auth-card {
        padding: var(--w24-space-6);
    }

    .w24-section-header {
        margin-bottom: var(--w24-space-10);
    }

    .w24-section-title {
        font-size: var(--w24-font-size-2xl);
    }

    .w24-closure-notice-content {
        flex-direction: column;
        text-align: center;
        gap: var(--w24-space-3);
    }

    .w24-closure-notice-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .w24-public h1 { font-size: var(--w24-font-size-2xl); }
    .w24-public h2 { font-size: var(--w24-font-size-xl); }
    .w24-public h3 { font-size: var(--w24-font-size-lg); }

    .w24-hero-minimal-title {
        font-size: var(--w24-font-size-2xl);
    }

    .w24-btn-lg {
        padding: var(--w24-space-3) var(--w24-space-6);
        font-size: var(--w24-font-size-sm);
    }

    .w24-card-body {
        padding: var(--w24-space-5);
    }

    .w24-service-card {
        padding: var(--w24-space-6);
    }

    .w24-timeslots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .w24-header,
    .w24-footer,
    .w24-btn,
    .w24-mobile-toggle {
        display: none !important;
    }

    .w24-public {
        color: #000;
    }

    .w24-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .w24-hero-minimal {
        background: #333 !important;
        color: #fff;
    }
}

/* ==========================================================================
   Auth Page - Splitscreen Login/Register
   ========================================================================== */

.w24-auth-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Side - Dark Hero */
.w24-auth-hero {
    background: var(--w24-gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--w24-space-12);
    overflow: hidden;
}

.w24-auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--w24-gradient-mesh);
    pointer-events: none;
}

.w24-auth-hero-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
}

/* Auth Logo */
.w24-auth-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--w24-space-3);
    text-decoration: none;
    margin-bottom: var(--w24-space-10);
}

.w24-auth-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--w24-gradient-cta);
    border-radius: var(--w24-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--w24-shadow-glow);
}

.w24-auth-logo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--w24-white);
}

.w24-auth-logo-text {
    font-size: var(--w24-font-size-xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-white);
    letter-spacing: -0.02em;
}

/* Auth Hero Content */
.w24-auth-hero-title {
    font-size: var(--w24-font-size-4xl);
    font-weight: var(--w24-font-extrabold);
    color: var(--w24-white) !important;
    margin-bottom: var(--w24-space-6);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.w24-auth-hero-subtitle {
    font-size: var(--w24-font-size-lg);
    color: var(--w24-gray-400) !important;
    margin-bottom: var(--w24-space-10);
    line-height: var(--w24-line-relaxed);
}

/* Benefits List in Hero */
.w24-auth-benefits-list {
    list-style: none;
    margin: 0 0 var(--w24-space-12) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-4);
}

.w24-auth-benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
    color: var(--w24-white);
    font-size: var(--w24-font-size-base);
    font-weight: var(--w24-font-medium);
}

.w24-auth-benefit-check {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--w24-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.w24-auth-benefit-check svg {
    width: 16px;
    height: 16px;
    color: var(--w24-success);
}

/* Back Link */
.w24-auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--w24-space-2);
    color: var(--w24-gray-500);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    text-decoration: none;
    transition: all var(--w24-transition);
}

.w24-auth-back-link:hover {
    color: var(--w24-white);
}

.w24-auth-back-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--w24-transition);
}

.w24-auth-back-link:hover svg {
    transform: translateX(-4px);
}

/* Right Side - Form */
.w24-auth-form-side {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    background: var(--w24-white);
}

/* Auth Tabs */
.w24-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--w24-gray-200);
    background: var(--w24-white);
    flex-shrink: 0;
}

.w24-auth-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--w24-space-2);
    padding: var(--w24-space-4);
    background: transparent;
    border: none;
    color: var(--w24-gray-500);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    font-family: inherit;
    cursor: pointer;
    transition: all var(--w24-transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.w24-auth-tab svg {
    width: 20px;
    height: 20px;
}

.w24-auth-tab:hover {
    color: var(--w24-gray-700);
    background: var(--w24-gray-50);
}

.w24-auth-tab-active {
    color: var(--w24-accent);
    border-bottom-color: var(--w24-accent);
    font-weight: var(--w24-font-semibold);
}

/* Tab Content */
.w24-auth-tab-content {
    display: none;
    padding: var(--w24-space-8);
    background: var(--w24-white);
    flex: 1;
}

.w24-auth-tab-content > * {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.w24-auth-tab-content-active {
    display: block;
}

.w24-auth-tab-header {
    margin-bottom: var(--w24-space-6);
}

.w24-auth-tab-header h2 {
    font-size: var(--w24-font-size-xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    margin: 0 0 var(--w24-space-2) 0;
}

.w24-auth-tab-header p {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-500);
    margin: 0;
}

/* Auth Form */
.w24-auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-5);
}

.w24-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-2);
}

.w24-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--w24-space-4);
}

@media (max-width: 480px) {
    .w24-form-row {
        grid-template-columns: 1fr;
    }
}

.w24-form-hint {
    font-size: var(--w24-font-size-xs);
    color: var(--w24-gray-500);
    margin-top: var(--w24-space-1);
}

.w24-form-group label {
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    color: var(--w24-gray-700);
}

.w24-input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.w24-input-icon-wrapper > svg {
    position: absolute;
    left: var(--w24-space-4);
    width: 20px;
    height: 20px;
    color: var(--w24-gray-400);
    pointer-events: none;
}

.w24-input-icon-wrapper input {
    width: 100%;
    padding: var(--w24-space-3) var(--w24-space-4);
    padding-left: calc(var(--w24-space-4) + 20px + var(--w24-space-3));
    border: 1px solid var(--w24-gray-300);
    border-radius: var(--w24-radius-md);
    font-size: var(--w24-font-size-base);
    font-family: inherit;
    color: var(--w24-gray-900);
    transition: all var(--w24-transition);
    background: var(--w24-white);
}

.w24-input-icon-wrapper input:focus {
    outline: none;
    border-color: var(--w24-accent);
    box-shadow: 0 0 0 3px var(--w24-accent-glow);
}

.w24-input-icon-wrapper input::placeholder {
    color: var(--w24-gray-400);
}

/* Password Toggle */
.w24-input-password input {
    padding-right: calc(var(--w24-space-4) + 24px + var(--w24-space-2));
}

.w24-password-toggle {
    position: absolute;
    right: var(--w24-space-3);
    background: transparent;
    border: none;
    padding: var(--w24-space-2);
    cursor: pointer;
    color: var(--w24-gray-400);
    transition: color var(--w24-transition);
}

.w24-password-toggle:hover {
    color: var(--w24-gray-600);
}

.w24-password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Form Options */
.w24-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--w24-space-2);
}

.w24-checkbox {
    display: flex;
    align-items: center;
    gap: var(--w24-space-2);
    cursor: pointer;
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-600);
}

.w24-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--w24-accent);
    cursor: pointer;
}

.w24-form-link {
    color: var(--w24-accent);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    text-decoration: none;
    transition: color var(--w24-transition);
}

.w24-form-link:hover {
    color: var(--w24-accent-dark);
    text-decoration: underline;
}

/* Button Full Width */
.w24-btn-full {
    width: 100%;
}

.w24-btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--w24-space-2);
}

.w24-spinner {
    width: 20px;
    height: 20px;
    animation: w24-spin 1s linear infinite;
}

@keyframes w24-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Auth Alerts */
.w24-auth-alert {
    padding: var(--w24-space-3) var(--w24-space-4);
    border-radius: var(--w24-radius-md);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
}

.w24-auth-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.w24-auth-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Auth Footer Text */
.w24-auth-footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--w24-space-2);
    margin-top: var(--w24-space-6);
    padding-top: var(--w24-space-6);
    border-top: 1px solid var(--w24-gray-200);
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-500);
}

.w24-switch-tab-link {
    background: transparent;
    border: none;
    color: var(--w24-accent);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    transition: color var(--w24-transition);
}

.w24-switch-tab-link:hover {
    color: var(--w24-accent-dark);
    text-decoration: underline;
}

/* Register Preview Grid */
.w24-register-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--w24-space-4);
    margin-bottom: var(--w24-space-6);
}

.w24-register-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--w24-space-3);
    padding: var(--w24-space-4);
    background: var(--w24-gray-50);
    border-radius: var(--w24-radius-lg);
    text-align: center;
}

.w24-register-preview-icon {
    width: 48px;
    height: 48px;
    background: var(--w24-accent-50);
    border-radius: var(--w24-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.w24-register-preview-icon svg {
    width: 24px;
    height: 24px;
    color: var(--w24-accent);
}

.w24-register-preview-icon.w24-preview-icon-calendar {
    background: rgba(245, 158, 11, 0.1);
}

.w24-register-preview-icon.w24-preview-icon-calendar svg {
    color: var(--w24-warning);
}

.w24-register-preview-icon.w24-preview-icon-bonus {
    background: rgba(16, 185, 129, 0.1);
}

.w24-register-preview-icon.w24-preview-icon-bonus svg {
    color: var(--w24-success);
}

.w24-register-preview-text {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-1);
}

.w24-register-preview-text strong {
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    color: var(--w24-gray-900);
}

.w24-register-preview-text span {
    font-size: var(--w24-font-size-xs);
    color: var(--w24-gray-500);
}

.w24-register-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--w24-space-2);
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-500);
    margin: var(--w24-space-4) 0 0 0;
}

.w24-register-note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Auth Page Responsive */
@media (max-width: 1024px) {
    .w24-auth-page {
        grid-template-columns: 1fr;
    }

    .w24-auth-hero {
        display: none;
    }

    .w24-auth-form-side {
        min-height: 100vh;
        height: auto;
        background: var(--w24-gradient-hero);
    }

    .w24-auth-tabs {
        background: var(--w24-white);
    }
}

@media (max-width: 480px) {
    .w24-auth-tab-content {
        padding: var(--w24-space-6);
    }

    .w24-register-preview {
        grid-template-columns: 1fr;
    }

    .w24-register-preview-item {
        flex-direction: row;
        text-align: left;
    }

    .w24-form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--w24-space-3);
    }
}

/* ==========================================================================
   Legal Pages - Impressum, Datenschutz, AGB
   ========================================================================== */

.w24-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.w24-legal-content .w24-card-body {
    padding: var(--w24-space-8);
}

.w24-legal-content h2 {
    font-size: var(--w24-font-size-xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    margin-top: var(--w24-space-8);
    margin-bottom: var(--w24-space-4);
    padding-bottom: var(--w24-space-2);
    border-bottom: 2px solid var(--w24-gray-100);
}

.w24-legal-content h2:first-child {
    margin-top: 0;
}

.w24-legal-content h3 {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-semibold);
    color: var(--w24-gray-800);
    margin-top: var(--w24-space-6);
    margin-bottom: var(--w24-space-3);
}

.w24-legal-content p {
    font-size: var(--w24-font-size-base);
    line-height: 1.7;
    color: var(--w24-gray-600);
    margin-bottom: var(--w24-space-4);
}

.w24-legal-content ul,
.w24-legal-content ol {
    margin: var(--w24-space-4) 0;
    padding-left: var(--w24-space-6);
}

.w24-legal-content li {
    font-size: var(--w24-font-size-base);
    line-height: 1.7;
    color: var(--w24-gray-600);
    margin-bottom: var(--w24-space-2);
}

.w24-legal-content a {
    color: var(--w24-accent);
    text-decoration: none;
    transition: color var(--w24-transition);
}

.w24-legal-content a:hover {
    color: var(--w24-accent-dark);
    text-decoration: underline;
}

.w24-legal-content strong {
    font-weight: var(--w24-font-semibold);
    color: var(--w24-gray-700);
}

/* Smaller section padding for legal pages */
.w24-section-sm {
    padding: var(--w24-space-8) 0;
}

@media (max-width: 768px) {
    .w24-legal-content .w24-card-body {
        padding: var(--w24-space-5);
    }

    .w24-section-sm {
        padding: var(--w24-space-6) 0;
    }
}

/* ==========================================================================
   Partners Section (Homepage)
   ========================================================================== */

.w24-partners-home {
    background: var(--w24-gray-50);
    padding: var(--w24-space-8) 0;
    border-top: 1px solid var(--w24-gray-100);
}

.w24-partners-home-inner {
    display: flex;
    flex-direction: column;
    gap: var(--w24-space-6);
}

.w24-partners-home-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--w24-space-4);
}

.w24-partners-label {
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    color: var(--w24-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.w24-partners-all-link {
    display: flex;
    align-items: center;
    gap: var(--w24-space-2);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    color: var(--w24-accent);
    text-decoration: none;
    transition: all var(--w24-transition);
}

.w24-partners-all-link:hover {
    color: var(--w24-accent-dark);
}

.w24-partners-all-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--w24-transition);
}

.w24-partners-all-link:hover svg {
    transform: translateX(4px);
}

.w24-partners-carousel {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
    position: relative;
}

.w24-partners-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--w24-white);
    border: 1px solid var(--w24-gray-200);
    border-radius: 50%;
    color: var(--w24-gray-600);
    cursor: pointer;
    transition: all var(--w24-transition);
    box-shadow: var(--w24-shadow-sm);
}

.w24-partners-arrow:hover:not(:disabled) {
    background: var(--w24-accent);
    border-color: var(--w24-accent);
    color: var(--w24-white);
    box-shadow: var(--w24-shadow-md);
}

.w24-partners-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.w24-partners-home-list {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: var(--w24-space-2) 0;
}

.w24-partners-home-list::-webkit-scrollbar {
    display: none;
}

.w24-partner-home-item {
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
    padding: var(--w24-space-3) var(--w24-space-4);
    background: var(--w24-white);
    border-radius: var(--w24-radius-xl);
    border: 1px solid var(--w24-gray-200);
    text-decoration: none;
    transition: all var(--w24-transition);
    box-shadow: var(--w24-shadow-sm);
    flex-shrink: 0;
    white-space: nowrap;
}

.w24-partner-home-item:hover {
    border-color: var(--w24-accent);
    box-shadow: var(--w24-shadow-md);
    transform: translateY(-2px);
}

.w24-partner-home-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--w24-radius-md);
}

.w24-partner-home-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--w24-gray-100);
    border-radius: var(--w24-radius-md);
    color: var(--w24-gray-500);
}

.w24-partner-home-icon svg {
    width: 24px;
    height: 24px;
}

.w24-partner-home-name {
    font-size: var(--w24-font-size-base);
    font-weight: var(--w24-font-semibold);
    color: var(--w24-gray-900);
}

@media (max-width: 768px) {
    .w24-partners-home-header {
        flex-direction: column;
        text-align: center;
    }

    .w24-partners-arrow {
        width: 36px;
        height: 36px;
    }

    .w24-partners-arrow svg {
        width: 16px;
        height: 16px;
    }

    .w24-partner-home-item {
        padding: var(--w24-space-2) var(--w24-space-3);
    }

    .w24-partner-home-logo,
    .w24-partner-home-icon {
        width: 36px;
        height: 36px;
    }

    .w24-partner-home-name {
        font-size: var(--w24-font-size-sm);
    }
}

/* ==========================================================================
   Partners Page
   ========================================================================== */

/* Partners Intro */
.w24-partners-intro {
    display: flex;
    align-items: flex-start;
    gap: var(--w24-space-6);
    padding: var(--w24-space-8);
    background: var(--w24-white);
    border-radius: var(--w24-radius-xl);
    border: 1px solid var(--w24-gray-100);
    box-shadow: var(--w24-shadow-sm);
}

.w24-partners-intro-icon {
    width: 64px;
    height: 64px;
    background: var(--w24-accent-50);
    border-radius: var(--w24-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.w24-partners-intro-icon svg {
    width: 32px;
    height: 32px;
    color: var(--w24-accent);
}

.w24-partners-intro-content h2 {
    font-size: var(--w24-font-size-xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    margin: 0 0 var(--w24-space-3) 0;
}

.w24-partners-intro-content p {
    font-size: var(--w24-font-size-base);
    line-height: var(--w24-line-relaxed);
    color: var(--w24-gray-600);
    margin: 0;
}

/* Partners Grid */
.w24-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--w24-space-6);
}

/* Partner Card */
.w24-partner-card {
    background: var(--w24-white);
    border-radius: var(--w24-radius-xl);
    padding: var(--w24-space-6);
    border: 1px solid var(--w24-gray-100);
    box-shadow: var(--w24-shadow-sm);
    transition: all var(--w24-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.w24-partner-card:hover {
    box-shadow: var(--w24-shadow-md);
    transform: translateY(-2px);
}

.w24-partner-featured {
    border-color: var(--w24-accent);
    border-width: 2px;
}

.w24-partner-badge {
    position: absolute;
    top: var(--w24-space-4);
    right: var(--w24-space-4);
    background: var(--w24-accent);
    color: var(--w24-white);
    font-size: var(--w24-font-size-xs);
    font-weight: var(--w24-font-semibold);
    padding: var(--w24-space-1) var(--w24-space-3);
    border-radius: var(--w24-radius-full);
}

.w24-partner-header {
    display: flex;
    align-items: center;
    gap: var(--w24-space-4);
    margin-bottom: var(--w24-space-4);
}

.w24-partner-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: var(--w24-radius-lg);
}

.w24-partner-icon {
    width: 64px;
    height: 64px;
    background: var(--w24-gray-100);
    border-radius: var(--w24-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.w24-partner-icon svg {
    width: 28px;
    height: 28px;
    color: var(--w24-gray-400);
}

.w24-partner-featured .w24-partner-icon {
    background: var(--w24-accent-50);
}

.w24-partner-featured .w24-partner-icon svg {
    color: var(--w24-accent);
}

.w24-partner-info {
    flex: 1;
    min-width: 0;
}

.w24-partner-name {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    margin: 0 0 var(--w24-space-1) 0;
}

.w24-partner-category {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-accent);
    font-weight: var(--w24-font-medium);
}

.w24-partner-description {
    font-size: var(--w24-font-size-sm);
    line-height: var(--w24-line-relaxed);
    color: var(--w24-gray-600);
    margin: 0 0 var(--w24-space-4) 0;
    flex: 1;
}

.w24-partner-link {
    display: inline-flex;
    align-items: center;
    gap: var(--w24-space-2);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-medium);
    color: var(--w24-accent);
    text-decoration: none;
    transition: all var(--w24-transition);
}

.w24-partner-link:hover {
    color: var(--w24-accent-dark);
}

.w24-partner-link svg {
    width: 16px;
    height: 16px;
}

/* Become Partner CTA */
.w24-become-partner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--w24-space-8);
    padding: var(--w24-space-8);
    background: var(--w24-gradient-hero);
    border-radius: var(--w24-radius-xl);
    position: relative;
    overflow: hidden;
}

.w24-become-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--w24-gradient-mesh);
    pointer-events: none;
}

.w24-become-partner-content {
    position: relative;
    z-index: 1;
}

.w24-become-partner-content h2 {
    font-size: var(--w24-font-size-2xl);
    font-weight: var(--w24-font-bold);
    color: var(--w24-white);
    margin: 0 0 var(--w24-space-3) 0;
}

.w24-become-partner-content p {
    font-size: var(--w24-font-size-base);
    color: var(--w24-gray-300);
    margin: 0 0 var(--w24-space-6) 0;
    max-width: 500px;
    line-height: var(--w24-line-relaxed);
}

.w24-become-partner-icon {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--w24-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.w24-become-partner-icon svg {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .w24-partners-intro {
        flex-direction: column;
        text-align: center;
    }

    .w24-partners-grid {
        grid-template-columns: 1fr;
    }

    .w24-become-partner {
        flex-direction: column;
        text-align: center;
    }

    .w24-become-partner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .w24-become-partner-icon {
        order: -1;
        width: 80px;
        height: 80px;
    }

    .w24-become-partner-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Cookie Consent Banner (DSGVO)
   ========================================================================== */

.w24-cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--w24-space-4);
    opacity: 0;
    transition: opacity var(--w24-transition-slow);
}

.w24-cookie-banner-visible {
    opacity: 1;
}

.w24-cookie-banner-inner {
    background: var(--w24-white);
    border-radius: var(--w24-radius-2xl);
    box-shadow: var(--w24-shadow-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--w24-space-8);
    transform: translateY(20px);
    transition: transform var(--w24-transition-slow);
}

.w24-cookie-banner-visible .w24-cookie-banner-inner {
    transform: translateY(0);
}

.w24-cookie-content {
    display: flex;
    gap: var(--w24-space-5);
    margin-bottom: var(--w24-space-6);
}

.w24-cookie-icon {
    width: 48px;
    height: 48px;
    background: var(--w24-accent-50);
    border-radius: var(--w24-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.w24-cookie-icon svg {
    width: 24px;
    height: 24px;
    color: var(--w24-accent);
}

.w24-cookie-text {
    flex: 1;
}

.w24-cookie-title {
    font-size: var(--w24-font-size-lg);
    font-weight: var(--w24-font-bold);
    color: var(--w24-gray-900);
    margin: 0 0 var(--w24-space-2) 0;
}

.w24-cookie-description {
    font-size: var(--w24-font-size-sm);
    color: var(--w24-gray-600);
    line-height: var(--w24-line-relaxed);
    margin: 0;
}

.w24-cookie-privacy-link {
    color: var(--w24-accent);
    font-weight: var(--w24-font-medium);
    text-decoration: none;
    margin-left: var(--w24-space-1);
}

.w24-cookie-privacy-link:hover {
    text-decoration: underline;
}

/* Cookie Settings Panel */
.w24-cookie-settings {
    border-top: 1px solid var(--w24-gray-200);
    padding-top: var(--w24-space-6);
    margin-bottom: var(--w24-space-6);
}

.w24-cookie-category {
    padding: var(--w24-space-4);
    background: var(--w24-gray-50);
    border-radius: var(--w24-radius-lg);
    margin-bottom: var(--w24-space-3);
}

.w24-cookie-category:last-child {
    margin-bottom: 0;
}

.w24-cookie-category-header {
    display: flex;
    align-items: center;
    gap: var(--w24-space-3);
    margin-bottom: var(--w24-space-2);
}

.w24-cookie-category-info {
    display: flex;
    align-items: center;
    gap: var(--w24-space-2);
    flex: 1;
}

.w24-cookie-category-title {
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    color: var(--w24-gray-900);
}

.w24-cookie-category-badge {
    font-size: var(--w24-font-size-xs);
    padding: var(--w24-space-1) var(--w24-space-2);
    border-radius: var(--w24-radius-full);
}

.w24-cookie-badge-required {
    background: var(--w24-gray-200);
    color: var(--w24-gray-600);
}

.w24-cookie-category-desc {
    font-size: var(--w24-font-size-xs);
    color: var(--w24-gray-500);
    line-height: var(--w24-line-relaxed);
    margin: 0;
    padding-left: calc(44px + var(--w24-space-3));
}

/* Toggle Switch */
.w24-cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.w24-cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.w24-cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--w24-gray-300);
    border-radius: var(--w24-radius-full);
    transition: all var(--w24-transition);
}

.w24-cookie-toggle-slider::before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--w24-white);
    border-radius: var(--w24-radius-full);
    transition: all var(--w24-transition);
    box-shadow: var(--w24-shadow-sm);
}

.w24-cookie-toggle input:checked + .w24-cookie-toggle-slider {
    background: var(--w24-accent);
}

.w24-cookie-toggle input:checked + .w24-cookie-toggle-slider::before {
    transform: translateX(20px);
}

.w24-cookie-toggle input:disabled + .w24-cookie-toggle-slider {
    background: var(--w24-gray-400);
    cursor: not-allowed;
}

/* Cookie Action Buttons */
.w24-cookie-actions {
    display: flex;
    gap: var(--w24-space-3);
    flex-wrap: wrap;
}

.w24-cookie-btn {
    padding: var(--w24-space-3) var(--w24-space-5);
    border-radius: var(--w24-radius-md);
    font-size: var(--w24-font-size-sm);
    font-weight: var(--w24-font-semibold);
    font-family: inherit;
    cursor: pointer;
    transition: all var(--w24-transition);
    border: none;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.w24-cookie-btn-settings {
    background: var(--w24-white);
    color: var(--w24-gray-700);
    border: 1px solid var(--w24-gray-300);
}

.w24-cookie-btn-settings:hover {
    background: var(--w24-gray-50);
    border-color: var(--w24-gray-400);
}

.w24-cookie-btn-reject {
    background: var(--w24-gray-100);
    color: var(--w24-gray-700);
}

.w24-cookie-btn-reject:hover {
    background: var(--w24-gray-200);
}

.w24-cookie-btn-accept {
    background: var(--w24-accent);
    color: var(--w24-white);
}

.w24-cookie-btn-accept:hover {
    background: var(--w24-accent-dark);
}

.w24-cookie-save-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--w24-space-4);
    padding-top: var(--w24-space-4);
    border-top: 1px solid var(--w24-gray-200);
}

.w24-cookie-btn-save {
    background: var(--w24-secondary);
    color: var(--w24-white);
    min-width: 200px;
}

.w24-cookie-btn-save:hover {
    background: var(--w24-secondary-dark);
}

/* Cookie Settings Link (Footer) */
.w24-cookie-settings-link {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.w24-cookie-settings-link:hover {
    color: var(--w24-accent);
}

/* Responsive */
@media (max-width: 640px) {
    .w24-cookie-banner-inner {
        padding: var(--w24-space-6);
        max-height: 95vh;
    }

    .w24-cookie-content {
        flex-direction: column;
        gap: var(--w24-space-4);
    }

    .w24-cookie-icon {
        width: 40px;
        height: 40px;
    }

    .w24-cookie-icon svg {
        width: 20px;
        height: 20px;
    }

    .w24-cookie-actions {
        flex-direction: column;
    }

    .w24-cookie-btn {
        width: 100%;
    }

    .w24-cookie-category-desc {
        padding-left: 0;
        margin-top: var(--w24-space-2);
    }
}

@media print {
    .w24-cookie-banner {
        display: none !important;
    }
}
