@media screen and (max-width: 991px) {
    .ltn__header-options-2 {
        display: none;
    }
}

.product-img {
    height: 200px;
    width: 200px;
    display: block;
    margin: 0 auto;
}

.product-img img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.ltn__gallery-item-inner {
    height: 300px;
    width: 300px;
    overflow: hidden;
}

.ltn__gallery-item-inner img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

@media screen and (max-width: 640px) {
    a[class*=lightcase-icon-] {
        bottom: 50%;
    }

    a[class*=lightcase-icon-].lightcase-icon-prev {
        left: 0
    }

    a[class*=lightcase-icon-].lightcase-icon-next {
        right: 0;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .ltn__slide-item-2 .slide-item-info {
        margin-left: 90px !important;
    }
}

/* .footer-widget {
    text-align: center;
} */

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo img {
    display: block;
    margin: 0 auto;
}

/* Ensure the slide container is positioned correctly */
.ltn__slide-item {
    position: relative;
    overflow: hidden;
}

/* Add the black overlay only on the background image */
.ltn__slide-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Adjust the opacity for a lighter or darker effect */
    z-index: 1;
    /* Keeps it below the text */
}

/* Ensure the text and content stay above the overlay */
.ltn__slide-item-inner {
    position: relative;
    z-index: 2;
}