.wooboost-product-gallery-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.wooboost-gallery-slider {
    width: 100%;
    height: auto;
    position: relative;
    /* Contain nav arrows */
}

.wooboost-gallery-item {
    /* Main slider items don't need pointer unless lightbox is added */
    border-radius: var(--wooboost-radius, 4px);
    overflow: hidden;
}

.wooboost-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure full image is seen if we ever fix height */
}

/* Swiper Nav adjustments */
.wooboost-gallery-slider .swiper-button-next,
.wooboost-gallery-slider .swiper-button-prev {
    color: var(--wooboost-primary, #000);
    /* Standard size is usually fine for main slider, maybe slightly smaller but not 0.5 */
    transform: scale(0.75);
}

/* Pagination Dots */
.wooboost-gallery-slider .swiper-pagination-bullet-active {
    background: var(--wooboost-primary, #000);
}

.wooboost-gallery-slider .swiper-pagination {
    position: relative;
    margin-top: 10px;
    bottom: 0 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {

    /* Allow arrows on mobile if desired, or keep hidden/smaller */
    .wooboost-gallery-slider .swiper-button-next,
    .wooboost-gallery-slider .swiper-button-prev {
        display: none;
        /* Keep cleaner look on mobile, swipe is intuitive */
    }
}