.vero-popup-showcase {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}
.vero-popup-trigger {
    cursor: pointer;
    text-align: center;
}
.vero-popup-trigger img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.vero-title {
    margin-top: 12px;
    font-weight: bold;
    font-size: 1.2em;
}
.vero-short-text {
    margin-top: 6px;
    font-size: 1em;
    /* margin-ը կգրվի Elementor-ի կողմից, եթե կարգավորիչը օգտագործվի */
}
.vero-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.4);
}
.vero-popup-box {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    max-width: 700px;
    width: 90vw;
    padding: 32px 24px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.vero-popup-box.open { opacity: 1; }
.vero-anim-fade { }
.vero-popup-box.vero-anim-fade { transition-property: opacity; }
.vero-popup-box.vero-anim-fade.open { opacity: 1; }
.vero-anim-slide { transform: translate(-50%, -40%); }
.vero-popup-box.vero-anim-slide { transition-property: opacity, transform; }
.vero-popup-box.vero-anim-slide.open { opacity: 1; transform: translate(-50%, -50%); }
.vero-anim-zoom { transform: translate(-50%, -50%) scale(0.8); }
.vero-popup-box.vero-anim-zoom { transition-property: opacity, transform; }
.vero-popup-box.vero-anim-zoom.open { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.vero-popup-close {
    cursor: pointer;
    color: #888;
    z-index: 2;
    display: block;
    transition: background 0.2s, color 0.2s;
}
.vero-popup-close.inside {
    position: absolute;
    right: 18px; top: 12px;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.vero-popup-close.outside {
    position: absolute;
    right: -30px; top: -30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 8px;
}
.vero-popup-close:hover {
    background: #f2f2f2;
    color: inherit; /* Elementor-ի կարգավորիչը կգրի color-ը */
}
.vero-popup-content {
    width: 100%;
}
.vero-popup-body {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}
.vero-popup-body img {
    max-width: 260px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.vero-popup-texts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    flex: 1;
}
.vero-popup-texts .vero-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 8px;
}
.vero-popup-texts .vero-short-text {
    font-size: 1em;
    margin-bottom: 8px;
    /* margin-ը կգրվի Elementor-ի կողմից, եթե կարգավորիչը օգտագործվի */
}
.vero-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 12px 0;
    width: 100%;
}
.vero-long-text {
    font-size: 1em;
    line-height: 1.7;
}
@media (max-width: 700px) {
    .vero-popup-box {
        padding: 18px 8px;
        max-width: 98vw;
    }
    .vero-popup-body {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .vero-popup-body img {
        max-width: 100%;
    }
    .vero-popup-texts {
        width: 100%;
    }
    .vero-popup-close.outside {
        right: 0;
        top: -40px;
    }
}

.e-font-icon-svg {
    width: 16px;
}

.vero-popup-img {
    max-width: 300px !important;
}