/* Trigger image */
.epa-popup-trigger {
    cursor: pointer;
    display: inline-block;
}

.epa-trigger-image {
    transition: opacity 0.2s ease;
    max-width: 100%;
    height: auto;
}

.epa-trigger-image:hover {
    opacity: 0.85;
}

/* Overlay */
.epa-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Container */
.epa-popup-container {
    background: #fff;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Close button */
.epa-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    z-index: 10;
    line-height: 1;
    padding: 5px;
}

.epa-popup-close:hover {
    color: #000;
}

/* Content layout */
.epa-popup-content {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.epa-popup-image {
    flex: 1;
    min-width: 0;
}

.epa-popup-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.epa-popup-form {
    flex: 1;
    min-width: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .epa-popup-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .epa-popup-container {
        max-width: 100%;
    }
}
