/*
 * Woocommerce Shop
*/

.filter {
	margin: 3em 0 2.5em;
}

.filter-row {
	display: flex;
	align-items: flex-end;
}

.filter-name {
	font-family: Mulish;
	font-weight: 800;
	font-size: 1.5em;
	margin-right: 2.5em;
}

.filter-item, 
.filter-item:hover {
	color: #121212;
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.2em;
}

.filter-item:before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.15em;
  left: 0;
  outline: 1px solid #B4B4B4;
  transition: 0.5s all ease;
}

.filter-item:hover::before,
.filter-item.active::before {
	border: 0.3em solid #fff;
	background: #BAA375;
}

main > .container {
	margin-top: 2.5em;
}

.products.columns-3 {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -15px;
}

.products.columns-3 > li {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	padding: 0 15px;
	margin-bottom: 2.3em;
}

.products.columns-3 > li::before {
	content: "";
	width: calc(100% - 30px);
	height: 100%;
	left: 15px;
	right: 15px;
	top: 0;
	background: rgba(0, 0, 0, 0.28);
	border-radius: 0;
}

.products.columns-3 > li .wp-post-image,
.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
	width: 100%;
	height: 30em;
	object-fit: cover;
	transition: 0.5s all ease;
}

.products.columns-3 > li:hover img {
	box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
}

.onsale {
	position: absolute;
	background: #a49168;
	color: #fff;
	padding: 0.5em 1.5em;
	font-weight: 500;
}

.product-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 5.56em;
	width: calc(100% - 30px);
	padding: 0.5em 1.5em;
	position: absolute;
	bottom: 0;
	left: 15px;
	background: #7BA1AB;
	color: #fff;
}

.products.columns-3 > li:hover .product-content {
	height: 100%;
	background: rgba(123, 161, 171, 0.85);
	padding: 2.5em;
}

.woocommerce-loop-product__title {
	margin-bottom: 0;
	font-size: 1.5em;
	text-transform: capitalize;
}

.product-content > :not(.woocommerce-loop-product__title) {
	display: none;
}

.products.columns-3 > li:hover .product-content > :not(.woocommerce-loop-product__title) {
	display: block;
}

.products.columns-3 > li:hover .woocommerce-loop-product__title {
	margin-bottom: 0.5em;
}

.short-product-descr {
	margin-bottom: 1em;
	line-height: 1.4em;
}

.short-product-descr strong {
	font-weight: 400;
}

.short-product-descr {
	max-height: 13em;
	overflow: hidden;
}

.product-content .add_to_cart_button {
	background: #fff;
	color: #7BA1AB;
}

.product-content .buttons a {
	display: inline-block;
	margin-right: 0.5em;
	margin-bottom: 1em;
}

.product-content .buttons .button {
	min-width: 11em;
}




/*
 * RESPONSIVE STYLES
*/

/* Large desktop */
@media (max-width: 1199px){
	.products.columns-3 > li {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 991px) {
	
}
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
	
	.products.columns-3 > li {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

}
 
/* Landscape phones and down */
@media (max-width: 480px) {
	.products.columns-3 > li:hover .product-content > .short-product-descr {
		display: none;
	}

	.products.columns-3 > li .wp-post-image, .attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
		height: 25em;
	}

	.filter-item:hover::before {
		border: none;
		background: none;
	}

	.filter-item.active::before {
	    border: 0.3em solid #fff;
	    background: #BAA375;
	}
}

@media (max-width: 359px) {
	
}




