/* Баннер согласия на cookie - внизу страницы по центру */
.cookie-consent-banner {
    z-index: 9999;
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 650px;
    pointer-events: none;
}

.cookie-consent-banner__inner {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    padding: 0;
    pointer-events: auto;
}

.cookie-consent-banner__content {
    display: flex;
    gap: 8px;
    padding: 12px;
}

.cookie-consent-banner__text {
    flex: 1;
}

.cookie-consent-banner__text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    color: #333;
}

.cookie-consent-banner__link {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-consent-banner__link:hover {
    text-decoration: none;
}

.cookie-consent-banner__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.cookie-consent-banner__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    height: 36px;
    padding: 0 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
    transition: var(--transition);
}

.cookie-consent-banner__btn--accept {
    background: #0066cc;
    color: #fff;
}

.cookie-consent-banner__btn--accept:hover {
    background: #0052a3;
}

.cookie-consent-banner__btn--settings {
    background: #f5f5f5;
    color: #333;
}

.cookie-consent-banner__btn--settings:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-consent-banner__content {
        flex-direction: column;
    }

    .cookie-consent-banner__buttons {
        flex-direction: column;
    }

    .cookie-consent-banner__btn {
        width: 100%;
    }
}
