
.main-wrapper_category{
    min-height: 100vh;
    padding: 0;
}
.main-wrapper_category .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 ;
}

.main-wrapper_category .product{
    background-color: #fff;
    /* border-radius: 0.4rem; */
    overflow: hidden;
    /* -webkit-box-shadow: 0 6px 12px -7px rgba(171, 171, 171, 1);
            box-shadow: 0 6px 12px -7px rgba(171, 171, 171, 1);
    -webkit-transition: -webkit-box-shadow 0.4s ease-out; */
    transition: -webkit-box-shadow 0.4s ease-out;
    -o-transition: box-shadow 0.4s ease-out;
    transition: box-shadow 0.4s ease-out;
    transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
    position: relative;
}
/* .main-wrapper_category .product:hover{
    -webkit-box-shadow: 0 10px 12px -7px rgba(171, 171, 171, 1);
            box-shadow: 0 10px 12px -7px rgba(171, 171, 171, 1);
} */
.main-wrapper_category .product-img img{
    /* max-height: 800px; */
    margin: 0 auto;
    width: 100%;
}
.main-wrapper_category .product-img .rear-img{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
}
.main-wrapper_category .product:hover .rear-img{
    opacity: 1;
    z-index: 0;
}
.main-wrapper_category .product-info{
    min-height: 70px;
    padding: 10px;
    text-align: center;
}
.main-wrapper_category .product-info div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    
}
.main-wrapper_category .product-name{
    min-height: 50px;
    font-weight: 600;
    font-size: 12px;
    color: black;
}

.main-wrapper_category .product-price{
    font-weight: 600;
    font-size: 12px;
    color: black;
}
.main-wrapper_category .product-btn{
    background-color: #f62f5e;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    padding: 0.5rem 1.8rem;
    border-radius: 1.2rem;
    -webkit-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
.main-wrapper_category .product-btn:hover{
    background-color: #f50e45;
}

.main-wrapper_category .product-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem 1.4rem;
}

@media screen and (max-width: 1200px){
.main-wrapper_category .product-grid{
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 992px){
.main-wrapper_category .product-grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
}

@media screen and (max-width: 576px){
.main-wrapper_category .product-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }
} 