/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


.product-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	font-family: "Times New Roman", Sans-serif;
}
.product-boxes .box {
	border: 1px solid #0A0D1740;
	padding: 20px;
	width: 24%;
	margin-bottom: 20px;
}
.product-boxes .box img {
	width: 100%;
	height: 390px;
	object-fit: cover;
}
.product-boxes .box h3 {
	margin: 15px 0px 0px;
}
.product-boxes .box h3 a {
	font-size: 30px;
	font-weight: 400;
	color: #eac2a2;
}
.product-boxes .box p.desc {
	margin: 0;
	color: #000;
	font-size: 18px;
}
.product-boxes .box .price {
	margin: 15px 0px;
}
.product-boxes .box .price * {
	color: #000 !important;
	font-size: 30px;
	font-weight: normal;
}
.product-boxes .box .cart-btn .button {
	width: 100%;
	background: #000;
	color: #fff;
	font-weight: normal;
	font-size: 17px;
	padding: 16px 0px;
	display: block;
	transition: 0.3s all;
}
.product-boxes .box .cart-btn .button:hover {
	background: #eac2a2;
}

.product-sort-form {
	display: flex;
}
.product-sort-form select {
	color: #000 !important;
	border: 1px solid #000 !important;
	font-family: "Times New Roman", sans-serif;
	font-size: 16px;
	width: 140px;
	cursor: pointer;
}

@media only screen and (max-width:767px){
	.product-boxes .box {
		width: 100%;
	}
	.product-boxes .box img {
		height: 330px;
	}
}