/* Titles */
h1.page-title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-family: 'Bree Serif', serif;
}

/* Body / Descriptions */
body,
.single-product .woocommerce-product-details__short-description,
.woocommerce .term-description {
  font-family: 'Lora', serif;
}

/* Buttons & selects */
button,
.woocommerce a.button,
.woocommerce select {
  font-family: 'Open Sans', sans-serif;
}


/* === Shop / Archive === */
.woocommerce ul.products li.product {
  background: #f5eee9;
  border-radius: 10px;
  padding-bottom: 30px; /* extra bottom space under button */
  /* …other shop styles… */
}


/* === WW Shop / Archive Styles === */

/* Archive Header */
.woocommerce .archive-header,
.woocommerce-page .archive-header {
	text-align: left;
	padding: 0 20px;
	max-width: 1170px;
	margin: 40px auto 30px;
}
.woocommerce .archive-header h1.page-title,
.woocommerce-page .archive-header h1.page-title {
	font-size: 30px;
	line-height: 40px;
	font-family: 'Bree Serif', serif;
	font-weight: normal;
	color: #584d49;
	background: url('/wp-content/themes/wheatless-wonder/css/ptitle_dots.jpg') left bottom repeat-x;
	padding-bottom: 20px;
	margin-top: 10px;
}
.woocommerce .term-description,
.woocommerce-page .term-description {
	max-width: 800px;
	color: #94786d;
	font-size: 16px;
	font-family: 'Lora', serif;
	line-height: 1.7;
	margin-top: 15px;
	margin-bottom: 30px;
}

/* Archive Padding */
.woocommerce.archive,
.woocommerce-page.archive {
	padding: 0px 0px;
}

/* === Product Grid Cards === */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background-color: #f5eee9;
	border-radius: 10px;
	padding-bottom: 30px;           /* extra bottom space */
	overflow: hidden;
	text-align: center;
	box-shadow: none;
	border: none;
	transition: transform 0.2s ease;
}
.woocommerce ul.products li.product:hover {
	transform: translateY(-5px);
}

/* Product Title */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
	font-size: 18px;
	color: #5a3e36;
	margin-top: 15px;
	margin-bottom: 6px;
	font-family: inherit;
	font-weight: normal;
}

/* Star Rating */
.woocommerce ul.products li.product .star-rating {
	margin: 0 auto 10px;
	float: none;
	display: block;
}

/* Price */
.woocommerce ul.products li.product .price {
	color: #6d4c41;
	font-size: 16px;
	margin: 6px 0 12px;
	font-family: 'Lora', serif;
	font-weight: normal;
}

/* Add to Cart Button */
.woocommerce ul.products li.product a.button {
	background-color: #a98978;
	color: #fff;
	border-radius: 3px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 20px;
	transition: background 0.3s ease;
	margin-top: 0;
	margin-bottom: 12px;
}
.woocommerce ul.products li.product a.button:hover {
	background-color: #8b6a58;
	color: #fff;
}

/* === WW Shop: extra padding under the button === */
.woocommerce ul.products li.product {
  /* whatever you currently have, then… */
  padding-bottom: 50px; /* ← increase as needed to match your top gap */
}


/* === Pagination – Circular === */
.woocommerce nav.woocommerce-pagination {
	text-align: center;
	margin: 60px 0 30px;
}
.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	justify-content: center;
	padding: 0;
	gap: 8px;
	border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
	list-style: none;
	margin: 0;
	border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 16px;
	color: #5a3e36;
	border: 1px solid #c9beb6;
	border-radius: 50%;
	background: #ffffff;
	font-family: inherit;
	transition: all 0.2s ease;
	font-weight: 400;
	box-shadow: none;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: #f5eee9;
	border-color: #c9beb6;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: #ded4ca;
	color: #3f2c23;
	font-weight: 600;
	border-color: #c9beb6;
}
.woocommerce nav.woocommerce-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a.prev {
	font-size: 18px;
	font-weight: 600;
}

/* === Sort Dropdown === */
.woocommerce .woocommerce-ordering select {
	background-color: #f7f2ef;
	color: #5a3e36;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid #cbbfb5;
	border-radius: 6px;
	padding: 10px 16px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a3e36' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 10px;
	cursor: pointer;
}
/* === WW Shop: force price font + color === */
.woocommerce ul.products li.product .price {
  font-family: 'Lora', serif !important;
  font-size: 16px !important;      /* match your desired size */
  color: #6d4c41 !important;       /* your dark cocoa brown */
  margin: 6px 0 12px !important;   /* your original spacing */
}

/* === WW Shop: force button font + white text === */
.woocommerce ul.products li.product a.button {
  font-family: 'Lora', serif !important;
  font-size: 14px !important;
  color: #fff !important;
  text-transform: none !important;
}

/* if you still need that extra bottom-padding under the button: */
.woocommerce ul.products li.product {
  padding-bottom: 50px; /* adjust up/down as needed */
}

/*=== WW Shop (Responsive): pad product titles away from the edges ===*/
@media (max-width: 600px) {
  .woocommerce ul.products li.product {
	/* add horizontal padding inside each product card */
	padding-left: 10px;
	padding-right: 10px;
  }

  .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
	/* if you only want to pad the title itself */
	padding-left: 5px;
	padding-right: 5px;
  }
}
