/* ── Gallery container ── */
    .woocommerce-product-gallery {
        max-height: 50vh;
        text-align: center;
    }
    .woocommerce-product-gallery__wrapper {
        max-height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ── Carousel item ── */
    .wd-carousel-item {
        max-height: 50vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ── Image itself ── */
    .woocommerce-product-gallery__image img {
        max-height: 50vh;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    /* ── Figure centering ── */
    .woocommerce-product-gallery__image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* ── Carousel wrap ── */
    .wd-carousel-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ── Carousel container overflow guard ── */
    .wd-carousel-container.wd-gallery-images {
        max-height: 50vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    /* ── Mobile ── */
    @media (max-width: 768px) {
        .woocommerce-product-gallery     { max-height: 50vh; }
        .woocommerce-product-gallery__image img { max-height: 45vh; }
        .wd-carousel-item {
            width: auto !important;
            max-height: 50vh;
        }
    }

    /* ── Desktop ── */
    @media (min-width: 769px) {
        .woocommerce-product-gallery     { max-height: 55vh; }
        .woocommerce-product-gallery__image img { max-height: 50vh; }
    }
