/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 02 2026 | 11:03:59 */
.custom-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 999999;           /* vrlo visoko da pređe preko Elementor overlay-a */
    
    /* Centriranje – najpouzdaniji način */
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 20px;
    box-sizing: border-box;
}

.popup-inner {
    background: white;
    max-width: 960px;
    width: 92%;
    max-height: 90vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    position: relative;
    display: flex;
    flex-direction: row;
}

.popup-image {
    flex: 1;
    min-width: 0;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-text {
    flex: 1;
    padding: 32px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 36px;
    font-weight: bold;
    color: #222;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.popup-close:hover {
    color: #000;
}

@media (max-width: 767px) {
    .popup-inner {
        flex-direction: column;
        width: 94%;
        max-height: 88vh;
    }
    .popup-image {
        height: 160px;
    }
    .popup-text {
        padding: 20px;
    }
    .popup-close {
        font-size: 30px;
        top: 12px;
        right: 16px;
    }
}