            .vce-gallery {
    position: relative;
    width: 100%;
    max-width: 810px;
    margin: auto;
}

.vce-gallery-big {
    position: relative;
    margin-bottom: 10px;
}

.big-gallery-item {
    display: none;
    position: relative;
}

.big-gallery-item.active {
    display: block;
}

.big-gallery-item img {
    width: 100%;
    height: auto;
}

.wp-caption-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background : #d4dbad;
    color: #4b584d;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
}

.vce-gallery-slider {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-item {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    border: 2px solid transparent;
}

.gallery-item.active img {
    border-color: #333;
    opacity: 1;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border: 2px solid white;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 6em;
    cursor: pointer;
    padding:10px;
    user-select: none;
}

.lightbox .close {
    top: 10px;
    right: 10px;
    transform: none;
}

.lightbox .prev {
    left: 10px;
}

.lightbox .next {
    right: 10px;
}

.gallery-icon {
    position: relative;
    display: inline-block;
}

/* Magnifying Glass */
.magnifier-glass {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #fff;
    background: rgba(0, 0, 0, 0.3);
    cursor: zoom-in;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 10;
}

/* Container for the gallery image */
.gallery-icon {
    position: relative;
    display: inline-block;
}

/* Default image zoom effect */
.gallery-icon img {
    transition: transform 0.3s ease;
}

/* Magnifying glass icon added on hover */
.gallery-icon:hover img {
    transform: scale(1.05); /* Optional zoom effect */
}

/* Use the ::after pseudo-element to insert the magnifying glass icon */
.gallery-icon:hover::after {
    content: "\f002"; /* Font Awesome magnifying glass icon */
    font-family: "Font Awesome 5 Free"; /* Use Font Awesome */
    font-weight: 900; /* Font Awesome Pro weight */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 30px;
    z-index: 10;
    pointer-events: none; /* Makes the icon not interfere with clicks */
}

.sidr-inner {
    display: none;
}

.et-pb-controllers {
    bottom:50px!important;
}

.mfp-counter {
    display:none!important;
}

