/* ============================================
   GDPR Cookie Consent Banner
   ============================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.92);
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-consent-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-consent-banner__text {
    margin: 0;
    flex: 1 1 0;
    min-width: 250px;
    color: #ccc;
}

.cookie-consent-banner__link {
    color: #23BB70;
    text-decoration: underline;
}

    .cookie-consent-banner__link:hover,
    .cookie-consent-banner__link:focus {
        color: #2ed88a;
    }

.cookie-consent-banner__btn {
    display: inline-block;
    background-color: #23BB70;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 0.6em 2em;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

    .cookie-consent-banner__btn:hover,
    .cookie-consent-banner__btn:focus {
        background-color: #1da060;
    }

@media all and (max-width: 480px) {
    .cookie-consent-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-banner__btn {
        width: 100%;
    }
}