/*Main Template*/
div#product-category-template {
	display: block;
}

/*Category Header Template*/
.wm-category-header-inner {
	max-width: 1480px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: repeat(2, 48%);
	column-gap: 4%;
}

#wm-category-header-image {
	height: 572px;
	overflow: hidden;
}

#wm-category-header-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#wm-category-header-title {
	color: #ABA7A0 !important;
	max-width: 1380px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
    padding-bottom: 0px!important;
}

#wm-category-header-subtitle {
	color: #ABA7A0 !important;
	max-width: 1380px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
}

#wm-category-header {
	margin-bottom: 100px;
}

/*Product Category Template*/
#product-category-template {
	max-width: 1380px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.loop-initial-4 > #product-container {
	grid-template-columns: repeat(4, 1fr);
}

/*Product Template*/
.prodimg {
	height: 200px;
	width: 100%;
	margin-bottom: 30px;
}

.prodimg img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.prodtitle {
	font-size: 14px !important;
	color: #1a1006 !important;
	padding-bottom: 0px;
}

.prodprice {
	font-size: 14px;
	text-transform: uppercase;
	line-height: 1.2em;
	text-align: left;
	color: #1a1006 !important;
	padding-bottom: 0px;
	margin-top: 15px;
}

.proddesc {
	font-size: 10px;
	line-height: 1.2em;
	text-align: left;
	color: #1A1006 !important;
	line-height: 1.2em;
}

.prodtags {
	font-size: 10px;
	font-weight: normal;
	color: #1A1006;
	text-transform: lowercase;
}

.prodbuttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
}

.prodbuttons .cart {
	font-size: 10px;
}

.prodbuttons .last-button .prodaddtocart {
	font-size: 10px;
	margin-top: 0px;
	line-height: 1.7em;
	background: transparent;
	transition: all 0.2s;
    border: 1px solid #ABA7A0 !important;
    border-radius: 0px !important;
    color: #ABA7A0 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 30px 10px 30px !important;
    cursor: pointer;
    transition-duration: 0.5s;
    width: fit-content;
    width: -webki-fit-content;
    width: -moz-fit-content;
}

.prodbuttons .last-button .prodaddtocart:hover {
	border-color: #B2B292 !important;
	box-shadow: inset 0 0 0 3em #B2B292 !important;
	color: white !important;
}

/*Media Query---------------------------------------------------------------------------------*/
/*Tablet Quer*/
@media only screen and (min-width: 981px) and (max-width: 1278px){
	/*Category Header Template*/
	#wm-category-header-image {
		height: 372px;
	}
	/*Category Product Template*/
	.loop-initial-4 > #product-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/*Tablet*/
@media only screen and (max-width: 980px){
	/*Category Header Template*/
	#wm-category-header-image {
		height: 468px;
	}
	.loop-initial-4 > #product-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/*Smartphone big*/
@media only screen and (max-width: 760px) {
	/*Category Header Template*/
	#wm-category-header-image {
		height: 268px;
	}
	#wm-category-header-title {
		margin-top: 50px;
	}
	.loop-initial-4 > #product-container {
		grid-template-columns: repeat(1, 1fr);
	}
	#wm-category-header {
		margin-bottom: 50px;
	}
}