/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    min-width: 280px;
}
.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.cookie-text a {
    color: var(--white);
    text-decoration: underline;
}
.cookie-text a:hover {
    color: rgba(255,255,255,0.7);
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.cookie-accept {
    background: #27ae60;
    color: white;
}
.cookie-accept:hover {
    background: #219a52;
}
.cookie-essential {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}
.cookie-essential:hover {
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
