/* Base (mobile first): stack image on top */
.acf-product-slider .slide-inner {
    display: flex;
    flex-direction: column;
    align-content: center;
}

/* Ensure full width on mobile */
.acf-product-slider .slide-image,
.acf-product-slider .slide-text {
    width: 100%;
    max-width: 100%;
}

/* On tablet and up: image left, text right */
@media(min-width: 768px) {
    .acf-product-slider .slide-inner {
        flex-direction: row;
    }

    .acf-product-slider .slide-image,
    .acf-product-slider .slide-text {
        width: 100%;
        max-width: 100%;
    }
}

/* Ensure IMG covers its container */
.acf-product-slider .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /*border: 1px solid #333333;*/
}

/* Pagination bullets styling (optional) */
.acf-product-slider .swiper-pagination-bullet {
    background: rgba(0,0,0,0.5);
    opacity: 1;
}
.acf-product-slider .swiper-pagination-bullet-active {
    background: #000;
}

/* Arrow color & shape variations */
.acf-product-slider.arrow-style-default .swiper-button-next,
.acf-product-slider.arrow-style-default .swiper-button-prev {
    color: #000;
}
.acf-product-slider.arrow-style-light .swiper-button-next,
.acf-product-slider.arrow-style-light .swiper-button-prev {
    color: #fff;
}
.acf-product-slider.arrow-style-dark .swiper-button-next,
.acf-product-slider.arrow-style-dark .swiper-button-prev {
    color: #333;
}
.acf-product-slider.arrow-style-rounded .swiper-button-next,
.acf-product-slider.arrow-style-rounded .swiper-button-prev {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    background: white !important;
    border: 1px solid black;
    opacity: 1;
}
.swiper-button-next.swiper-button-disabled:after, .swiper-button-prev.swiper-button-disabled:after {
    color: black !important;
}