/* ===== Cookie consent banner ===== */
#consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: #0d0d0d;
    border-top: 1px solid #ff4d00;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#consent-banner.is-visible {
    transform: translateY(0);
}

#consent-banner .consent-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#consent-banner p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    flex: 1 1 420px;
}

#consent-banner a {
    color: #ff4d00;
    text-decoration: underline;
}

#consent-banner .consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#consent-banner button {
    border: none;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    line-height: 1;
}

#consent-accept {
    background-color: #ff4d00;
    color: #000;
}

#consent-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

#cookie-settings-link {
    color: #999;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    #consent-banner .consent-inner {
        flex-direction: column;
        align-items: stretch;
    }
    #consent-banner .consent-actions {
        justify-content: stretch;
    }
    #consent-banner button {
        flex: 1;
    }
}