.wgl-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wgl-popup.active {
    display: flex;
    opacity: 1;
}

.wgl-popup-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: auto;
    background: #fff;
    padding: 25px 20px 20px;
    border-radius: 8px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.wgl-popup.active .wgl-popup-content {
    transform: translateY(0);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.popup-close-btn:hover {
    color: #ff7e00;
    transform: rotate(90deg);
}

/* Contact Form 7 Styles */
.wgl-popup-content h3 {
    font-size: 20px;
    margin: 0 0 20px;
    text-align: center;
    padding-right: 20px;
}

.wgl-popup-content .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wgl-popup-content label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.wgl-popup-content .wpcf7-form-control-wrap {
    display: block;
}

.wgl-popup-content input[type="text"],
.wgl-popup-content input[type="tel"],
.wgl-popup-content input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 40px;
    font-size: 14px;
}

.wgl-popup-content textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 80px;
    font-size: 14px;
    resize: none;
}

.wgl-popup-content .wpcf7-submit {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
    width: 100%;
    margin-top: 5px;
}

.wgl-popup-content .wpcf7-submit:hover {
    background: #ff7e00;
}

/* Убираем лишние отступы */
.wgl-popup-content br {
    display: none;
}

/* Стилизуем сообщение об успешной отправке */
.wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 8px !important;
    font-size: 13px;
    text-align: center;
    border-radius: 4px;
    border-width: 1px !important;
}

/* Спиннер загрузки */
.wpcf7-spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    margin: 0 !important;
}

/* Адаптивность */
@media (max-width: 480px) {
    .wgl-popup-content {
        padding: 20px 15px 15px;
        margin: 15px;
    }
    
    .wgl-popup-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .wgl-popup-content input[type="text"],
    .wgl-popup-content input[type="tel"],
    .wgl-popup-content input[type="email"],
    .wgl-popup-content textarea {
        font-size: 14px;
    }

    .wgl-popup-content .wpcf7-submit {
        height: 38px;
        font-size: 14px;
    }
} 