#consent-banner[hidden] {
    display: none;
}

.consent-banner__box {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    width: 360px;
    max-width: calc(100vw - 2rem);
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.consent-banner__text {
    color: #000;
    font-size: 0.85rem;
    text-align: left;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.02em;
}

.consent-banner__text a {
    color: #000;
    text-decoration: underline;
}

.consent-banner__actions {
    display: flex;
    gap: 0.5rem;
}

.consent-banner__btn {
    flex: 1;
    padding: 0.5rem 0.75rem;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    cursor: pointer;
}

.consent-banner__btn[data-consent="accept"] {
    background: #000;
    color: #fff;
}

.consent-banner__btn:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.consent-reopen {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 480px) {
    .consent-banner__box {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
}
