/* --- Container: Erzwingt horizontale Reihe --- */
ul.category-list {
    display: flex !important;
    flex-wrap: nowrap !important; /* Verhindert Umbruch */
    overflow-x: auto !important;  /* Erlaubt horizontales Scrollen */
    justify-content: flex-start !important; /* Startet links */
    
    gap: 15px !important;
    padding: 10px 0 20px 0 !important;
    margin: 0 auto 30px auto !important;
    width: 100% !important;
    list-style: none !important;
    
    /* Touch-Optimierung für Handys */
    -webkit-overflow-scrolling: touch;
    
    /* Scrollbalken Styling (Firefox) */
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* Scrollbalken Styling (Chrome/Safari) - macht ihn etwas hübscher */
ul.category-list::-webkit-scrollbar {
    height: 6px;
}
ul.category-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
ul.category-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* --- Die Boxen --- */
ul.category-list li {
    flex: 0 0 auto !important; /* Fixe Breite, kein Schrumpfen */
    width: 140px !important;
    min-width: 140px !important;
    
    display: block !important;
    text-align: center !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* --- Bilder --- */
ul.category-list li img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    margin: 0 auto 10px auto !important;
    display: block !important;
    box-shadow: none !important;
}

/* --- Links & Text --- */
ul.category-list li a {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}

.prodcatname {
    font-weight: 600 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    color: #333 !important;
    margin-top: 5px !important;
}