.welcome-pt-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0,0,0,.5);
    z-index: 8000;
    transition: all 0.3s;
}

.welcome-pt-message {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    max-width: 500px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8001;
    box-shadow:
        0 11px 15px -7px rgb(0 0 0 / 20%),
        0 24px 38px 3px rgb(0 0 0 / 14%),
        0 9px 46px 8px rgb(0 0 0 / 12%);
    text-align: center;
    padding: 30px;
    margin: 16px 0;
    border-radius: 6px;
    background-color: #fff6e9; /* новый фон */
    box-sizing: border-box;
    transition: all 0.3s;
}

@media (max-width: 532px) {
    .welcome-pt-message {
        width: auto;
        left: 16px;
        right: 16px;
        transform: translate(0, -50%);
    }
}

.is-active.welcome-pt-overlay,
.is-active .welcome-pt-message {
    opacity: 1;
    visibility: visible;
}

/* Заголовок — Bold */
.site-form-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 40px;
    font-weight: 600; /* bold */
    color: #cd6958;
    font-family: 'Nezagorami', sans-serif;
}

/* Текст — Semibold */
.site-form-text {
    font-size: 26px;
    line-height: 26px;
    margin-top: 0;
    font-weight: 500; /* semibold */
    color: #3d424b;
    font-family: 'Nezagorami', sans-serif;
}



.site-form-buttons {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* Кнопка */
.welcome-pt-close {
    height: 50px;
    line-height: 50px;
    min-width: 180px;
    padding: 0 32px;
    border: none;
    font-size: 16px;
    white-space: nowrap;
    color: #fff6e9 !important;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    background-color: #cd6958; /* основной акцент */
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .02em;
    box-sizing: border-box;
    text-align: center;

    box-shadow:
        0 3px 1px -2px rgb(0 0 0 / 20%),
        0 2px 2px 0 rgb(0 0 0 / 14%),
        0 1px 5px 0 rgb(0 0 0 / 12%);
}

/* Ховер кнопки — чуть темнее */
.welcome-pt-close:hover {
    background-color: #b85d4e;
}
