#amarillo-subcategories-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    padding: 20px;
    box-sizing: border-box;
}

#amarillo-subcategories-slider ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    width: 100%;
}

#amarillo-subcategories-slider li {
    position: relative; 
    width: 13%; 
    margin: 10px; 
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

#amarillo-subcategories-slider li:hover {
    transform: translateY(-5px);
}

#amarillo-subcategories-slider li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#amarillo-subcategories-slider img {
    margin-top: 10px;
    max-width: 100%;
    height: auto;
    display: block;
}

#amarillo-subcategories-slider span {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

#amarillo-subcategories-slider .brand-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px; 
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#amarillo-subcategories-slider .brand-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 520px) {
    #amarillo-subcategories-slider .product-image-subcategory {
        opacity: 0;
    }}
