.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 9999;
    pointer-events: none;
}

.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    max-width: 100%;
    width: 100%;
    max-height: 90vh;
    background-color: #ffffff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    font-family: "Lato", sans-serif;
    transform: none;
    top: auto;
    overflow-y: auto;
    pointer-events: auto;
}

.cookie-popup .popup__body {
    padding: 30px;
    padding-bottom: 40px;
}

.cookie-popup__content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

.cookie-popup__content p span {
    font-weight: 500;
    color: #d4a373;
}

.cookie-popup__content .btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    margin-right: 10px;
}

.cookie-popup__content .btn-default {
    background-color: #f5f5f5;
    color: #333333;
    border-color: #dddddd;
}

.cookie-popup__content .btn-default.btn-hover-dark:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

.cookie-popup__content .btn-hover-brand {
    background-color: #d4a373;
    color: #ffffff;
    border-color: #d4a373;
}

.cookie-popup__content .btn-hover-brand:hover {
    background-color: #b8895e;
    border-color: #b8895e;
}

/* Адаптив для мобильных устройств */
@media (max-width: 576px) {
    .cookie-popup {
        max-height: 80vh;
        border-radius: 12px 12px 0 0;
    }

    .cookie-popup .popup__body {
        padding: 20px;
        padding-bottom: 30px;
        padding-bottom: max(30px, env(safe-area-inset-bottom, 30px));
    }

    .cookie-popup__content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cookie-popup__content .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .cookie-popup__content .btn:last-child {
        margin-bottom: 0;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 380px) {
    .cookie-popup {
        max-height: 85vh;
    }

    .cookie-popup .popup__body {
        padding: 15px;
        padding-bottom: 25px;
        padding-bottom: max(25px, env(safe-area-inset-bottom, 25px));
    }

    .cookie-popup__content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .cookie-popup__content .btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}