/* Product Images Widget */
.savernake-image-text-widget-wrapper .e-con-inner {
    max-width: unset !important;
}

.savernake-product-images-widget {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.savernake-product-images-widget__swiper {
    width: 100%;
}

.savernake-product-images-widget-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Desktop: disable Swiper layout, stack vertically */
@media (min-width: 768px) {
    .savernake-product-images-widget__swiper {
        overflow: visible;
    }

    .savernake-product-images-widget__swiper .swiper-wrapper {
        display: flex;
        flex-direction: column;
    }

    .savernake-product-images-widget-image {
        width: 100% !important;
    }
}

/* Mobile: horizontal slider with 2rem peek */
@media (max-width: 767px) {
    .savernake-product-images-widget__swiper {
        overflow: hidden;
        padding-right: 2rem;
        box-sizing: border-box;
    }

    .savernake-product-images-widget-image {
        width: calc(100vw - 2rem) !important;
    }

    .savernake-product-images-widget-image img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}
