.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    padding: 16px 0;
}

.cookie-consent-banner.cookie-consent-hidden {
    display: none;
}

.cookie-consent-banner__inner {
    max-width: 990px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-consent-banner__text {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #333;
}

.cookie-consent-banner__text a {
    color: #337ab7;
    text-decoration: underline;
}

.cookie-consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-consent-btn {
    min-width: 110px;
}

.cookie-consent-btn--outline {
    background: transparent;
}

.cookie-consent-banner__checkbox {
    display: block;
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
}

.cookie-consent-banner__checkbox input {
    margin-right: 8px;
}

.cookie-consent-banner__settings.cookie-consent-hidden {
    display: none;
}

@media (max-width: 576px) {
    .cookie-consent-banner__actions {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}
