/* =========================================================
   SAJAWAT CATEGORY GRID
========================================================= */

.scs-category-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:20px;
    margin:30px 0;
}

/* CATEGORY CARD */

.scs-category-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    text-decoration:none;
    background:#f5f5f5;
    height:260px;
    display:block;
}

/* IMAGE */

.scs-category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.4s ease;
}

/* HOVER */

.scs-category-card:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.scs-category-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:15px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0)
    );
    color:#fff;
    box-sizing:border-box;
}

/* TITLE */

.scs-category-overlay h3{
    margin:0;
    font-size:18px;
    font-weight:600;
    line-height:1.3;
}

/* PRODUCT COUNT */

.scs-category-overlay span{
    display:block;
    margin-top:5px;
    font-size:12px;
    opacity:0.9;
}

/* TABLET */

@media(max-width:1024px){

    .scs-category-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

}

/* MOBILE */

@media(max-width:600px){

    .scs-category-grid{
        grid-template-columns:1fr;
    }

    .scs-category-card{
        height:220px;
    }

}