
/* HERO SLIDER FULL IMAGE */
.hero-slider,
.hero-slider-track,
.hero-slide{
width:100%;
height:70vh;
}
@media(max-width:1024px){
.hero-slider{height:60vh}
}
@media(max-width:768px){
.hero-slider{height:50vh}
}

.hero-slide img{
width:100%;
height:100%;
object-fit:contain;
background:#fff;
}

/* BRANDS GRID */
.brands-grid .brands-container{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
align-items:center;
justify-items:center;
}
@media(max-width:768px){
.brands-grid .brands-container{
grid-template-columns:repeat(3,1fr);
}
}

.brand-item img{
max-width:120px;
filter:grayscale(100%);
transition:.3s;
}
.brand-item img:hover{
filter:none;
transform:scale(1.05);
}

/* PRODUCT CARD SAME AS HOME */
.woocommerce ul.products li.product{
background:#f8f8f8;
border-radius:14px;
padding:14px;
transition:.25s;
text-align:center;
}

.woocommerce ul.products li.product:hover{
transform:translateY(-6px);
box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.woocommerce ul.products li.product img{
background:#fff;
border-radius:12px;
padding:10px;
}

.woocommerce ul.products li.product .price{
display:flex;
justify-content:center;
gap:6px;
}

.woocommerce span.onsale{
background:#e53935!important;
border-radius:6px;
padding:5px 10px;
}
