﻿.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #1e1e2a;
    color: #ddd;
    border-top: 1px solid rgba(201, 160, 61, 0.4);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
    padding: 1rem 1.25rem;
    display: none; /* shown via JS only when no prior consent is recorded */
}

    .cookie-consent-banner.show {
        display: block;
        animation: cookieSlideUp 0.35s ease-out;
    }

.cookie-consent-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-text {
    margin: 0;
    flex: 1 1 480px;
    font-size: 0.9rem;
    line-height: 1.5;
}

    .cookie-consent-text a {
        color: #c9a03d;
        text-decoration: underline;
    }

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex: 0 0 auto;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
