/*-- -------------------------- -->
<---       Cookie Banner         -->
<--- -------------------------- -*/

#cookie-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #0d100c;
    border-top: 1px solid #2A3022;
    padding: 1rem;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

#cookie-banner.is-visible {
    display: block;
}

.cookie-banner-inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.875rem;
    color: #C7CCC2;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #3B82F6;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #6ea1f9;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-actions button {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.7rem 1.25rem;
    border-radius: 0.375rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cookie-banner-accept {
    background-color: #3B82F6;
    color: #fff;
}

.cookie-banner-accept:hover {
    background-color: #1e40af;
}

.cookie-banner-decline {
    background-color: transparent;
    color: #C7CCC2;
    border: 1px solid #2A3022;
}

.cookie-banner-decline:hover {
    border-color: #3B82F6;
    color: #F4F6F2;
}

@media only screen and (max-width: 46rem) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner-actions button {
        flex: 1;
    }
}
