/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 9998;
    pointer-events: none;
}

.cookie-banner__inner {
    pointer-events: auto;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    animation: cookie-slide-up 0.3s ease;
}

@keyframes cookie-slide-up {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner__text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.cookie-banner__text i {
    color: #00AAFF;
    font-size: 20px;
    flex-shrink: 0;
}

.cookie-banner__link {
    color: #00AAFF;
    text-decoration: underline;
    white-space: nowrap;
    margin-left: 4px;
}

.cookie-banner__link:hover {
    color: #0088cc;
}

.cookie-banner__btn {
    background: #00AAFF;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-banner__btn:hover {
    background: #0088cc;
}

.cookie-banner__btn:active {
    transform: scale(0.98);
}

/* Мобильная версия */
@media (max-width: 576px) {
    .cookie-banner {
        bottom: 76px; /* над мобильной навигацией */
        left: 8px;
        right: 8px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
        gap: 12px;
    }

    .cookie-banner__btn {
        width: 100%;
        padding: 12px;
    }
}

.cookie-banner__btn--secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #d0d0d0;
}

.cookie-banner__btn--secondary:hover {
    background: #f5f5f5;
    border-color: #b0b0b0;
}

@media (max-width: 576px) {
    .cookie-banner__actions {
        display: flex;
        flex-direction: column-reverse;
        gap: 8px;
    }
}