 header .encabezado-productos {
    height: 450px;
    background-image: url("../img/productos.jpg");
    background-size: cover;
    background-attachment: fixed; }

 header .encabezado-productos .cub-header {
     height: 100%;
     background: rgba(92, 157, 162, 0.1);
     background: -webkit-linear-gradient(bottom, #000, rgba(92, 157, 162, 0.1)); }


#titulo-principal-productos {
  padding-left: 45px; }

#todos-productos {
  padding: 2.8em 0;

  padding-left: 30px;}
 #todos-productos .ff-container {
  padding: 1.3em 0;}
   #todos-productos .ff-items {
      padding: 1.3em 0;}

#detalles-producto .container .col-md-5 {
  padding: 1.8em 0;
  padding-left: -20%;
  padding-right: -20%;}

#otros-productos .container {
  padding: 2em 0;}
    #otros-productos .container .col-md-3 .opciones-productos {
      padding: 2.5em 0;}


.wrap {
	max-width: 1100px;
	width: 90%;
	margin: auto;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.category_list{
	display: flex;
	flex-direction: column;
	width: 18%;
	margin-top: 40px;

}

.category_list .category_item{
	display: block;
	width: 110%;
	padding: 15px 0;
	margin-bottom: 20px;
	background: #e0e0eb;

	text-align: center;
	text-decoration: none;
	font-size: 18px;
	color: #4d4d4d;
}

.category_list .ct_item-active{
	background: #cc0000;
	color: #fff;
}

/* PRODUCTOS ============*/

.products-list{
	width: 75%;
	display: flex;
	flex-wrap: wrap;
	margin-left: 50px;
	margin-top: 40px;
}


.products-list .product-item{
	width: 30%;
	
	margin-left: 3%;
	margin-bottom: 25px;
	box-shadow: 5px 0px 30px 2px rgba(0,0,6,0.22);

	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;

	transition: all .4s;
}

.products-list .product-item img{
	width: 100%;
	height: 160px;
}

.products-list .product-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #cc0000;

	color: #fff;
	text-align: center;
	text-decoration: none;
}


.sest {
	
}



/* RESPONSIVE ================================*/

@media screen and (max-width: 1100px){
	.products-list .product-item{
		width: 30.3%;
	}
}

@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%;
	}

	.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: 100%;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 600px){

	.products-list .product-item{
		width: 47.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(2n+1){
		margin-left: 0px;
	}

}

@media screen and (max-width: 350px){
	.products-list .product_item{
		width: 100%;
		margin-left: 0px;
	}
}

