/* Exit Intent Popup Styles */
#exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

#exit-popup-overlay.active {
    display: flex;
}

.exit-popup-container {
    position: relative;
    background: #2b4a7c;
    border-radius: 12px;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-popup-logo {
    padding: 25px 30px 0 30px;
}

.exit-popup-logo img {
    height: 40px;
    width: auto;
}

.exit-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    padding: 0;
    width: 48px;
    height: 48px;
    z-index: 10;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.exit-popup-close:hover {
    transform: scale(1.25);
    opacity: 0.8;
}

.exit-popup-content {
    padding: 25px 30px 30px 30px;
    color: white;
}

.exit-popup-content h2 {
    margin: 0 0 18px 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: white;
}

.exit-popup-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 400;
    color: white;
}

/* Contact Form 7 w popupie */
.exit-popup-cf7-form {
    margin-top: 0;
}

.exit-popup-content .wpcf7-form {
    margin: 0;
}

.exit-popup-content .wpcf7-form > p {
    margin: 0;
}

/* Pierwszy paragraph - pola w rzędzie */
.exit-popup-content .wpcf7-form > p:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* CF7 wrapper spans - muszą być grid items */
.exit-popup-content .wpcf7-form > p:first-child .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Drugi paragraph - checkbox */
.exit-popup-content .wpcf7-form > p:nth-child(2) {
    display: block;
    margin-bottom: 10px;
}

/* Pola input CF7 */
.exit-popup-input,
.exit-popup-content input[type="text"],
.exit-popup-content input[type="tel"],
.exit-popup-content input[type="email"],
.exit-popup-content .wpcf7-form-control.wpcf7-text,
.exit-popup-content .wpcf7-form-control.wpcf7-tel {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    margin: 15px 0px 15px 0px;
}

/* Przycisk wyślij CF7 */
.exit-popup-button,
.exit-popup-content input[type="submit"],
.exit-popup-content .wpcf7-submit {
    background: #1a7cc7;
    color: white;
    border: none;
    padding: 14px 50px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.exit-popup-button:hover,
.exit-popup-content input[type="submit"]:hover,
.exit-popup-content .wpcf7-submit:hover {
    background: #1565a8;
    transform: translateY(-1px);
}

.exit-popup-button:disabled,
.exit-popup-content input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Checkbox zgody CF7 */
.exit-popup-content .wpcf7-acceptance {
    color: white;
    font-size: 13px;
    line-height: 1.5;
}

.exit-popup-content .wpcf7-acceptance input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: middle;
}

.exit-popup-content .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    display: inline;
}

.exit-popup-content .wpcf7-acceptance .wpcf7-list-item-label {
    color: white;
    cursor: pointer;
    display: inline;
}

/* Komunikaty CF7 */
.exit-popup-content .wpcf7-response-output {
    text-align: center;
    margin: 15px 0 0 0;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    border-radius: 6px;
    border: none !important;
}

.exit-popup-content .wpcf7-mail-sent-ok {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.15);
}

.exit-popup-content .wpcf7-validation-errors,
.exit-popup-content .wpcf7-mail-sent-ng {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
}

/* Błędy walidacji CF7 */
.exit-popup-content .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Spinner CF7 */
.exit-popup-content .wpcf7-spinner {
    margin-left: 10px;
}

/* Tablet - średnie urządzenia */
@media (max-width: 768px) {
    .exit-popup-container {
        width: 92%;
        max-width: 92%;
    }
    
    .exit-popup-content h2 {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .exit-popup-content .wpcf7-form > p:first-child {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .exit-popup-content .wpcf7-form > p:first-child .wpcf7-submit {
        grid-column: 1 / -1;
    }
    
    .exit-popup-input,
    .exit-popup-content input[type="text"],
    .exit-popup-content input[type="tel"],
    .exit-popup-content .wpcf7-form-control.wpcf7-text,
    .exit-popup-content .wpcf7-form-control.wpcf7-tel {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .exit-popup-button,
    .exit-popup-content .wpcf7-submit {
        width: 100%;
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .exit-popup-close {
        font-size: 44px;
        width: 44px;
        height: 44px;
    }
}

/* Mobile - małe urządzenia */
@media (max-width: 640px) {
    .exit-popup-container {
        width: 95%;
        max-width: 95%;
    }
    
    .exit-popup-logo {
        padding: 20px 20px 0 20px;
    }
    
    .exit-popup-logo img {
        height: 32px;
    }
    
    .exit-popup-close {
        font-size: 40px;
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .exit-popup-content {
        padding: 18px 20px 25px 20px;
    }
    
    .exit-popup-content h2 {
        font-size: 17px;
        margin-bottom: 14px;
        line-height: 1.4;
    }
    
    /* Pola CF7 pionowo na mobile */
    .exit-popup-content .wpcf7-form > p:first-child {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .exit-popup-input,
    .exit-popup-content input[type="text"],
    .exit-popup-content input[type="tel"],
    .exit-popup-content .wpcf7-form-control.wpcf7-text,
    .exit-popup-content .wpcf7-form-control.wpcf7-tel {
        width: 100%;
        padding: 13px 15px;
        font-size: 15px;
    }
    
    .exit-popup-button,
    .exit-popup-content .wpcf7-submit {
        width: 100%;
        padding: 13px 20px;
        font-size: 15px;
    }
    
    .exit-popup-content .wpcf7-acceptance {
        font-size: 12px;
    }
}