*{
    padding: 0px;
    margin: 0px;
    font-family: niveau-grotesk, sans-serif;
}
body{
    background: #efefef;

}
span{
    color: #333;
    font-weight: 700;
}
/* .main-categroy {
    padding: 15px 15px;
} */
.dropdown {
    margin: 20px 7px;
}
.button > button {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: auto;
    display: block;
}
.button > button:hover{
    cursor: pointer;
}
#block{
    display: none;
}

#sub-block{
    display: none;
}

.dropdown > .button {
    display: flex;
    align-items: center;
}

a#clear {
    margin: 0px 10px;
    font-size: 12px;
    color: #cd4343;
}

.filter_div {
    display: flex;
 
}

.dropdown-list {
    margin: 20px 0px;
    display: none;
}
.dropdown-list > ul > li {
    padding: 5px 5px;
}
.dropdown-list > ul > li > a {
    color: #222;
}

/* category container css start here  */
.shop-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    grid-auto-rows: minmax(100px, auto);
}
.shop {
    display: flex;
    background: white;
    padding: 20px 10px;


}
.content-shop {
    width: 50%;
}
.shop-a {
    display: flex;
    flex-direction: column;
    margin: 10px 0px;
  
}
.shop-a > a{
    color: #555;
}
.shop-detail > p{
    color: #555;
}
 p > a{
    color: #555;
    font-weight: 700;
}
.shop-detail > a{
    color: #555;
}
.shop-img {
    width: 50%;
    text-align: end;
}



@media screen and (max-width:900px) {
   .shop-main{
    grid-template-columns: repeat(1, 1fr);

   }
   .shop{
    width: auto;
   }

    
}


@media screen and (max-width:400px) {
    .filter_div {
        display: block;
     
    }
}


.shop-img img {
    width: 100px;
    height: 66px;
    object-fit: cover;
}