    /* ============================================
       COOKIE CONSENT - СТИЛЬ САЙТА
       ============================================ */

    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        background: #282624;
        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cookie-consent.show {
        transform: translateY(0);
    }

    .cookie-consent__container {
        max-width: 1560px;
        margin: 0 auto;
        padding: 20px 20px;
    }

    .cookie-consent__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .cookie-consent__text {
        flex: 1;
        min-width: 280px;
    }

    .cookie-consent__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 130%;
        color: #FFFFFF;
        margin: 0 0 8px 0;
    }

    .cookie-consent__description {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 145%;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    .cookie-consent__link {
        color: #F3BF82;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .cookie-consent__link:hover {
        opacity: 0.8;
        text-decoration: underline;
    }

    .cookie-consent__buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .cookie-consent__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        border-radius: 12px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 145%;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .cookie-consent__btn--accept {
        background: #F3BF82;
        color: #282624;
    }

    .cookie-consent__btn--accept:hover {
        transform: translateY(-2px);
        background: #E5A550;
        box-shadow: 0 4px 12px rgba(243, 191, 130, 0.3);
    }

    .cookie-consent__btn--settings {
        background: rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
    }

    .cookie-consent__btn--settings:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .cookie-consent__btn--accept-all {
        background: #F3BF82;
        color: #282624;
    }

    .cookie-consent__btn--accept-all:hover {
        transform: translateY(-2px);
        background: #E5A550;
        box-shadow: 0 4px 12px rgba(243, 191, 130, 0.3);
    }

    /* ============================================
       МОДАЛЬНОЕ ОКНО НАСТРОЕК COOKIE
       ============================================ */

    .cookie-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
        visibility: hidden;
    }

    .cookie-modal.show {
        visibility: visible;
    }

    .cookie-modal__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .cookie-modal.show .cookie-modal__overlay {
        opacity: 1;
    }

    .cookie-modal__container {
        position: relative;
        width: 90%;
        max-width: 500px;
        background: #FFFFFF;
        border-radius: 24px;
        overflow: hidden;
        transform: scale(0.9);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .cookie-modal.show .cookie-modal__container {
        transform: scale(1);
        opacity: 1;
    }

    .cookie-modal__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid #E0E0E0;
    }

    .cookie-modal__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 22px;
        line-height: 120%;
        color: #282624;
        margin: 0;
    }

    .cookie-modal__close {
        width: 32px;
        height: 32px;
        background: #F6F5F3;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #92918F;
        transition: all 0.3s ease;
    }

    .cookie-modal__close:hover {
        background: #E2E1DF;
        color: #282624;
        transform: rotate(90deg);
    }

    .cookie-modal__body {
        padding: 24px;
        max-height: 400px;
        overflow-y: auto;
    }

    .cookie-setting {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #F6F5F3;
    }

    .cookie-setting:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .cookie-setting__header {
        margin-bottom: 8px;
    }

    .cookie-setting__label {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        user-select: none;
    }

    .cookie-setting__checkbox {
        display: none;
    }

    .cookie-setting__toggle {
        position: relative;
        width: 44px;
        height: 24px;
        background: #E2E1DF;
        border-radius: 12px;
        transition: background 0.3s ease;
    }

    .cookie-setting__toggle::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: #FFFFFF;
        border-radius: 50%;
        transition: transform 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .cookie-setting__checkbox:checked + .cookie-setting__toggle {
        background: #F3BF82;
    }

    .cookie-setting__checkbox:checked + .cookie-setting__toggle::after {
        transform: translateX(20px);
    }

    .cookie-setting__checkbox:disabled + .cookie-setting__toggle {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .cookie-setting__name {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 145%;
        color: #282624;
    }

    .cookie-setting__description {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 145%;
        color: #92918F;
        margin: 8px 0 0 56px;
    }

    .cookie-modal__footer {
        display: flex;
        gap: 15px;
        padding: 20px 24px;
        border-top: 1px solid #E0E0E0;
    }

    .cookie-modal__footer .cookie-consent__btn {
        flex: 1;
    }

    /* ============================================
       АДАПТИВНОСТЬ
       ============================================ */

    @media (max-width: 768px) {
        .cookie-consent__content {
            flex-direction: column;
            text-align: center;
        }

        .cookie-consent__buttons {
            justify-content: center;
            width: 100%;
        }

        .cookie-consent__btn {
            flex: 1;
            padding: 10px 20px;
        }

        .cookie-modal__container {
            width: 95%;
        }

        .cookie-modal__header {
            padding: 16px 20px;
        }

        .cookie-modal__title {
            font-size: 20px;
        }

        .cookie-modal__body {
            padding: 20px;
        }

        .cookie-modal__footer {
            flex-direction: column;
            padding: 16px 20px;
        }

        .cookie-setting__description {
            margin-left: 0;
        }
    }

    @media (max-width: 576px) {
        .cookie-consent__container {
            padding: 15px;
        }

        .cookie-consent__title {
            font-size: 18px;
        }

        .cookie-consent__description {
            font-size: 12px;
        }

        .cookie-consent__btn {
            font-size: 13px;
            padding: 8px 16px;
        }

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

        .cookie-setting__description {
            font-size: 12px;
        }
    }

    /* ============================================
       АНИМАЦИИ
       ============================================ */

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .cookie-consent.show {
        animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
