/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #000000, #B8860b);
    color: white;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    animation: slideUpFadeIn 0.8s ease-out forwards;
}

.cookie-banner span {
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    background-color: white;
    color: #B8860;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lexend', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-buttons button:hover {
    background-color: #b8950b;
    color: white;
}

@keyframes slideUpFadeIn {
    from {
        transform: translate(-50%, 40px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .cookie-banner {
        width: 90%;
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
        text-align: center;
    }
}