.maincatgory{

    width: 100%;
    height: 400px;
    margin-top: var(--m50);
    margin-bottom: 20px;
}
.maincatgory1{
    background: linear-gradient( to left, rgba(0, 0, 50, .3), rgba( 0, 0, 50,.3)), url("../asset/images/shop/bg2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.maincatgory > div{
    width: 100%;
    height: inherit;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.maincatgory > div >h1, .maincatgory > div >p{
    text-align: center;
}

/* Products Styling */
.productlist{
    margin-top: var(--m50);
}
.productimage{
    position: relative;
}

.image-back{
    position: absolute;
    padding: 0px;
    margin: 0px;
    opacity: 0;
    z-index: 5;
    top: 0;
    left: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.productimage:hover .image-back {
    opacity: 1;
}

.products > div > img{
    margin-bottom: 20px;
}
.products .productsdetail{
    margin-bottom: 20px;
}
.products .productsdetail > h3{
    margin-top: 10px;
    color: var(--green) !important;
    font-weight: bold !important;
}
.products .productsdetail > p{
    text-align: justify;
}

.products .productsreview{
    margin-bottom: 20px;
}
.products .productsreview > p{
    color:var(--green);
    font-weight: bold;
}

.products .productsreview > p > span{
    color: var(--darkgray);
    margin-left: 20px;
}

.products .productsreview > div > i{
    color: var(--green);
}
.products .productsreview > div > i:hover{
    color: var(--green) !important;
}

.products .productsreview > div.wish{
    margin-top: 10px;
    margin-bottom: 20px;
}
.products .productsreview > div.wish > a > i{
    color: var(--darkgray) !important;
}

.products .productsreview > div.wish > a:hover,
.products .productsreview > div.wish > a:hover > i{
    color: var(--green) !important;
}
/* Filter Section Code */
.filter{
    color: var(--green) !important;
    font-weight: bold !important;
}
ul{
    list-style-type: none;
    padding-left: 0px;
}

ul li{
    height: 30px;
}
ul > li > a:hover{
    color: var(--green) !important;
}

label{
    margin-left: 10px;
}


