/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.97);
    color: white;
    padding: 1.2rem 2rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    animation: slideUpCookie 0.5s ease forwards;
    font-size: 0.92rem;
    line-height: 1.5;
}

@keyframes slideUpCookie {
    to {
        transform: translateY(0);
    }
}

.cookie-banner.hidden {
    animation: slideDownCookie 0.4s ease forwards;
}

@keyframes slideDownCookie {
    to {
        transform: translateY(100%);
    }
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner a {
    color: var(--color-accent, #c9a84c);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--color-accent, #c9a84c);
    color: #0a192f;
}

.cookie-btn-accept:hover {
    background: #d4b35a;
    transform: scale(1.03);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    border-color: white;
    color: white;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .cookie-banner p {
        min-width: unset;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}