*{
    margin: 0;
	padding: 0;
    box-sizing: border-box;
}


body{
    background: #E0E4E5
}

.wrap{
    max-width: 1100px;
    width: 90%;
    margin: auto;
    margin-top: 70px;
}

.wrap h2{
    font-weight: 400;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 15px 0px;
}

.store-wrapper{
    display: flex;
    flex-wrap: wrap;
}

.category_list{
    display: flex;
    flex-direction: column;
    width: 18%;
}

.category_list .category_item{
    display: block;
    width: 90%;
    padding: 15px 0px;
    margin-bottom: 20px;
    background: #FF6347;
    color: white;
    text-align: center;
    text-decoration: none;
}

.category_list .ct_item-active{
    background:#4682B4;
}

.product_list{
    width: 82%;
    display: flex;
    flex-wrap: wrap;
}

.product_list .productItem{
    width: 22%;
    margin-left: 3%;
    margin-bottom: 25px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.22);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    
    transition: all .4s;
}

.product_list .productItem img{
    width: 100%;
}

.product_list .productItem a{
    display: block;
    width: 100%;
    padding: 8px 0px;
    background: #2D3E50;
    color: #fff;
    text-decoration: none;
    text-align: center;
    
}

/* RESPONSIVE */

@media screen and (max-width: 1100px){
	.product_list .productItem{
		width: 30.3%;
	}
}

@media screen and (max-width: 900px){
	.category_list,
	.product_list{
		width: 100%;
	}

	.category_list{
		flex-direction: row;
		justify-content: space-between;
	}

	.category_list .category_item{
		align-self: flex-start;
		width: 15%;
		font-size: 14px;
	}

	.product_list .productItem{
		margin-left: 4.5%;
	}

	.product_list .productItem:nth-child(3n+1){
		margin-left: 0px;
	}
}

@media screen and (max-width: 700px){
	.category_list{
		flex-direction: column;
	}
	.category_list .category_item{
		width: 100%;
		margin-bottom: 10px;
	}
    
}

@media screen and (max-width: 600px){

	.product_list .productItem{
		width: 47.5%;
	}

	.product_list .productItem:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.product_list .productItem:nth-child(2n+1){
		margin-left: 0px;
	}

}

@media screen and (max-width: 350px){
	.product_list .productItem{
		width: 100%;
		margin-left: 0px;
	}
}