/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 720px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    z-index: 99999;
    padding: 20px;
    animation: slideUp .45s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 900;
    color: #111827;
}

.cookie-text p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-actions button {
    border: none;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s ease;
    font-size: 0.9rem;
}

#acceptCookies {
    background: linear-gradient(135deg,#00e5ff,#00ff99,#ffb300);
    color: black;
}

#declineCookies {
    background: rgba(17,24,39,.08);
    color: #111827;
}

.cookie-actions button:hover {
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 20px);
        padding: 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions button {
        width: 100%;
    }
}