.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background-color: #111111;
    color: #ffffff;
    padding: 1.2rem 4vw;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    font-family: 'Chivo', sans-serif;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-text {
    margin: 0;
    max-width: 60ch;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #2AFF00;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Chivo', sans-serif;
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
    padding: 0.7em 1.6em;
    border: 2px solid #ffffff;
    cursor: pointer;
    background-color: transparent;
    color: #ffffff;
}

.cookie-btn-accept {
    background-color: #2AFF00;
    border-color: #2AFF00;
    color: #111111;
}

.cookie-btn:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 5vw;
    }

    .cookie-banner-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
