.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #fff;
    border-top: 1px solid #ededed;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

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

.cookie-banner__inner {
    max-width: 940px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__text {
    flex: 1;
    margin: 0;
}

.cookie-banner__text a {
    color: #005abb;
    text-decoration: none;
}

.cookie-banner__text a:hover {
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.cookie-banner__btn {
    padding: 10px 18px;
    font-size: 13px;
    line-height: 1.2;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    background: #f5f5f5;
    color: #333;
}

.cookie-banner__btn:hover {
    background: #ebebeb;
}

.cookie-banner__btn--primary {
    background: #005abb;
    border-color: #005abb;
    color: #fff;
}

.cookie-banner__btn--primary:hover {
    background: #004a9a;
    border-color: #004a9a;
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}
