/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #F97316;
    border-radius: 4px;
}

/* Effet Parallaxe discret */
.bg-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Retrait du triangle natif pour les balises <details> (FAQ) si nécessaire */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* Slider des produits : Transition douce des images */
.slider-img {
    transition: opacity 0.4s ease-in-out;
}

/* Affichage fluide des flèches au survol (version Desktop) */
.product-slider:hover .prev-btn,
.product-slider:hover .next-btn {
    opacity: 1;
}