.gift-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    /* Убрали display: flex !important, чтобы работало скрытие */
}

.gift-popup-content {
    background: #fff;
    width: 100%;
    max-width: 400px;
    height: auto !important;
    max-height: 90vh;
    border-radius: 8px;

    /* Новое жесткое центрирование по экрану */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gift-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.gift-popup-close:hover {
    color: #333;
}

.gift-popup-header {
    width: 100%;
    min-height: 120px;
    /* Минимальная высота, если картинка сломалась */
    background-color: #f4f6f9;
    /* Светлый фон как заглушка */
    text-align: center;
}

.gift-popup-image {
    width: 100%;
    height: auto !important;
    max-height: 250px;
    /* Не даем картинке стать огромной */
    object-fit: cover;
    /* Красиво обрезает, сохраняя пропорции */
    display: block;
}

.gift-popup-body {
    padding: 20px 30px 30px;
}

.gift-popup-title {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin: 0 0 10px 0;
    line-height: 1.3;
    text-align: left;
}

.gift-popup-text {
    font-size: 14px;
    color: #555;
    margin: 0 0 20px 0;
    text-align: left;
}

.gift-popup-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 14px;
    outline: none;
}

.gift-popup-input:focus {
    border-color: #5c84ebf2;
}

.gift-popup-btn {
    width: 100%;
    background-color: #5c84eb;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.gift-popup-btn:hover {
    background-color: #5c84ebf2;
}

.gift-popup-disclaimer {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

.gift-popup-disclaimer a {
    color: #666;
    text-decoration: underline;
}