/* --- COOKIE NOTICE (152-ФЗ) --- */

.cookie-notice {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1500;
    max-width: 720px;
    margin: 0 auto;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cookie-notice.cookie-notice_visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-notice__inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-notice__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8c5;
    border-radius: 50%;
}

.cookie-notice__icon svg {
    width: 22px;
    height: 22px;
}

.cookie-notice__body {
    flex: 1;
    min-width: 0;
}

.cookie-notice__title {
    margin: 0 0 4px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #2f2f2f;
}

.cookie-notice__text {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #4b4b4b;
}

.cookie-notice__text a {
    color: #2f2f2f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-notice__text a:hover {
    color: #161616;
}

.cookie-notice__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-notice__btn {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #2f2f2f;
    background: #ffeb59;
    border: 1px solid #ffeb59;
    border-radius: 30px;
    padding: 12px 22px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-notice__btn:hover {
    background: #ffe100;
    border-color: #ffe100;
}

.cookie-notice__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #2f2f2f;
    transition: background 0.2s ease;
}

.cookie-notice__close:hover {
    background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .cookie-notice__inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cookie-notice__icon {
        width: 32px;
        height: 32px;
    }

    .cookie-notice__icon svg {
        width: 18px;
        height: 18px;
    }

    .cookie-notice__title {
        font-size: 14px;
    }

    .cookie-notice__text {
        font-size: 12px;
        line-height: 1.4;
    }

    .cookie-notice__actions {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .cookie-notice__btn {
        flex: 1;
        padding: 11px 18px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-notice__icon {
        display: none;
    }
}

/* --- / COOKIE NOTICE --- */
