.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FDF7ED;
    padding: 40px 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.popup-container h2 {
    font-size: 21px;
    margin: 0 !important;
    text-align: center;
    line-height: 120%;

    color: #503629;
}

.popup-text {
    background: #fff;

    padding: 30px;
}

.popup-text p {
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 0px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;

    padding: 10px;
}


.popup-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 45px;
    background: url(https://old.dailydose.com.ua/wp-content/uploads/2023/07/head-banned-btn-bg.svg) no-repeat;
    color: var(--main-base-color);
    font-size: 24px;
    font-family: 'DDO';
    line-height: 100%;
    text-decoration: none;
    background-size: contain;
    background-position: center;
    padding: 10px 32px;

    position: absolute;
}

.popup-button {
    bottom: 60px;
    left: 60px;
}

.popup-button:hover, .popup-button:active {
    color: #fff;
}


@media (max-width: 767px) {
    .popup-container {
        padding: 40px 30px;
    }

    .popup-button {
        bottom: 84px;
        left: 25px;

        font-size: 18px;

        background-size: cover;
        padding: 20px 60px;
    }
}
