/* --- BANDEAU DÉFILANT PERSONNALISÉ --- */

.bandeau-precommande {
  background-color: #0b2e39;
  color: #ffffff;
  padding: 10px 0; 
  overflow: hidden; 
  position: relative;
  width: 100%;
  font-family: Arial, sans-serif;
  z-index: 999; 
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;       
  padding-left: 100%;        
  animation: scroll-vitesse 25s linear infinite; 
  font-weight: bold;
  text-transform: uppercase; 
  font-size: 14px;
}

@keyframes scroll-vitesse {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.bandeau-precommande:hover .scroll-text {
  animation-play-state: running !important;
}
/* Logos des sous-catégories */
.menu-subcategory-img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 5px;
    transition: transform 0.3s;
}

.menu-subcategory-name {
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
}

/* Hover effet */
.menu-subcategory a:hover .menu-subcategory-img {
    transform: scale(1.1);
}

/* Container des sous-catégories */
.menu-subcategory {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-subcategory-img {
        width: 60px;
    }
    .menu-subcategory-name {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .menu-subcategory-img {
        width: 50px;
    }
    .menu-subcategory-name {
        font-size: 11px;
    }
}
