.productCarousel_wrapper {
    padding-bottom:20px;
}
.productCarousel_wrapper .productCarousel {
    max-width: 1440px;
    margin: 0 auto;
}
.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;
    text-decoration: none;
    color: #000;
}
.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;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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