.uxc-huincha-content {
    width: 100%;
}

.uxc-huincha-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: normal;
    background-color: #fff;
    padding: 16px;
}

/* Slider */
#slider-faceta {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    background: #fff;
    padding: 16px;
    justify-content: space-evenly;
}
/* ocultar scrollbar en WebKit */
#slider-faceta::-webkit-scrollbar {
    display: none;
}

/* Item */
.uxc-huincha-item {
    text-align: center;
    position: relative;
    padding: 0 8px;
}

/* Enlace e imagen */
.uxc-huincha-item a {
    display: block;
    text-decoration: none;
    text-align: center;
}

.uxc-huincha-img {
    overflow: hidden;
    display: inline-block;
}

.uxc-huincha-item a .uxc-huincha-img {
    background: #EEECEF;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
.uxc-huincha-item a img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid #fff;
}
.uxc-huincha-item a:hover img{
    border: 1px solid #222;
}
/* círculos */
.uxc-huincha-circle a img {
    border-radius: 50%;
}

/* Título debajo de la imagen */
.uxc-huincha-item a h3 {
    color: #222;
    font-size: 14px;
    padding: 5px 0;
    font-weight: 700;
    display: block;
    width: 100%;
    line-height: 16px;
    text-align: left;
    margin: 0;
}
.uxc-huincha-item a:hover h3{
    text-decoration: underline;
}
/* Item de venta grande (SALE) */
.item-sale .uxc-huincha-img {
    background: #D82231 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-sale h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1;    
}

/* Responsive */
@media (max-width: 720px) {
    .uxc-huincha-item a .uxc-huincha-img {
        width: 110px;
        height: auto;
    }
    .uxc-huincha-item a img {
        width: 110px;
    }
    .uxc-huincha-item a h3 {
        max-width: 90px;
    }
}

@media (max-width: 768px) {
    .uxc-huincha-item {
        width: 33.3%;
        margin: 10px 0;
        padding: 0;
    }
}

@media (max-width: 420px) {
    #slider-faceta{
        padding: 0;
    }
    .uxc-huincha-container {
        display: block;
        overflow-x: hidden;
        white-space: normal;
        -webkit-overflow-scrolling: inherit;
        text-align: center;
        padding: 10px 0;
    }
    .uxc-huincha-item {
        width: calc(33% - 5px);
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
    }
    .uxc-huincha-item a img {
        width: 110px;
    }
    .uxc-huincha-item a .uxc-huincha-img {
        width: 110px;
        height: auto;
    }
}

@media (max-width: 320px) {
    .uxc-huincha-container {
        padding: 10px 1%;
    }
}