/* Баннер об использовании файлов cookie */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 12px 16px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 18px rgba(31, 31, 31, 0.08);
    transform: translateY(100%);
    transition: transform .3s ease;
}

.cookie-banner--visible {
    transform: translateY(0);
}

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

.cookie-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4a5565;
}

.cookie-banner__link {
    color: var(--bs-primary, #0074ba);
    text-decoration: underline;
}

.cookie-banner__link:hover {
    text-decoration: none;
}

.cookie-banner__accept {
    flex-shrink: 0;
    padding: 9px 26px;
    border: 0;
    border-radius: 6px;
    background: var(--bs-primary, #0074ba);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: opacity .2s ease;
}

.cookie-banner__accept:hover {
    opacity: .85;
}

@media (max-width: 767px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-banner__accept {
        width: 100%;
    }
}
