/* =====================================================
   Gallery Slider — Lightbox Styles
   ===================================================== */


   .gallery-slider-wrap {}
 

.gallery-slider-wrap .gallery-slide-inner {}

.gallery-slider-wrap .gallery-slide-inner img {
    height: 550px;
}

.gallery-slider-wrap button.slick-prev {
    left: 50px;
}

.gallery-slider-wrap button.slick-next {
    right: 50px;
}

.gallery-slider-wrap button.slick-arrow {
    width: 40px;
    height: 40px;
    background: #ffffff;
    z-index: 1;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.5s;
}

.gallery-slider-wrap button.slick-arrow:after {
    content: '';
    display: block;
    margin: 30px auto;
    width: 9px;
    height: 9px;
    border-top: 2px solid #303030;
    border-left: 2px solid #303030;
    transform: rotate(135deg);
    position: absolute;
    top: -15px;
    left: 13px;
}

.gallery-slider-wrap button.slick-prev.slick-arrow {
    transform: rotate(180deg);
}

.gallery-slider-wrap button.slick-arrow:hover {
    opacity: 1;
}

/* ── Slide inner: pointer cursor when lightbox on ── */
.gallery-slider-wrap[data-lightbox="true"] .gallery-slide-inner {
    cursor: pointer;
}

/* ── Lightbox Overlay ──────────────────────────────── */
#gs-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

#gs-lightbox.gs-lb-open {
    display: flex;
}

.gs-lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    cursor: pointer;
}

/* ── Lightbox Container ────────────────────────────── */
.gs-lb-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px 80px;
    box-sizing: border-box;
}

/* ── Image ─────────────────────────────────────────── */
.gs-lb-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    transition: opacity 0.25s ease;
}

.gs-lb-img.gs-lb-loading {
    opacity: 0.3;
}

/* ── Close Button ──────────────────────────────────── */
.gs-lb-close {
    position: fixed;
    top: 18px;
    right: 24px;
    background: rgba(0,0,0,0.08);
    border: none;
    color: #222;
    font-size: 32px;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gs-lb-close:hover {
    background: rgba(0,0,0,0.18);
}

/* ── Prev / Next Buttons ───────────────────────────── */
.gs-lb-prev,
.gs-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.08);
    border: none;
    color: #222;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gs-lb-prev { left: 16px; }
.gs-lb-next { right: 16px; }

.gs-lb-prev:hover,
.gs-lb-next:hover {
    background: rgba(0,0,0,0.18);
}

.gs-lb-prev:disabled,
.gs-lb-next:disabled {
    opacity: 0.3;
    cursor: default;
}

/* ── Counter ───────────────────────────────────────── */
.gs-lb-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0,0,0,0.5);
    font-size: 14px;
    font-family: sans-serif;
    z-index: 2;
    letter-spacing: 1px;
}

/* ── Mobile ────────────────────────────────────────── */
@media (max-width: 600px) {
    .gs-lb-container {
        padding: 60px 12px 50px;
    }

    .gs-lb-prev { left: 6px; width: 38px; height: 38px; font-size: 16px; }
    .gs-lb-next { right: 6px; width: 38px; height: 38px; font-size: 16px; }
}

@media (max-width: 1366px) {

.gallery-slider-wrap .gallery-slide-inner img {
    height:450px;
}
}
@media (max-width: 1200px) {

.gallery-slider-wrap .gallery-slide-inner img {
    height:400px;
}
}

@media (max-width: 991px) {

.gallery-slider-wrap .gallery-slide-inner img {
    height: 400px;
}
}
@media (max-width:767px) {

.gallery-slider-wrap .gallery-slide-inner img {
    height: 350px;
}
}
@media (max-width: 600px) {

.gallery-slider-wrap .gallery-slide-inner img {
    height: 300px;
}
}
@media (max-width: 480px) {

.gallery-slider-wrap .gallery-slide-inner img {
    height: 250px;
}
}