.site-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    box-sizing: border-box;
    padding: 14px 18px;
    background: #1d2e38;
    color: #f4f6f8;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
}

.site-cookie-bar.is-hidden {
    display: none !important;
}

.site-cookie-bar__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-cookie-bar__text {
    flex: 1 1 280px;
    min-width: 0;
}

.site-cookie-bar__title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.site-cookie-bar__desc {
    margin: 0;
    color: #d5dde3;
}

.site-cookie-bar__link {
    color: #9fd4ff;
    text-decoration: underline;
}

.site-cookie-bar__link:hover,
.site-cookie-bar__link:focus {
    color: #cfe9ff;
}

.site-cookie-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
}

.site-cookie-bar__btn {
    cursor: pointer;
    border-radius: 4px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.site-cookie-bar__btn--primary {
    background: #253b48;
    color: #fff;
    border-color: #3a5566;
}

.site-cookie-bar__btn--primary:hover,
.site-cookie-bar__btn--primary:focus {
    background: #314c5c;
}

.site-cookie-bar__btn--secondary {
    background: #e8e8e8;
    color: #333;
    border-color: #ccc;
}

.site-cookie-bar__btn--secondary:hover,
.site-cookie-bar__btn--secondary:focus {
    background: #f5f5f5;
}

@media (max-width: 600px) {
    .site-cookie-bar__actions {
        width: 100%;
        justify-content: stretch;
    }

    .site-cookie-bar__btn {
        flex: 1 1 auto;
    }
}
