#product-carousel .carousel-inner {
    background: #f8f9fa;
}

/* Общая высота (можно менять) */
#product-carousel .carousel-item {
    height: 400px; /* или auto + JS, см. ниже */
}

/* Белый блок с padding */
.carousel-image-wrapper {
    height: 100%;
    padding: 30px;
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Картинка */
.carousel-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}