/*
Theme Name: ETC Store Child Theme
Template: store-eshop
Version: 1.0
*/

/* Center Slick slider slides */
.slick-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Center the WVG gallery wrapper */
.wvg-gallery-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* Center the inner container */
.wvg-single-gallery-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Ensure images scale properly */
.wvg-single-gallery-image-container img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Mobile responsive tweak */
@media only screen and (max-width: 768px) {
    .slick-slide {
        flex-direction: column;
        align-items: center;
    }
    .wvg-gallery-image,
    .wvg-single-gallery-image-container {
        width: 100%;
    }
}