/* =====================
   01 GLIGHTBOX
===================== */

.glightbox-clean .gbtn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: #006600 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
}

.glightbox-clean .gbtn svg {
    margin: 0 !important;
    transform: none !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 9999 !important;
}

.glightbox-clean .gbtn.disabled {
    opacity: 0.4 !important;
    background: #006600 !important;
    cursor: default !important;
}

.glightbox-clean .gbtn.disabled:hover {
    background: #006600 !important;
}

.glightbox-clean .gbtn:hover {
    background: #004d00 !important;
}

.glightbox-clean .gclose {
    top: 20px !important;
    right: 20px !important;
    background: #006600 !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    backdrop-filter: none !important;
}

.glightbox-clean .gclose svg {
    width: 16px !important;
    height: 16px !important;
}

.glightbox-clean .gclose:hover {
    background: #004d00 !important;
}

.glightbox-clean .gfadeIn,
.glightbox-clean .gfadeOut {
    opacity: 1 !important;
}

.glightbox-clean .gnext {
    right: 5% !important;
}

.glightbox-clean .gnext svg {
    transform: translateX(1px) !important;
}

.glightbox-clean .gprev {
    left: 5% !important;
}

.glightbox-clean .gprev svg {
    transform: translateX(-1px) !important;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.glightbox-clean .gslide {
    animation-duration: 1s !important;
}

.glightbox-clean .gslide-description {
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
}

.glightbox-clean .gslide-title,
.glightbox-clean .gslide-desc {
    font-family: "Dosis", "Roboto", sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(1rem, 1.6vw, 1.25rem) !important;
    color: #ffffff !important;
    text-align: center !important;
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
}

.glightbox-container {
    z-index: 9999 !important;
}

.glightbox-container .goverlay {
    background: rgba(0, 0, 0, 0.75) !important;
}

.glightbox-container .gslide {
    background: transparent !important;
}

.glightbox-container .gslide-media {
    box-shadow: none !important;
}

.glightbox-container .gslide-media img {
    max-height: 80vh !important;
    max-width: 90vw !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px !important;
}

.glightbox-container img:hover {
    transform: none !important;
}

.sv-gcounter {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 13px;
    z-index: 99999;
    pointer-events: none;
}

.sv-lightbox-swipe-hint {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 99999;

    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    pointer-events: none;

    opacity: 0;
    transition: opacity .3s ease;
}

.sv-lightbox-swipe-hint.show {
    opacity: 1;
}

/* =====================
   02 SWIPER
===================== */

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    z-index: 40 !important;
    transform: translateY(-50%) !important;
    --swiper-navigation-size: 30px !important;
    margin: 0 20px;
}

.swiper-pagination {
    height: 20px !important;
    z-index: 40 !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
    margin: 0 8px !important;
    background: #fff !important;
}

.swiper-pagination-bullet-active {
    background: #1f7a1f !important;
}

/* =====================
   03 MEDIA QUERIES
===================== */

@media (max-width: 991.98px) {

    /* ---------------------
       GLIGHTBOX
    --------------------- */

    .glightbox-clean .ginner-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
    }

    .glightbox-clean .gprev,
    .glightbox-clean .gnext {
        display: none !important;
    }

    .glightbox-clean .gslide-description {
        position: relative !important;
        margin-top: 0 !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .glightbox-container .gslide-media img {
        max-height: 60vh !important;
        max-width: 95vw !important;
    }
}