/* Упрощённая плашка уведомления о cookies */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background: rgba(44, 62, 80, 0.96);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.22);
    padding: 0.75rem 1rem;
}

.cookie-consent-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-banner__body {
    flex: 1 1 280px;
}

.cookie-consent-banner__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
}

.cookie-consent-banner__warning {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-consent-banner__link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-banner__link:hover {
    color: #d8ebff;
}

.cookie-consent-banner__actions {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-consent-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-banner__actions {
        width: 100%;
    }
}
