/* =============================== */
/* GALLERY MODAL                   */
/* =============================== */

.ezb-gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9000;
}

.ezb-gallery-modal.d-none {
    display: none !important;
}

.ezb-gallery-content {
    width: 90%;
    max-width: 1100px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    position: relative;
}

.ezb-gallery-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.ezb-gallery-slider {
    display: flex;
    overflow-x: scroll;
    gap: 10px;
}

.ezb-gallery-slider img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}
