/* Carrousel Cartes Scroll snap style */
.carrousel-cartes {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

.carrousel-cartes::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

/* Ensure children elements (cards) snap correctly */
.carrousel-cartes > * {
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
}
