/* === ARCADEMANAGER - PROFESSIONAL & FRIENDLY DESIGN === */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professionelle Farbpalette - Hell & Freundlich */
    --primary-900: #2C3E50;    /* Dunkles Blaugrau für Text */
    --primary-800: #34495E;    /* Dunkel */
    --primary-700: #3D3935;    /* Original-Hauptfarbe (etwas aufgehellt verwendet) */
    --primary-600: #546E7A;    /* Medium */
    --primary-500: #78909C;    /* Mittel */
    --primary-400: #90A4AE;    /* Hell */
    --primary-300: #B0BEC5;    /* Sehr hell */
    --primary-200: #CFD8DC;    /* Background-Nuance */
    --primary-100: #ECEFF1;    /* Heller Hintergrund */

    /* Freundliche Akzentfarben - Professional Blue Theme */
    --accent-primary: #2196F3;      /* Professionelles Blau (statt Neon) */
    --accent-secondary: #00BCD4;    /* Cyan */
    --accent-success: #4CAF50;      /* Freundliches Grün */
    --accent-warning: #FF9800;      /* Orange */
    --accent-highlight: #FFC107;    /* Gold */

    /* Neutrale Farben */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --dark-gray: #424242;
    --black: #212121;

    /* Schriften */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-headings: 'Poppins', 'Inter', sans-serif;

    /* Spacing - Mehr Weißraum */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 128px;

    /* Schatten - Weicher */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Border Radius - Runder */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-900);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* === LOGO BADGE - Von oben herunterkommend === */
.logo-badge-wrapper {
    position: fixed;
    top: 0;
    left: 40px;
    z-index: 1001;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-logo-container {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    padding: 12px 40px 24px 40px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid var(--white);
    border-right: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
}

.navbar-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0.4;
    z-index: -1;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.navbar-logo-container:hover {
    transform: translateY(5px) scale(1.03);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.4);
}

.navbar-logo-container:hover::before {
    opacity: 0.6;
}

.navbar-logo {
    height: 130px;
    width: auto;
    transition: transform 0.3s ease;
    /* Keep original logo colors - no filter */
}

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

/* === NAVIGATION - Hell & Modern === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-spacer {
    width: 200px; /* Space where logo would have been */
}

/* === HAMBURGER MENU === */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.navbar-hamburger:hover {
    background: var(--accent-primary);
}

.navbar-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-900);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-hamburger:hover span {
    background: var(--white);
}

.navbar-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-menu {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
    align-items: center;
}

.navbar-menu > li {
    display: flex;
    align-items: center;
}

.navbar-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--primary-900);
    position: relative;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--accent-primary);
    background: rgba(33, 150, 243, 0.05);
}

/* Desktop: Mobile-Only Selektoren ausblenden */
.mobile-only-selector {
    display: none !important;
}

.navbar-menu a:hover::after {
    width: 60%;
}

/* === SUBMENU === */
.navbar-menu-item-with-submenu {
    position: relative;
}

.submenu-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.submenu-chevron {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.navbar-menu-item-with-submenu:hover .submenu-chevron {
    transform: rotate(180deg);
}

.navbar-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: var(--spacing-sm);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
    z-index: 100;
}

.navbar-menu-item-with-submenu:hover .navbar-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-submenu li {
    width: 100%;
}

.navbar-submenu a {
    display: block;
    padding: 12px 16px;
    color: var(--primary-900);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.navbar-submenu a::after {
    display: none;
}

.navbar-submenu a:hover {
    background: rgba(33, 150, 243, 0.1);
    color: var(--accent-primary);
    padding-left: 20px;
}

.navbar-country,
.navbar-lang {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-900);
    position: relative;
}

.navbar-country .fi,
.navbar-lang .fi {
    font-size: 18px;
    border-radius: 2px;
}

.navbar-country:hover,
.navbar-lang:hover {
    background: var(--accent-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* === HERO SECTION - Hell & Einladend === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 50%, #E3F2FD 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 188, 212, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    padding-top: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-left h1 {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--primary-900);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--primary-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.stat-highlight {
    color: var(--accent-success);
    font-weight: 700;
    font-size: 1.3em;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* === BUTTONS - Freundlich & Professional === */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-ghost {
    background: var(--white);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 16px 34px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: var(--accent-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* === HERO RIGHT === */
.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-500);
    border: 1px solid var(--gray);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--primary-600);
    font-size: 14px;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === TRUST BAR - Hell & Freundlich === */
.trust-bar {
    background: var(--white);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    box-shadow: var(--shadow-sm);
}

.trust-stats {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-headings);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--primary-600);
    font-size: 15px;
    font-weight: 500;
}

/* === SECTION COMMON === */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-900);
}

.section-subtitle {
    text-align: center;
    color: var(--primary-600);
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

/* === PRODUCT GRID - Cards mit mehr Weißraum === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: 48px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .card-glow {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 16px 48px rgba(33, 150, 243, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    font-size: 64px;
    transition: transform 0.3s ease;
}

.product-card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-900);
}

.card-description {
    color: var(--primary-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.card-features {
    list-style: none;
    margin-bottom: 28px;
}

.card-features li {
    color: var(--primary-700);
    margin-bottom: 10px;
    font-size: 14px;
    padding-left: 24px;
    position: relative;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-success);
    font-weight: 700;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

/* === VALUE PROPOSITIONS === */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.value-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-900);
}

.value-description {
    color: var(--primary-600);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.value-list {
    list-style: none;
    text-align: left;
    color: var(--primary-700);
}

.value-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.value-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.cta-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--accent-primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--off-white);
}

.cta-buttons .btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-ghost:hover {
    background: var(--white);
    color: var(--accent-primary);
}

/* === FOOTER === */
.footer {
    background: var(--primary-900);
    color: var(--primary-200);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    border-top: 4px solid var(--accent-primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--primary-300);
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    color: var(--primary-400);
    font-size: 14px;
}

.footer-logo {
    height: 40px;
    opacity: 0.8;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 80px;
        --spacing-lg: 48px;
    }

    /* Logo mobil - kleiner und zentriert */
    .logo-badge-wrapper {
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-logo-container {
        padding: 8px 24px 16px 24px;
    }

    .navbar-logo {
        height: 70px;
    }

    /* Navbar mobil */
    .navbar-spacer {
        display: none;
    }

    .navbar-hamburger {
        display: flex;
        order: -1;
    }

    .navbar .container {
        justify-content: space-between;
        padding: 0 var(--spacing-sm);
    }

    .navbar-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--gray);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 600px;
        opacity: 1;
        overflow-y: auto;
    }

    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray);
    }

    .navbar-menu li:last-child {
        border-bottom: none;
    }

    .navbar-menu a {
        display: block;
        padding: 16px;
        width: 100%;
        text-align: left;
    }

    .navbar-menu a::after {
        display: none;
    }

    /* Submenu mobil */
    .navbar-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--light-gray);
        box-shadow: none;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .navbar-menu-item-with-submenu.active .navbar-submenu {
        max-height: 400px;
        padding: var(--spacing-sm) 0;
    }

    .navbar-submenu a {
        padding-left: 32px;
        font-size: 13px;
    }

    .navbar-submenu a:hover {
        padding-left: 36px;
    }

    .submenu-trigger {
        justify-content: space-between;
        width: 100%;
    }

    .navbar-lang {
        margin-right: var(--spacing-sm);
    }

    /* Mobile Only Selectors - Sichtbar im Mobile Menu */
    .mobile-only-selector {
        display: block !important;
        border-top: 2px solid var(--accent-primary);
        margin-top: 16px;
        padding-top: 16px;
    }

    .mobile-selector-trigger {
        font-weight: 600;
        color: var(--accent-primary);
    }

    .mobile-submenu .fi {
        margin-right: 8px;
        font-size: 16px;
    }

    .active-mobile-item {
        background: rgba(33, 150, 243, 0.15) !important;
        color: var(--accent-primary) !important;
        font-weight: 600 !important;
    }

    /* Desktop Only Selectors - Ausgeblendet im Mobile */
    .desktop-only-selector {
        display: none !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 160px;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-right {
        height: 300px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

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

/* === COOKIE BANNER (DSGVO-KONFORM) === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent-primary);
    padding: var(--spacing-md);
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-header h3 {
    color: var(--primary-900);
    font-size: 22px;
    margin-bottom: 12px;
    font-family: var(--font-headings);
}

.cookie-header p {
    color: var(--primary-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.cookie-categories {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.cookie-category {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.cookie-category-header strong {
    color: var(--primary-900);
    font-size: 16px;
}

.cookie-badge {
    display: inline-block;
    background: var(--accent-success);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
}

.cookie-category-desc {
    color: var(--primary-600);
    font-size: 14px;
    line-height: 1.6;
    margin-left: 56px;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--accent-primary);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(22px);
}

.cookie-switch input:disabled + .cookie-slider {
    background-color: var(--accent-success);
    cursor: not-allowed;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: var(--spacing-md);
}

.cookie-btn-primary,
.cookie-btn-secondary {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    border: none;
}

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

.cookie-btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--primary-900);
    border: 1px solid var(--gray);
}

.cookie-btn-secondary:hover {
    background: var(--light-gray);
}

.cookie-footer {
    margin-top: var(--spacing-sm);
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--light-gray);
}

.cookie-footer a {
    color: var(--accent-primary);
    text-decoration: underline;
    font-size: 14px;
}

.cookie-footer a:hover {
    color: var(--accent-secondary);
}

/* === LANGUAGE & COUNTRY DROPDOWN === */
.lang-dropdown,
.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 200px;
    z-index: 1001;
    box-shadow: var(--shadow-md);
}

.lang-dropdown a,
.country-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--primary-900);
    transition: all 0.3s ease;
}

.lang-dropdown a .fi,
.country-dropdown a .fi {
    font-size: 18px;
    border-radius: 2px;
}

.lang-dropdown a:hover,
.country-dropdown a:hover {
    background: rgba(33, 150, 243, 0.08);
    color: var(--accent-primary);
}

.navbar-lang {
    position: relative;
}

.chevron {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.navbar-lang:hover .chevron {
    transform: translateY(2px);
}
