/* CAROUSEL */
.carousel-wrapper {
    --slides-to-show: 2; 
    position: relative;
    width: 100%;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.section-content .carousel-product {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    padding-bottom: 25px;
    list-style: none;
    transition: transform 0.3s ease;
}

.section-content .carousel-product .carousel-card {
    /* Use the variable injected by JS */
    /* flex: 0 0 calc(100% / var(--slides-to-show));  */
    box-sizing: border-box;
    padding: 10px;
}

.carousel-card img {
    width: 100%;
    height: auto;
    display: block;
}


.carousel-card .bps-product-button {
    height: 100%;
    width: 100%;
    max-height: 54px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    border: none;
    background-color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    border: 1px solid #C4C4C4 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    color: #0081E0;
    font-size: 18px !important;
    z-index: 2;
    padding: 2px 0px 0px 2px !important;
}

.carousel-arrow.prev {
    left: -18px;
}

.carousel-arrow.next {
    right: -18px;
}

.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.carousel-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 999px !important;
    border: none !important;
    background-color: #d0d5dd;
    cursor: pointer;
    padding: 0 !important;
}

.carousel-dot.is-active {
    background-color: #0081E0;
}

.section-content .carousel-product .carousel-card .carousel-titel{ 
    min-height: 42px;
    max-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0 !important;

}

.section-content .carousel-product{
    display: flex;
    gap: 0 !important;
    touch-action: pan-y; 
    user-select: none;
    cursor: grab;
}

.bps-product-image{
    width: 100%;
}

.bps-product-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.carousel-product:active {
    cursor: grabbing;
}

.swiper.carousel-product .swiper-pagination.swiper-pagination-bullets{
    bottom: 0 !important;
}

.swiper-pagination-bullet{
    height: 8px !important;
    width: 8px !important;
}

.swiper.carousel-product .carousel-arrow svg path{
    fill : #0081E0 
}
 