
.product-collections{
    width:100%;
    max-width:1920px;
    margin:60px auto;
    padding:0 20px;
    box-sizing:border-box;
}

.product-collections h2{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:50px;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.collection-item{
    text-decoration:none;
    text-align:center;
    display:block;
}

.collection-image{
    background:#f5f5f5;
    border-radius:20px;
    overflow:hidden;
    transition:all .3s ease;
    padding:20px;
}

.collection-image img{
    width:100%;
    height:280px;
    object-fit:contain;
    transition:transform .3s ease;
}

.collection-item:hover .collection-image{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.collection-item:hover img{
    transform:scale(1.08);
}

.collection-item h3{
    margin-top:20px;
    font-size:28px;
    font-weight:700;
    color:#222;
    line-height:1.4;
}

@media(max-width:991px){
    .collection-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .product-collections h2{
        font-size:30px;
    }

    .collection-item h3{
        font-size:18px;
    }

    .collection-image img{
        height:180px;
    }
}
