/* Попап – центрирование */
.popup-info {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;          /* выше затемнения (1007) */
    pointer-events: none;    /* чтобы не мешать, пока скрыт */
}
.popup-info.active {
    display: flex;
    pointer-events: auto;    /* активируем клики по содержимому */
}
.popup-info-content {
    background: #ffffff;
    padding: 60px 16px 50px 20px;
    max-width: 500px;
    width: 360px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}
.popup-info-content::after {
    content: '';
    position: absolute;
    width: 274px;
    height: 6px;
    background: var(--color-y);
    left: 0;
    top: 44px;
}
.popup-info-close {
    position: absolute;
    top: 20px;
    right: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.popup-info-close:hover {
    opacity: 1;
}
.popup-info-close img {
    width: 48px;
    height: 48px;
}
.popup-info-text p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    text-align: left;
}
.popup-info-text p:first-child {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 20px;
}