.popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.popup__content {
    max-width: 420px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.popup__title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.popup__text {
    margin-bottom: 24px;
    color: #525252;
    line-height: 1.4;
}

.popup__close {
    cursor: pointer;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
}

.popup__close img {
    width: 100%;
    height: 100%;
}

.popup__content .btn {
    margin-left: auto;
    margin-right: auto;
}