/* Product archive layout */
.woocommerce-page .content-container{
	display: grid;
	grid-template-columns: 270px 1fr;
    gap: 60px;
}
.woocommerce-page .content-container #sidebar{
    margin-top:50px;	
	padding: 0px;
}
.woocommerce-page .content-container #sidebar ul{
	margin:0;
	padding:0;
	list-style: none;
}

.woocommerce-page .content-container #primary{
    margin-top:50px;
}

.woocommerce-products-header{
	display: grid;
}
.woocommerce-products-header__title{
	color: #232F3E;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 42px;
	margin-bottom:10px;
	margin-top: 0;
}
.ordering-wrapper-start{
	width:100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding:19px 0;
	border-top: solid 1px #EBEFF3;
}
.ordering-wrapper-start .woocommerce-result-count{
	margin:0;
	color: #5F6061;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 33px;
}
.ordering-wrapper-start .woocommerce-ordering{
	display: flex;
	justify-content: flex-end;
}
.ordering-wrapper-start .woocommerce-ordering select{
	color: #232F3E;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	border-radius: 5px;
	border: 1px solid #DDD;
	background: linear-gradient(180deg, #FFF 0%, #FAFAFA 100%);
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
	padding: 10px 15px;
}
.woocommerce-page .container ul.products{
	margin:0;
	padding:0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap:30px;
	row-gap: 30px;
}
.woocommerce-page .container ul.products li{
	display: flex;
	flex-direction: column;
	gap: 0px;
	justify-content: space-between;
}
.woocommerce-page .container ul.products li a {
	display: flex;
	flex-direction: column;
	gap: 0px;
	justify-content: space-between;
	text-decoration: none;
	position: relative;
}
.loop-product-image-wrapper{
	position: relative;
}
.loop-product-image-wrapper .onsale{
	position: absolute;
	left:10px;
	bottom:10px;
	color: #FFF;
	font-family: Roboto;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	background-color: #1D6EC1;
	padding: 5px 10px;
	border-radius: 5px;
}

.woocommerce-page .container ul.products li a img.attachment-woocommerce_thumbnail{
	border-radius:10px;
	display: grid;
}

.loop-price-container{
	display:grid;
	margin-top:0;
	transition: margin-top 0.3s ease;
	background-color: #ffffff!important;
	z-index: 10;
	position: relative;
	padding-top: 10px;
}

.woocommerce-page .container ul.products li .price{
	display: flex;
	color: #3E4956;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
}
.woocommerce-page .container ul.products li .price:has(ins){
	flex-direction:row-reverse;
	justify-content: flex-end;
	gap: 5px;
}
.woocommerce-page .container ul.products li .price ins{
	text-decoration: none;
	background-color:transparent;
	color: #CA232C;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
}
.woocommerce-page .container ul.products li .price del{
	color: #999;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	text-decoration-line: line-through;
}
.woocommerce-loop-product__title{
	color: #232F3E;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	text-decoration: none!important;
	margin: 0 0 10px 0;
}

.button.add_to_cart_button{
	display: flex;
	justify-content: center!important;
	flex-direction: row!important;
	align-items: center;
	color: #FFF;
	text-align: center;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	border-radius: 8px;
	background: linear-gradient(0deg, #00AC00 0%, #3EC000 100%);
	box-shadow: 0px 2px 0px 0px #090, 0px 3px 13px 0px rgba(0, 153, 0, 0.36);
	overflow: hidden;
	padding: 13px 0;
	height: auto;
	transition: height 0.3s ease;
}
.button.add_to_cart_button:hover{
	opacity: 0.7;
}
@media screen and (max-width: 1200px) {
	.woocommerce-page .container ul.products{
		grid-template-columns:1fr 1fr;
	}
}
@media screen and (max-width: 71.5rem) {
	.woocommerce-page .content-container{
		padding-left:14px;
		padding-right:14px;
		box-sizing: border-box;
		gap:30px;
	}
	
}
@media screen and (max-width: 690px) {
	.woocommerce-page .content-container{
		grid-template-columns:1fr;
	}	
}