.productCarousel_wrapper {

}
.productCarousel {

}
.productCarousel .splide__list {
    height: unset;
}
.productCarousel .product_imgWrapper {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
.productCarousel .product_imgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.productCarousel .product {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.productCarousel .product .product_inner {
    width: 100%;
}
.productCarousel .product h3 {
    font-weight: bold;
    margin: 5px 0;
}

.productCarousel .product .desc {
    font-size: 12px;
    text-transform: uppercase;
    color: #444;
    margin: 4px 0;
}

.productCarousel .product .price {
    font-weight: bold;
    margin: 5px 0;
}

.productCarousel .buy-btn {
    background-color: #c5c5c5;
    color: #000;
    padding: 5px 12px;
    font-size: 11px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 5px;
}

.productCarousel .splide__arrow {
    background-color: transparent;
    transform: scale(2.2);
}
.productCarousel .splide__arrow--prev {
    left: 2em;
}
.productCarousel .splide__arrow--next {
    right: 2em;
}