/* =====================================================
   CLC Cookie Consent Banner
   ===================================================== */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #2b2c40;
    color: #d4d5de;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent-banner.cookie-consent-show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-banner.cookie-consent-hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.cookie-consent-text strong {
    color: #fff;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.2rem;
}

.cookie-consent-text p {
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
    color: #a8aab4;
}

.cookie-consent-icon {
    font-size: 1.75rem;
    color: #696cff;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    min-width: 80px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive: stack on small screens */
@media (max-width: 576px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .cookie-consent-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-actions .btn {
        flex: 1;
    }
}
