a*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


.awrap{
	max-width: 1100px;
	width: 90%;
	margin: auto;
}


.astore-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.acategory_list{
	/*display: flex;
	flex-direction: column;
	width: 18%;*/
	acolor:inherit;
}

.acategory_list .category_item{
	/* display: block;
	width: 90%;
	padding: 15px 0;
	margin-bottom: 20px;
	background: #E84C3D;

	text-align: center;
	text-decoration: none;
	color: #fff;*/

	acolor: inherit;
}

.category_list .ct_item-active{
	background: orange;
}

/* PRODUCTOS ============*/

.products-list{
	/*width: 82%;
	display: flex;
	flex-wrap: wrap;*/
	color:inherit;
}


.products-list .product-item{
	/*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;
}

.products-list .product-item img{
	/* width: 100%; */
	color:inherit;
}

.products-list .product-item a{
	/*display: block;
	width: 100%;
	padding: 8px 0;
	background: #2D3E50;

	color: #fff;
	text-align: center;
	text-decoration: none;*/
	color:inherit;
}

/* RESPONSIVE */

@media screen and (max-width: 1100px){
	.products-list .product-item{
		/*width: 30.3%;*/
		color:inherit;
	}
}

@media screen and (max-width: 900px){
	.category_list,
	.products-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;*/
	}

	.products-list .product-item{
		/*margin-left: 4.5%;*/
		color:inherit;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 0px;
	}
}

@media screen and (max-width: 700px){
	.category_list{
		flex-direction: column;
	}
	.category_list .category_item{
		/*width: 46%;*/
		/*margin-bottom: 10px;*/
		transition:0s;
		acolor:inherit;
	}
}

@media screen and (max-width: 600px){

	.products-list .product-item{
		color:inherit;
		/*width: 47.5%;*/
	}

	.products-list .product-item:nth-child(3n+1){
		color:inherit;
		/*margin-left: 4.5%;*/
	}

	.products-list .product-item:nth-child(2n+1){
		color:inherit;
		/*margin-left: 0px;*/
	}

}

@media screen and (max-width: 350px){
	.products-list .product_item{
		width: 40%;
		margin-left: 0px;
	}
}