/*=====================================
NEW PRODUCTS
=====================================*/

.new-products{
    padding:70px 0;
    background:#ffffff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.product-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    position:relative;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border-color:#D10024;
}

.discount-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#D10024;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    z-index:10;
}

.product-image{
    height:260px;
    background:#fafafa;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    overflow:hidden;
}

.product-image img{
    max-width:100%;
    max-height:210px;
    object-fit:contain;
    transition:.35s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:22px;
}

.product-content small{
    display:block;
    color:#D10024;
    font-size:13px;
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
}

.product-content h3{
    font-size:19px;
    line-height:1.5;
    margin-bottom:18px;
    min-height:58px;
}

.product-content h3 a{
    color:#15161D;
    text-decoration:none;
    transition:.3s;
}

.product-content h3 a:hover{
    color:#D10024;
}

.price-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.sale-price{
    color:#D10024;
    font-size:24px;
    font-weight:800;
}

.price-box del{
    color:#888;
    font-size:16px;
}

.product-buttons{
    display:flex;
    gap:10px;
}

.cart-btn{
    flex:1;
    background:#D10024;
    color:#fff;
    text-decoration:none;
    text-align:center;
    padding:12px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.cart-btn:hover{
    background:#111;
    color:#fff;
}

.wishlist-btn{
    width:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    border-radius:10px;
    color:#111;
    text-decoration:none;
    transition:.3s;
}

.wishlist-btn:hover{
    background:#D10024;
    color:#fff;
    border-color:#D10024;
}

/*=====================================
TABLET
=====================================*/

@media(max-width:1199px){

.product-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.new-products{
    padding:60px 0;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/*=====================================
MOBILE
=====================================*/

@media(max-width:576px){

.new-products{
    padding:45px 0;
}

.product-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.product-image{
    height:220px;
}

.product-image img{
    max-height:170px;
}

.product-content{
    padding:18px;
}

.product-content h3{
    font-size:17px;
    min-height:auto;
}

.sale-price{
    font-size:21px;
}

.product-buttons{
    flex-direction:column;
}

.wishlist-btn{
    width:100%;
    height:45px;
}

}