/* ===== CAROUSEL «Οι αγαπημένες σας επιλογές» ===== */
.bbay-carousel{position:relative;display:flex;align-items:center;gap:10px;}

.bbay-car__viewport{
flex:1 1 auto;min-width:0;
overflow-x:auto;overflow-y:hidden;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
scroll-behavior:smooth;
scrollbar-width:none;-ms-overflow-style:none;
cursor:grab;
}
.bbay-car__viewport::-webkit-scrollbar{display:none;}
.bbay-car__viewport.is-dragging{cursor:grabbing;scroll-behavior:auto;scroll-snap-type:none;user-select:none;}
.bbay-car__track{display:block;}

body.home .bbay-carousel ul.products,
body.woocommerce-cart .bbay-carousel ul.products{
display:grid !important;
grid-auto-flow:column !important;
grid-template-columns:none !important;
grid-auto-columns:calc((100% - 3 * 20px) / 4) !important;
gap:20px !important;
margin:0 !important;padding:0 !important;
list-style:none !important;float:none !important;
}
body.home .bbay-carousel ul.products::before,
body.home .bbay-carousel ul.products::after,
body.woocommerce-cart .bbay-carousel ul.products::before,
body.woocommerce-cart .bbay-carousel ul.products::after{display:none !important;content:none !important;}
body.home .bbay-carousel ul.products li.product,
body.woocommerce-cart .bbay-carousel ul.products li.product{
scroll-snap-align:start;
margin:0 !important;width:auto !important;max-width:none !important;float:none !important;clear:none !important;
}

/* Βελάκια */
.bbay-car__nav{
flex:0 0 auto;width:42px;height:42px;border-radius:50%;
border:1px solid #ECECEC;background:#fff;color:#4A4A4A;
font-size:20px;line-height:1;cursor:pointer;
display:inline-flex;align-items:center;justify-content:center;
transition:background .2s ease,border-color .2s ease,color .2s ease;
box-shadow:none;
}
.bbay-car__nav:hover{background:#F5F0EB;border-color:#DCDCDC;color:#2A2A2A;}

@media(max-width:1024px){
body.home .bbay-carousel ul.products,
body.woocommerce-cart .bbay-carousel ul.products{grid-auto-columns:calc((100% - 2 * 16px) / 3) !important;gap:16px !important;}
}
@media(max-width:768px){
.bbay-car__nav{display:none;}
.bbay-carousel{gap:0;}
body.home .bbay-carousel ul.products,
body.woocommerce-cart .bbay-carousel ul.products{grid-auto-columns:calc((100% - 1.2 * 12px) / 2.2) !important;gap:12px !important;}
}
@media(prefers-reduced-motion:reduce){
.bbay-car__viewport{scroll-behavior:auto;}
}