.product-related{
    padding:80px 0;
    background:#f8f8f8;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#222;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    display:block;
    transition:.5s;
    height: 280px;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-info{
    padding:20px;
}

.product-info h3{
    font-size:20px;
    color:#222;
    margin-bottom:10px;
}

.product-info p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
}

.product-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    color:#e63946;
    font-size:22px;
    font-weight:700;
}

.btn-carts{
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:6px;
    transition:.3s;
}

.btn-cart:hover{
    background:#e63946;
}

@media(max-width:991px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .product-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:28px;
    }
}