/*
Theme Name: Natural Prime

WooCommerce styles override

Shared theme tokens are declared in src/styles.css and loaded by style.css:
--cream, --paper, --orange, --orange-strong, --green, --green-bright,
--text, --muted, --muted-light, --container, --radius, --shadow-soft.
*/

/**
 * Shop tables
 */
table.shop_table_responsive thead {
	display: none;
}

table.shop_table_responsive tbody th {
	display: none;
}

table.shop_table_responsive tr td {
	display: block;
	text-align: right;
	clear: both;
}

table.shop_table_responsive tr td::before {
	content: attr(data-title) ": ";
	float: left;
}

table.shop_table_responsive tr td.product-remove a {
	text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
	display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
	display: none;
}

table.shop_table_responsive tr td.download-actions .button {
	display: block;
	text-align: center;
}

@media screen and (min-width: 48em) {

	table.shop_table_responsive thead {
		display: table-header-group;
	}

	table.shop_table_responsive tbody th {
		display: table-cell;
	}

	table.shop_table_responsive tr th,
	table.shop_table_responsive tr td {
		text-align: left;
	}

	table.shop_table_responsive tr td {
		display: table-cell;
	}

	table.shop_table_responsive tr td::before {
		display: none;
	}
}

/**
 * Cart Page
 */
body.woocommerce-cart .site-main {
	width: min(calc(100% - 48px), var(--container));
	margin: 0 auto;
	padding: 148px 0 96px;
}

body.woocommerce-cart .site-main > article {
	margin: 0;
}

body.woocommerce-cart .entry-header {
	margin: 0 0 20px;
}

body.woocommerce-cart .entry-title {
	margin: 0;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: clamp(40px, 5vw, 56px);
	font-weight: 600;
	line-height: 1.08;
}

body.woocommerce-cart .entry-content {
	margin: 0;
}

body.woocommerce-cart .woocommerce-notices-wrapper {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
	margin: 0;
	padding: 18px 22px;
	border: 1px solid rgba(66, 94, 36, 0.14);
	border-left-width: 4px;
	border-radius: 16px;
	background: #fff;
	color: var(--text, #242424);
	box-shadow: 0 16px 34px rgba(66, 94, 36, 0.06);
}

body.woocommerce-cart .woocommerce-message {
	border-left-color: var(--green-bright, #85b52b);
}

body.woocommerce-cart .woocommerce-info {
	border-left-color: var(--orange, #e87a12);
}

body.woocommerce-cart .woocommerce-error {
	border-left-color: #cf5130;
}

body.woocommerce-cart .woocommerce-message a,
body.woocommerce-cart .woocommerce-info a,
body.woocommerce-cart .woocommerce-error a {
	color: var(--green, #425e24);
	font-weight: 700;
}

.cart-page {
	display: grid;
	gap: 28px;
}

.cart-page__intro {
	align-items: flex-start;
	margin-bottom: 0;
}

.cart-page__intro-copy {
	display: grid;
	gap: 10px;
}

.cart-page__eyebrow {
	margin: 0;
}

.cart-page__copy {
	width: min(680px, 100%);
	margin: 0;
	color: var(--muted, #434844);
	font-size: 17px;
	line-height: 1.8;
}

.cart-page__meta {
	margin: 0;
	padding: 14px 18px;
	border-radius: 999px;
	background: var(--paper, #f1e5d5);
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.woocommerce-cart-form {
	margin: 0;
}

.woocommerce-cart-form__contents {
	width: 100%;
	background: #fff;
	border: 1px solid rgba(66, 94, 36, 0.08);
	border-radius: 24px;
	border-collapse: separate;
	border-spacing: 0;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
	overflow: hidden;
}

.woocommerce-cart-form thead {
	background: rgba(241, 229, 213, 0.72);
}

.woocommerce-cart-form thead th {
	padding: 20px 24px;
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
	text-align: left;
	border: none;
}

.woocommerce-cart-form tbody tr {
	border-bottom: 1px solid rgba(66, 94, 36, 0.06);
	transition: background-color 180ms ease;
}

.woocommerce-cart-form tbody tr:hover {
	background: rgba(241, 229, 213, 0.25);
}

.woocommerce-cart-form tbody td {
	padding: 24px;
	vertical-align: middle;
	border: none;
	color: var(--muted, #434844);
	font-size: 15px;
	line-height: 1.6;
}

.woocommerce-cart-form .product-remove {
	width: 68px;
	text-align: center;
}

.woocommerce-cart-form .product-remove a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(232, 122, 18, 0.08);
	color: var(--orange, #e87a12);
	text-decoration: none;
	transition: all 180ms ease;
}

.woocommerce-cart-form .product-remove a:hover {
	background: rgba(232, 122, 18, 0.16);
	color: var(--orange-strong, #ed6a1a);
	transform: translateY(-1px);
}

.woocommerce-cart-form .product-thumbnail {
	width: 128px;
}

.woocommerce-cart-form .product-thumbnail img {
	width: 100%;
	padding: 10px;
	border-radius: 16px;
	background: var(--paper, #f1e5d5);
	object-fit: cover;
	box-shadow: var(--shadow-soft, 0 1px 1px rgba(0, 0, 0, 0.05));
}

.woocommerce-cart-form .product-name {
	color: var(--green, #425e24);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
}

.woocommerce-cart-form .product-name > a,
.woocommerce-cart-form .product-name > span {
	display: inline-block;
	margin-bottom: 8px;
}

.woocommerce-cart-form .product-name dl.variation {
	margin: 0;
	color: var(--muted, #434844);
	font-size: 14px;
}

.woocommerce-cart-form .product-name dl.variation dt,
.woocommerce-cart-form .product-name dl.variation dd {
	display: inline;
	margin: 0;
}

.woocommerce-cart-form .product-name dl.variation dd {
	margin-right: 8px;
}

.woocommerce-cart-form .product-name .backorder_notification {
	margin: 10px 0 0;
	color: var(--muted, #434844);
	font-size: 13px;
}

.woocommerce-cart-form .product-name a {
	color: var(--green, #425e24);
	text-decoration: none;
	transition: color 180ms ease;
}

.woocommerce-cart-form .product-name a:hover {
	color: var(--orange, #e87a12);
}

.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
	white-space: nowrap;
	color: var(--orange, #e87a12);
	font-weight: 600;
	font-size: 17px;
}

.woocommerce-cart-form .product-price del,
.woocommerce-cart-form .product-subtotal del {
	color: var(--muted-light, #6b6b6b);
}

.woocommerce-cart-form .product-quantity {
	text-align: center;
}

.woocommerce-cart-form .quantity {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.woocommerce-cart-form .quantity input.qty {
	width: 78px;
	height: 48px;
	padding: 0 12px;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 12px;
	background: var(--cream, #fef7ee);
	color: var(--text, #242424);
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	transition: border-color 150ms ease;
}

.woocommerce-cart-form .quantity input.qty:focus {
	border-color: rgba(66, 94, 36, 0.3);
	outline: 2px solid var(--green, #425e24);
	outline-offset: 3px;
}

.woocommerce-cart-form .quantity button {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 12px;
	background: var(--cream, #fef7ee);
	color: var(--green, #425e24);
	cursor: pointer;
	font-weight: 700;
	transition: all 180ms ease;
}

.woocommerce-cart-form .quantity button:hover {
	background: rgba(66, 94, 36, 0.08);
	border-color: rgba(66, 94, 36, 0.2);
}

.woocommerce-cart-form .product-subtotal {
	text-align: right;
	font-weight: 600;
	color: var(--orange, #e87a12);
	font-size: 17px;
}

.cart-collaterals {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 24px;
	align-items: start;
}

.cart-collaterals > .cart_totals:only-child {
	max-width: 480px;
	margin-left: auto;
}

.cart-actions-row td.actions {
	padding: 0;
}

.cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px;
	background: rgba(241, 229, 213, 0.46);
}

.cart-actions .coupon {
	display: flex;
	flex: 1 1 520px;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.cart-actions .coupon .input-text {
	flex: 1 1 240px;
	min-width: 180px;
	height: 54px;
	padding: 0 18px;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 12px;
	background: #fff;
	color: var(--text, #242424);
	font-size: 15px;
	font-weight: 500;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.cart-actions .coupon .input-text::placeholder {
	color: rgba(67, 72, 68, 0.65);
}

.cart-actions .coupon .input-text:focus {
	border-color: rgba(66, 94, 36, 0.25);
	outline: 2px solid var(--green, #425e24);
	outline-offset: 3px;
}

.cart-actions .coupon .button,
.cart-actions__buttons .button,
.shipping-calculator-form button.button,
.return-to-shop .wc-backward {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 26px;
	border: 0;
	border-radius: 12px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, opacity 180ms ease;
	cursor: pointer;
}

.cart-actions .coupon .button,
.cart-actions__buttons .button,
.shipping-calculator-form button.button {
	background: var(--orange, #e87a12);
}

.cart-actions .coupon .button:hover,
.cart-actions__buttons .button:hover,
.shipping-calculator-form button.button:hover {
	background: var(--orange-strong, #ed6a1a);
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(232, 122, 18, 0.2);
}

.cart-actions .coupon .button:focus-visible,
.cart-actions__buttons .button:focus-visible,
.shipping-calculator-form button.button:focus-visible,
.return-to-shop .wc-backward:focus-visible,
.shipping-calculator-button:focus-visible,
.checkout-button:focus-visible,
.woocommerce-cart-form .product-remove a:focus-visible {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 4px;
}

.cart-actions__buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 12px;
}

.cross-sells,
.cart-collaterals .cart_totals,
.cart-empty-page {
	background: #fff;
	border: 1px solid rgba(66, 94, 36, 0.08);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
}

.cross-sells h2,
.cart_totals h2 {
	margin: 0;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.08;
}

.cross-sells .products {
	margin-top: 24px;
}

.cart-totals__eyebrow {
	margin: 0 0 10px;
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.cart-totals__copy {
	margin: 12px 0 24px;
	color: var(--muted, #434844);
	font-size: 15px;
	line-height: 1.75;
}

.cart_totals table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.cart_totals table tr {
	border-bottom: 1px solid rgba(66, 94, 36, 0.06);
}

.cart_totals table tr:last-child {
	border-bottom: 2px solid rgba(66, 94, 36, 0.15);
}

.cart_totals table th {
	padding: 12px 0;
	text-align: left;
	font-weight: 600;
	color: var(--text, #242424);
	font-size: 14px;
}

.cart_totals table td {
	padding: 12px 0;
	text-align: right;
	color: var(--muted, #434844);
	font-size: 14px;
}

.cart_totals table td .amount,
.cart_totals table td .woocommerce-Price-amount {
	color: var(--text, #242424);
	font-weight: 600;
}

.cart_totals table tr.shipping td {
	text-align: left;
}

.woocommerce-shipping-methods {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-shipping-methods li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	background: var(--cream, #fef7ee);
}

.woocommerce-shipping-methods input[type="radio"] {
	accent-color: var(--orange, #e87a12);
	margin-top: 4px;
}

.woocommerce-shipping-methods label {
	display: block;
	color: var(--text, #242424);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.65;
}

.woocommerce-shipping-destination,
.woocommerce-shipping-contents,
.cart_totals .shipping td > p {
	margin: 14px 0 0;
	color: var(--muted, #434844);
	font-size: 14px;
	line-height: 1.7;
}

.woocommerce-shipping-calculator {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px dashed rgba(66, 94, 36, 0.15);
}

.shipping-calculator-button {
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: none;
}

.shipping-calculator-form {
	display: grid;
	gap: 14px;
	padding-top: 16px;
}

.shipping-calculator-form .form-row {
	margin: 0;
}

.shipping-calculator-form label {
	display: block;
	margin-bottom: 8px;
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.shipping-calculator-form select,
.shipping-calculator-form .input-text {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 12px;
	background: var(--cream, #fef7ee);
	color: var(--text, #242424);
	font-size: 15px;
	font-weight: 500;
}

.shipping-calculator-form select:focus,
.shipping-calculator-form .input-text:focus {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 3px;
}

.cart_totals table tr.order-total th,
.cart_totals table tr.order-total td {
	padding: 16px 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--orange, #e87a12);
}

.cart_totals table tr.order-total td .amount,
.cart_totals table tr.order-total td .woocommerce-Price-amount {
	color: var(--orange, #e87a12);
}

.woocommerce-proceed-to-checkout {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
}

.checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 20px 28px;
	border: none;
	border-radius: 14px;
	background: var(--orange, #e87a12);
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, opacity 180ms ease;
	cursor: pointer;
}

.checkout-button:hover {
	background: var(--orange-strong, #ed6a1a);
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(232, 122, 18, 0.22);
}

.cart-page--empty {
	gap: 24px;
}

.cart-empty-page {
	padding: 40px 36px;
}

.cart-empty-page .woocommerce-info {
	margin-bottom: 20px;
}

.return-to-shop {
	margin: 0;
}

.return-to-shop .wc-backward {
	background: var(--orange, #e87a12);
}

.return-to-shop .wc-backward:hover {
	background: var(--orange-strong, #ed6a1a);
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(232, 122, 18, 0.22);
}

@media screen and (max-width: 980px) {
	body.woocommerce-cart .site-main {
		padding: 132px 0 84px;
	}

	.cart-page__intro {
		flex-direction: column;
		align-items: flex-start;
	}

	.cart-page__meta {
		white-space: normal;
	}

	.cart-collaterals {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 768px) {
	body.woocommerce-cart .site-main {
		width: min(calc(100% - 32px), var(--container));
		padding: 120px 0 72px;
	}

	body.woocommerce-cart .entry-header {
		margin-bottom: 16px;
	}

	body.woocommerce-cart .entry-title {
		font-size: 38px;
	}

	.woocommerce-cart-form__contents {
		border: none;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.woocommerce-cart-form thead {
		display: none;
	}

	.woocommerce-cart-form tbody {
		display: grid;
		gap: 16px;
	}

	.woocommerce-cart-form tbody tr {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 14px 16px;
		padding: 20px;
		border: 1px solid rgba(66, 94, 36, 0.08);
		border-radius: 20px;
		background: #fff;
		box-shadow: 0 18px 36px rgba(66, 94, 36, 0.06);
	}

	.woocommerce-cart-form tbody tr:hover {
		background: #fff;
		border-color: rgba(66, 94, 36, 0.12);
	}

	.woocommerce-cart-form tbody td {
		padding: 0;
	}

	.woocommerce-cart-form .product-remove {
		grid-column: 2;
		width: auto;
		text-align: right;
	}

	.woocommerce-cart-form .product-thumbnail {
		grid-column: 1;
		grid-row: 1 / span 4;
		width: 92px;
	}

	.woocommerce-cart-form .product-name {
		grid-column: 2;
		font-size: 18px;
	}

	.woocommerce-cart-form .product-price,
	.woocommerce-cart-form .product-quantity,
	.woocommerce-cart-form .product-subtotal {
		grid-column: 2;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		font-size: 16px;
		text-align: left;
	}

	.woocommerce-cart-form .product-price::before,
	.woocommerce-cart-form .product-quantity::before,
	.woocommerce-cart-form .product-subtotal::before {
		content: attr(data-title);
		flex-shrink: 0;
		color: var(--green, #425e24);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.14em;
		line-height: 1.4;
		text-transform: uppercase;
	}

	.woocommerce-cart-form .product-remove::before,
	.woocommerce-cart-form .product-thumbnail::before,
	.woocommerce-cart-form .product-name::before {
		display: none;
	}

	.woocommerce-cart-form .quantity {
		justify-content: flex-end;
	}

	.woocommerce-cart-form tbody tr.cart-actions-row {
		grid-template-columns: 1fr;
		padding: 0;
		border: none;
		background: transparent;
		box-shadow: none;
	}

	.cart-actions {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		border: 1px solid rgba(66, 94, 36, 0.08);
		border-radius: 20px;
	}

	.cart-actions .coupon,
	.cart-actions__buttons {
		width: 100%;
	}

	.cart-actions .coupon {
		flex-direction: column;
		align-items: stretch;
	}

	.cart-actions .coupon .input-text,
	.cart-actions .coupon .button,
	.cart-actions__buttons .button {
		width: 100%;
	}

	.cross-sells,
	.cart-collaterals .cart_totals,
	.cart-empty-page {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.cross-sells h2,
	.cart_totals h2 {
		font-size: 26px;
	}
}

@media screen and (max-width: 520px) {
	body.woocommerce-cart .entry-title {
		font-size: 34px;
	}

	.cart-page__copy {
		font-size: 16px;
	}

	.woocommerce-cart-form tbody tr {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart-form .product-remove,
	.woocommerce-cart-form .product-thumbnail,
	.woocommerce-cart-form .product-name,
	.woocommerce-cart-form .product-price,
	.woocommerce-cart-form .product-quantity,
	.woocommerce-cart-form .product-subtotal {
		grid-column: 1;
	}

	.woocommerce-cart-form .product-thumbnail {
		grid-row: auto;
		width: 110px;
	}

	.woocommerce-cart-form .product-remove {
		order: -1;
	}

	.woocommerce-cart-form .product-price,
	.woocommerce-cart-form .product-quantity,
	.woocommerce-cart-form .product-subtotal {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

/**
 * Products
 */
ul.products {
	margin: 0;
	padding: 0;
}

ul.products li.product {
	list-style: none;
	position: relative;
	margin-bottom: 2em;
}

ul.products li.product img {
	display: block;
}

ul.products li.product .button {
	display: block;
}

@media screen and (min-width: 48em) {

	ul.products li.product {
		width: 30.79667%;
		float: left;
		margin-right: 3.8%;
	}

	ul.products li.product.first {
		clear: both;
	}

	ul.products li.product.last {
		margin-right: 0;
	}

	ul.products.columns-1 li.product {
		float: none;
		width: 100%;
	}

	ul.products.columns-2 li.product {
		width: 48.1%;
	}

	ul.products.columns-3 li.product {
		width: 30.79667%;
	}

	ul.products.columns-4 li.product {
		width: 22.15%;
	}

	ul.products.columns-5 li.product {
		width: 16.96%;
	}

	ul.products.columns-6 li.product {
		width: 13.49333%;
	}
}

/**
 * Single product
 */
.single-product div.product {
	position: relative;
}

.single-product div.product .woocommerce-product-gallery {
	position: relative;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 2em;
	right: 1em;
	display: block;
	z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	cursor: pointer;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: 0.5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 30.79667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: both;
}

.stock:empty::before {
	display: none;
}

.stock.in-stock {
	color: #0f834d;
}

.stock.out-of-stock {
	color: #e2401c;
}

/**
 * Single product refresh
 *
 * Reuses the palette, spacing, card treatment, and type scale from
 * src/styles.css so the WooCommerce product detail view matches the rest of
 * the theme instead of falling back to the default Storefront-style layout.
 */
body.single-product .site-main {
	width: min(calc(100% - 48px), var(--container));
	margin: 0 auto;
	padding: 120px 0 96px;
}

body.single-product .site-main > .woocommerce-notices-wrapper {
	margin-bottom: 24px;
}

body.single-product .woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
	color: #6b6b6b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.5;
	text-transform: uppercase;
}

body.single-product .woocommerce-breadcrumb a {
	color: var(--green, #425e24);
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 48px;
	align-items: start;
}

.single-product div.product .images,
.single-product div.product .summary {
	float: none;
	width: auto;
	margin: 0;
}

.single-product div.product span.onsale {
	position: absolute;
	top: 22px;
	left: 22px;
	z-index: 3;
	min-width: 0;
	margin: 0;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(66, 94, 36, 0.94);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.single-product div.product .woocommerce-product-gallery {
	position: relative;
	float: none;
	width: 100%;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	top: 22px;
	right: 22px;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 24px rgba(66, 94, 36, 0.12);
	color: var(--green, #425e24);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 16px;
	border-radius: 24px;
	background: #fff;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image,
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
	border-radius: 22px;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
	display: block;
	overflow: hidden;
	background: var(--paper, #f1e5d5);
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
	width: 100%;
	border-radius: 22px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	float: none;
	width: auto !important;
	margin: 0 !important;
	border-radius: 18px;
	background: #fff;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	width: 100%;
	height: 96px;
	border-radius: 12px;
	object-fit: cover;
	opacity: 0.62;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .summary {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 40px 36px;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
}

.single-product div.product .product_title {
	margin: 0;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: clamp(28px, 6vw, 48px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.single-product div.product .woocommerce-product-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: #574235;
	font-size: 14px;
	line-height: 1.5;
}

.single-product div.product .woocommerce-product-rating .star-rating {
	margin: 0;
	color: var(--orange, #e87a12);
}

.single-product div.product .woocommerce-review-link {
	color: var(--green, #425e24);
	font-weight: 600;
}

.single-product div.product p.price,
.single-product div.product span.price {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 12px;
	margin: 0;
	color: var(--orange, #e87a12);
	font-family: "Montserrat", sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.single-product div.product p.price del,
.single-product div.product span.price del {
	color: #7f786f;
	font-size: 20px;
	font-weight: 600;
	opacity: 1;
}

.single-product div.product p.price ins,
.single-product div.product span.price ins {
	color: var(--orange, #e87a12);
	text-decoration: none;
}

.single-product div.product .woocommerce-product-details__short-description {
	color: var(--muted, #434844);
	font-size: 17px;
	line-height: 1.9;
}

.single-product div.product .woocommerce-product-details__short-description p {
	margin: 0;
}

.single-product div.product .woocommerce-product-details__short-description ul {
	margin: 16px 0 0;
	padding-left: 20px;
}

.single-product div.product .stock {
	display: inline-flex;
	align-self: flex-start;
	margin: 0;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(133, 181, 43, 0.16);
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.single-product div.product .stock.out-of-stock {
	background: rgba(237, 106, 26, 0.12);
	color: var(--orange-strong, #ed6a1a);
}

.single-product div.product form.cart,
.single-product div.product .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 4px 0 0;
}

.single-product div.product form.cart table.variations {
	width: 100%;
	margin: 0 0 8px;
	border: 0;
	border-collapse: separate;
	border-spacing: 0 12px;
}

.single-product div.product form.cart table.variations th,
.single-product div.product form.cart table.variations td {
	padding: 0;
	background: transparent;
}

.single-product div.product form.cart table.variations th.label {
	padding-right: 18px;
	vertical-align: top;
}

.single-product div.product form.cart table.variations th.label label {
	display: inline-block;
	padding-top: 16px;
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.single-product div.product form.cart table.variations td.value {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.single-product div.product form.cart table.variations select,
.single-product div.product form.cart .variations select {
	min-width: 230px;
	min-height: 54px;
	padding: 12px 44px 12px 16px;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 12px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23425e24' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
			no-repeat right 12px center / 20px 20px,
		var(--cream, #fef7ee);
	color: var(--text, #242424);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	appearance: none;
}

.single-product div.product .reset_variations {
	color: var(--orange, #e87a12);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.single-product div.product .quantity {
	margin: 0;
}

.single-product div.product .quantity .qty {
	width: 88px;
	height: 56px;
	padding: 0 12px;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 12px;
	background: var(--cream, #fef7ee);
	color: var(--green, #425e24);
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}

.single-product div.product .single_add_to_cart_button.button.alt,
.single-product div.product .woocommerce-variation-add-to-cart .single_add_to_cart_button.button.alt {
	min-height: 56px;
	padding: 18px 28px;
	border: 0;
	border-radius: 12px;
	background: var(--orange, #e87a12);
	box-shadow: 0 14px 26px rgba(232, 122, 18, 0.22);
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.09em;
	line-height: 1;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.single-product div.product .single_add_to_cart_button.button.alt:hover,
.single-product div.product .woocommerce-variation-add-to-cart .single_add_to_cart_button.button.alt:hover {
	background: var(--orange-strong, #ed6a1a);
	box-shadow: 0 18px 30px rgba(232, 122, 18, 0.28);
	transform: translateY(-1px);
}

.single-product div.product .single_add_to_cart_button.button.alt:focus-visible,
.single-product div.product .woocommerce-variation-add-to-cart .single_add_to_cart_button.button.alt:focus-visible,
.single-product div.product .quantity .qty:focus-visible,
.single-product div.product form.cart table.variations select:focus-visible {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 3px;
}

/* Add to Wishlist button styling */
.single-product div.product .yith-wcwl-add-to-wishlist-button,
.single-product div.product .yith-add-to-wishlist-button-block,
.single-product div.product a.add_to_wishlist,
.single-product div.product .woosw-btn {
	position: absolute;
	top: 22px;
	right: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 24px rgba(66, 94, 36, 0.12);
	color: var(--green, #425e24);
	font-size: 0;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.single-product div.product .yith-wcwl-add-to-wishlist-button:hover,
.single-product div.product .yith-add-to-wishlist-button-block:hover,
.single-product div.product a.add_to_wishlist:hover,
.single-product div.product .woosw-btn:hover {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 14px 28px rgba(66, 94, 36, 0.16);
	transform: translateY(-2px);
}

.single-product div.product .yith-wcwl-add-to-wishlist-button:focus-visible,
.single-product div.product .yith-add-to-wishlist-button-block:focus-visible,
.single-product div.product a.add_to_wishlist:focus-visible,
.single-product div.product .woosw-btn:focus-visible {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 3px;
}

.single-product div.product .yith-wcwl-add-to-wishlist-button__label,
.single-product div.product .woosw-btn-text {
	display: none;
}

.single-product div.product .product_meta {
	display: grid;
	gap: 10px;
	padding-top: 22px;
	border-top: 1px solid rgba(66, 94, 36, 0.1);
	color: #574235;
	font-size: 14px;
	line-height: 1.7;
}

.single-product div.product .product_meta > span {
	display: block;
}

.single-product div.product .product_meta a {
	color: var(--green, #425e24);
	font-weight: 600;
}

.single-product div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 56px;
	padding: 36px;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
}

.single-product div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 28px;
}

.single-product div.product .woocommerce-tabs ul.tabs li {
	display: inline-flex;
}

.single-product div.product .woocommerce-tabs ul.tabs li a {
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(241, 229, 213, 0.72);
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active a {
	background: var(--green, #425e24);
	color: #fff;
}

.single-product div.product .woocommerce-tabs .panel {
	color: var(--muted, #434844);
	font-size: 16px;
	line-height: 1.9;
}

.single-product div.product .woocommerce-tabs .panel > :first-child {
	margin-top: 0;
}

.single-product div.product .woocommerce-tabs .panel h2:first-of-type {
	margin-bottom: 16px;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.2;
}

.single-product div.product .woocommerce-tabs table.shop_attributes,
.single-product div.product .woocommerce-tabs table.shop_attributes th,
.single-product div.product .woocommerce-tabs table.shop_attributes td {
	border: 0;
}

.single-product div.product .woocommerce-tabs table.shop_attributes {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 10px;
}

.single-product div.product .woocommerce-tabs table.shop_attributes th,
.single-product div.product .woocommerce-tabs table.shop_attributes td {
	padding: 14px 18px;
	background: var(--cream, #fef7ee);
}

.single-product div.product .woocommerce-tabs table.shop_attributes th {
	width: 28%;
	border-radius: 14px 0 0 14px;
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.single-product div.product .woocommerce-tabs table.shop_attributes td {
	border-radius: 0 14px 14px 0;
}

body.single-product .related.products,
body.single-product .up-sells.upsells.products {
	grid-column: 1 / -1;
	margin-top: 72px;
}

body.single-product .related.products > h2,
body.single-product .up-sells.upsells.products > h2 {
	margin: 0 0 28px;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

body.single-product .related.products ul.products,
body.single-product .up-sells.upsells.products ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.single-product .related.products ul.products li.product,
body.single-product .up-sells.upsells.products ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
}

body.single-product .related.products ul.products li.product .woosw-btn,
body.single-product .related.products ul.products li.product .yith-add-to-wishlist-button-block,
body.single-product .related.products ul.products li.product .yith-wcwl-add-to-wishlist,
body.single-product .up-sells.upsells.products ul.products li.product .woosw-btn,
body.single-product .up-sells.upsells.products ul.products li.product .yith-add-to-wishlist-button-block,
body.single-product .up-sells.upsells.products ul.products li.product .yith-wcwl-add-to-wishlist {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	margin: 0;
}

body.single-product .related.products ul.products li.product .woosw-btn,
body.single-product .related.products ul.products li.product .yith-wcwl-add-to-wishlist-button,
body.single-product .related.products ul.products li.product a.add_to_wishlist,
body.single-product .up-sells.upsells.products ul.products li.product .woosw-btn,
body.single-product .up-sells.upsells.products ul.products li.product .yith-wcwl-add-to-wishlist-button,
body.single-product .up-sells.upsells.products ul.products li.product a.add_to_wishlist {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 24px rgba(66, 94, 36, 0.12);
	color: var(--green, #425e24);
	line-height: 1;
	text-decoration: none;
}

body.single-product .related.products ul.products li.product .woosw-btn .woosw-btn-text,
body.single-product .related.products ul.products li.product .yith-wcwl-add-to-wishlist-button__label,
body.single-product .up-sells.upsells.products ul.products li.product .woosw-btn .woosw-btn-text,
body.single-product .up-sells.upsells.products ul.products li.product .yith-wcwl-add-to-wishlist-button__label {
	display: none;
}

body.single-product .related.products ul.products li.product .woocommerce-loop-product__link,
body.single-product .up-sells.upsells.products ul.products li.product .woocommerce-loop-product__link {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.single-product .related.products ul.products li.product .onsale,
body.single-product .related.products ul.products li.product .star-rating,
body.single-product .up-sells.upsells.products ul.products li.product .onsale,
body.single-product .up-sells.upsells.products ul.products li.product .star-rating {
	display: none;
}

body.single-product .related.products ul.products li.product img,
body.single-product .up-sells.upsells.products ul.products li.product img {
	width: 100%;
	height: 278px;
	margin: 0;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	background: var(--paper, #f1e5d5);
}

body.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
body.single-product .up-sells.upsells.products ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	color: var(--green, #425e24);
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.68;
}

body.single-product .related.products ul.products li.product .price,
body.single-product .up-sells.upsells.products ul.products li.product .price {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 5px 0;
	color: var(--orange, #e87a12);
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.044em;
	line-height: 1;
}

body.single-product .related.products ul.products li.product .price del,
body.single-product .up-sells.upsells.products ul.products li.product .price del {
	color: #6b6b6b;
	font-size: 16px;
	font-weight: 600;
	opacity: 1;
}

body.single-product .related.products ul.products li.product .price ins,
body.single-product .up-sells.upsells.products ul.products li.product .price ins {
	color: #e87a12;
	text-decoration: none;
}

body.single-product .related.products ul.products li.product .button,
body.single-product .up-sells.upsells.products ul.products li.product .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 154px;
	min-height: 48px;
	margin-top: 0;
	padding: 16px 22px;
	border: 0;
	border-radius: 8px;
	background: #e87a12;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

body.single-product .related.products ul.products li.product .button:hover,
body.single-product .up-sells.upsells.products ul.products li.product .button:hover {
	background: #ed6a1a;
	box-shadow: 0 10px 18px rgba(232, 122, 18, 0.2);
	transform: translateY(-1px);
}

@media screen and (max-width: 1120px) {
	body.single-product .site-main {
		padding-top: 136px;
	}

	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	body.single-product .related.products ul.products,
	body.single-product .up-sells.upsells.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	body.single-product .site-main {
		width: min(calc(100% - 32px), var(--container));
		padding: 122px 0 72px;
	}

	body.single-product .woocommerce-breadcrumb {
		margin-bottom: 20px;
		font-size: 11px;
	}

	.single-product div.product .woocommerce-product-gallery .flex-viewport,
	.single-product div.product .summary,
	.single-product div.product .woocommerce-tabs {
		padding: 24px;
		border-radius: 22px;
	}

	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 10px;
	}

	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
		height: 72px;
	}

	.single-product div.product .product_title {
		font-size: 38px;
	}

	.single-product div.product p.price,
	.single-product div.product span.price {
		font-size: 28px;
	}

	.single-product div.product form.cart table.variations th.label {
		padding-right: 0;
	}

	.single-product div.product form.cart table.variations tr,
	.single-product div.product form.cart table.variations tbody,
	.single-product div.product form.cart table.variations th,
	.single-product div.product form.cart table.variations td {
		display: block;
		width: 100%;
	}

	.single-product div.product form.cart table.variations th.label label {
		padding-top: 0;
		margin-bottom: 8px;
	}

	.single-product div.product form.cart table.variations select,
	.single-product div.product form.cart .variations select,
	.single-product div.product .single_add_to_cart_button.button.alt,
	.single-product div.product .woocommerce-variation-add-to-cart .single_add_to_cart_button.button.alt {
		width: 100%;
	}

	.single-product div.product .quantity {
		width: 100%;
	}

	.single-product div.product .quantity .qty {
		width: 100%;
	}

	.single-product div.product .woocommerce-tabs ul.tabs li {
		width: 100%;
	}

	.single-product div.product .woocommerce-tabs ul.tabs li a {
		width: 100%;
		text-align: center;
	}

	body.single-product .related.products > h2,
	body.single-product .up-sells.upsells.products > h2 {
		font-size: 32px;
	}

	body.single-product .related.products ul.products,
	body.single-product .up-sells.upsells.products ul.products {
		grid-template-columns: 1fr;
	}
}

/**
 * Checkout
 */
body.woocommerce-checkout:not(.woocommerce-order-received) .site-main,
body.woocommerce-order-pay .site-main {
	width: min(calc(100% - 48px), var(--container));
	margin: 0 auto;
	padding: 132px 0 96px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .site-main > article,
body.woocommerce-order-pay .site-main > article {
	margin: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .entry-header,
body.woocommerce-order-pay .entry-header {
	margin: 0 0 20px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .entry-title,
body.woocommerce-order-pay .entry-title {
	margin: 0;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: clamp(40px, 5vw, 56px);
	font-weight: 600;
	line-height: 1.08;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .entry-content,
body.woocommerce-order-pay .entry-content {
	display: grid;
	gap: 24px;
	margin: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-notices-wrapper,
body.woocommerce-order-pay .woocommerce-notices-wrapper {
	display: grid;
	gap: 12px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login-toggle,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-message,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-info,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-error,
body.woocommerce-order-pay .woocommerce-message,
body.woocommerce-order-pay .woocommerce-info,
body.woocommerce-order-pay .woocommerce-error {
	margin: 0;
	padding: 18px 22px;
	border: 1px solid rgba(66, 94, 36, 0.14);
	border-left-width: 4px;
	border-radius: 16px;
	background: #fff;
	color: var(--text, #242424);
	box-shadow: 0 16px 34px rgba(66, 94, 36, 0.06);
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login-toggle,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-info,
body.woocommerce-order-pay .woocommerce-info {
	border-left-color: var(--orange, #e87a12);
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-message,
body.woocommerce-order-pay .woocommerce-message {
	border-left-color: var(--green-bright, #85b52b);
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-error,
body.woocommerce-order-pay .woocommerce-error {
	border-left-color: #cf5130;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .showcoupon,
body.woocommerce-checkout:not(.woocommerce-order-received) .showlogin,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-message a,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-info a,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-error a,
body.woocommerce-order-pay .woocommerce-message a,
body.woocommerce-order-pay .woocommerce-info a,
body.woocommerce-order-pay .woocommerce-error a {
	color: var(--green, #425e24);
	font-weight: 700;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login {
	display: grid;
	gap: 16px;
	padding: 28px 30px;
	border: 1px solid rgba(66, 94, 36, 0.08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon > p,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login > p {
	margin: 0;
	color: var(--muted, #434844);
	line-height: 1.7;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout,
body.woocommerce-order-pay form#order_review {
	display: grid;
	gap: 24px 28px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout {
	grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
	align-items: start;
}

body.woocommerce-order-pay form#order_review {
	max-width: 880px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	grid-column: 1;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set,
body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-1,
body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-2 {
	float: none;
	width: auto;
	margin: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-1,
body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-2,
body.woocommerce-order-pay form#order_review > table.shop_table,
body.woocommerce-order-pay form#order_review > #payment {
	padding: 30px;
	border: 1px solid rgba(66, 94, 36, 0.08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
}

body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-1,
body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-2 {
	display: grid;
	align-content: start;
	gap: 16px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set h3,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.08;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set h3 {
	margin: 0 0 4px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
	grid-column: 2;
	margin: 0;
	align-self: end;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review {
	grid-column: 2;
	padding: 30px;
	border: 1px solid rgba(66, 94, 36, 0.08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields__field-wrapper {
	display: grid;
	gap: 16px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields {
	grid-column: 1;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields h3 {
	margin: 0 0 16px;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.08;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .form-row,
body.woocommerce-order-pay .form-row {
	margin: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) label,
body.woocommerce-order-pay label {
	display: block;
	margin-bottom: 8px;
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

body.woocommerce-checkout:not(.woocommerce-order-received) input.input-text,
body.woocommerce-checkout:not(.woocommerce-order-received) textarea,
body.woocommerce-checkout:not(.woocommerce-order-received) select,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container .select2-selection--single,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container .select2-selection--multiple,
body.woocommerce-order-pay input.input-text,
body.woocommerce-order-pay textarea,
body.woocommerce-order-pay select,
body.woocommerce-order-pay .select2-container .select2-selection--single,
body.woocommerce-order-pay .select2-container .select2-selection--multiple {
	width: 100%;
	min-height: 54px;
	padding: 14px 16px;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 12px;
	background: var(--cream, #fef7ee);
	color: var(--text, #242424);
	font-size: 15px;
	font-weight: 500;
	box-shadow: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) textarea,
body.woocommerce-order-pay textarea {
	min-height: 132px;
	resize: vertical;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container .select2-selection--single,
body.woocommerce-order-pay .select2-container .select2-selection--single {
	display: flex;
	align-items: center;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container--default .select2-selection--single .select2-selection__rendered,
body.woocommerce-order-pay .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0;
	color: var(--text, #242424);
	line-height: 1.5;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container--default .select2-selection--single .select2-selection__arrow,
body.woocommerce-order-pay .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	right: 12px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) input.input-text:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) textarea:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) select:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container--focus .select2-selection,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container--open .select2-selection,
body.woocommerce-order-pay input.input-text:focus,
body.woocommerce-order-pay textarea:focus,
body.woocommerce-order-pay select:focus,
body.woocommerce-order-pay .select2-container--focus .select2-selection,
body.woocommerce-order-pay .select2-container--open .select2-selection {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 3px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-shipping-fields,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields {
	padding: 30px;
	border: 1px solid rgba(66, 94, 36, 0.08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 22px 48px rgba(66, 94, 36, 0.08);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #ship-to-different-address {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #ship-to-different-address label {
	margin: 0;
	color: var(--orange, #e87a12);
	font-family: "Baloo Chettan 2", sans-serif;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.08;
	text-transform: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) input[type="checkbox"],
body.woocommerce-order-pay input[type="checkbox"],
body.woocommerce-checkout:not(.woocommerce-order-received) input[type="radio"],
body.woocommerce-order-pay input[type="radio"] {
	accent-color: var(--orange, #e87a12);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table,
body.woocommerce-order-pay form#order_review > table.shop_table {
	width: 100%;
	border-collapse: collapse;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table thead th,
body.woocommerce-order-pay form#order_review > table.shop_table thead th {
	padding: 0 0 18px;
	border: 0;
	color: var(--green, #425e24);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-align: left;
	text-transform: uppercase;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tbody tr,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tfoot tr,
body.woocommerce-order-pay form#order_review > table.shop_table tbody tr,
body.woocommerce-order-pay form#order_review > table.shop_table tfoot tr {
	border-bottom: 1px solid rgba(66, 94, 36, 0.08);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tbody tr:last-child,
body.woocommerce-order-pay form#order_review > table.shop_table tbody tr:last-child {
	border-bottom-color: rgba(66, 94, 36, 0.12);
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table th,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table td,
body.woocommerce-order-pay form#order_review > table.shop_table th,
body.woocommerce-order-pay form#order_review > table.shop_table td {
	padding: 16px 0;
	border: 0;
	color: var(--muted, #434844);
	font-size: 15px;
	line-height: 1.7;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tbody .product-name,
body.woocommerce-order-pay form#order_review > table.shop_table tbody .product-name {
	color: var(--green, #425e24);
	font-weight: 600;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table .product-total,
body.woocommerce-order-pay form#order_review > table.shop_table .product-total,
body.woocommerce-order-pay form#order_review > table.shop_table .product-subtotal {
	text-align: right;
	white-space: nowrap;
	color: var(--orange, #e87a12);
	font-weight: 600;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tfoot th,
body.woocommerce-order-pay form#order_review > table.shop_table tfoot th {
	color: var(--text, #242424);
	font-weight: 600;
	text-align: left;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tfoot td,
body.woocommerce-order-pay form#order_review > table.shop_table tfoot td {
	text-align: right;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tr.order-total th,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tr.order-total td,
body.woocommerce-order-pay form#order_review > table.shop_table tr.order-total th,
body.woocommerce-order-pay form#order_review > table.shop_table tr.order-total td {
	padding-top: 18px;
	padding-bottom: 18px;
	color: var(--orange, #e87a12);
	font-size: 18px;
	font-weight: 700;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review .woocommerce-Price-amount,
body.woocommerce-order-pay form#order_review .woocommerce-Price-amount {
	color: inherit;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment,
body.woocommerce-order-pay form#order_review > #payment {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(66, 94, 36, 0.1);
}

body.woocommerce-order-pay form#order_review > #payment {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc_payment_methods,
body.woocommerce-order-pay .wc_payment_methods {
	display: grid;
	gap: 12px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc_payment_methods .wc_payment_method,
body.woocommerce-order-pay .wc_payment_methods .wc_payment_method {
	padding: 16px 18px;
	border-radius: 16px;
	background: var(--cream, #fef7ee);
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc_payment_methods .wc_payment_method > label,
body.woocommerce-order-pay .wc_payment_methods .wc_payment_method > label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--text, #242424);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.5;
	text-transform: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc_payment_methods .wc_payment_method img,
body.woocommerce-order-pay .wc_payment_methods .wc_payment_method img {
	max-height: 24px;
	width: auto;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .payment_box,
body.woocommerce-order-pay .payment_box {
	margin-top: 12px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #fff;
	color: var(--muted, #434844);
	font-size: 14px;
	line-height: 1.7;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .payment_box p,
body.woocommerce-order-pay .payment_box p,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-terms-and-conditions-wrapper p,
body.woocommerce-order-pay .woocommerce-terms-and-conditions-wrapper p,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-privacy-policy-text p,
body.woocommerce-order-pay .woocommerce-privacy-policy-text p {
	margin: 0;
	color: var(--muted, #434844);
	font-size: 14px;
	line-height: 1.7;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .place-order,
body.woocommerce-order-pay #payment .form-row {
	display: grid;
	gap: 16px;
	margin-top: 20px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .place-order label,
body.woocommerce-order-pay #payment .form-row label {
	display: inline;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.7;
	text-transform: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) button[name="woocommerce_checkout_update_totals"],
body.woocommerce-checkout:not(.woocommerce-order-received) #place_order,
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login .button,
body.woocommerce-order-pay #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 18px 28px;
	border: 0;
	border-radius: 14px;
	background: var(--orange, #e87a12);
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, opacity 180ms ease;
	cursor: pointer;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login .button {
	width: fit-content;
	min-width: 180px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) button[name="woocommerce_checkout_update_totals"]:hover,
body.woocommerce-checkout:not(.woocommerce-order-received) #place_order:hover,
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button:hover,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login .button:hover,
body.woocommerce-order-pay #place_order:hover {
	background: var(--orange-strong, #ed6a1a);
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(232, 122, 18, 0.22);
}

body.woocommerce-checkout:not(.woocommerce-order-received) button[name="woocommerce_checkout_update_totals"]:focus-visible,
body.woocommerce-checkout:not(.woocommerce-order-received) #place_order:focus-visible,
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button:focus-visible,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login .button:focus-visible,
body.woocommerce-order-pay #place_order:focus-visible {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 4px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login .lost_password {
	margin: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login .lost_password a {
	color: var(--green, #425e24);
	font-weight: 700;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-shipping-methods {
	margin-top: 0;
}

body.woocommerce-checkout .wc-block-components-checkbox {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--green, #425e24);
}

body.woocommerce-checkout .wc-block-components-checkbox > input[type="checkbox"] {
	flex: 0 0 auto;
	margin: 0;
}

body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__label {
	display: inline-block;
	margin: 0;
	color: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.45;
	text-transform: uppercase;
}

body.woocommerce-checkout .wc-block-components-radio-control__option {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

body.woocommerce-checkout .wc-block-components-radio-control__input {
	flex: 0 0 auto;
	margin: 3px 0 0;
}

body.woocommerce-checkout .wc-block-components-radio-control__option-layout {
	flex: 1 1 auto;
	display: grid;
	gap: 8px;
	min-width: 0;
}

body.woocommerce-checkout .wc-block-components-radio-control__label-group,
body.woocommerce-checkout .wc-block-components-radio-control__description-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 10px;
}

body.woocommerce-checkout .wc-block-components-radio-control__label,
body.woocommerce-checkout .wc-block-components-radio-control__secondary-label {
	color: var(--green, #425e24);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.45;
	text-transform: uppercase;
}

body.woocommerce-checkout .wc-block-components-radio-control__description,
body.woocommerce-checkout .wc-block-components-radio-control__secondary-description {
	color: var(--muted, #434844);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.6;
	text-transform: none;
}

@media screen and (max-width: 980px) {
	body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout {
		grid-template-columns: 1fr;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details,
	body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields,
	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading,
	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review {
		grid-column: 1;
	}
}

@media screen and (max-width: 768px) {
	body.woocommerce-checkout:not(.woocommerce-order-received) .site-main,
	body.woocommerce-order-pay .site-main {
		width: min(calc(100% - 32px), var(--container));
		padding: 120px 0 80px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .entry-title,
	body.woocommerce-order-pay .entry-title {
		font-size: 38px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
		grid-template-columns: 1fr;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon,
	body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-login,
	body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-1,
	body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-2,
	body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-shipping-fields,
	body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields,
	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review,
	body.woocommerce-order-pay form#order_review > table.shop_table,
	body.woocommerce-order-pay form#order_review > #payment {
		padding: 24px 20px;
		border-radius: 20px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .col2-set h3,
	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading,
	body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields h3 {
		font-size: 26px;
	}
}

@media screen and (max-width: 520px) {
	body.woocommerce-checkout:not(.woocommerce-order-received) .entry-title,
	body.woocommerce-order-pay .entry-title {
		font-size: 34px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table thead,
	body.woocommerce-order-pay form#order_review > table.shop_table thead {
		display: none;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tbody tr,
	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table tfoot tr,
	body.woocommerce-order-pay form#order_review > table.shop_table tbody tr,
	body.woocommerce-order-pay form#order_review > table.shop_table tfoot tr {
		display: grid;
		gap: 6px;
		padding: 12px 0;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table th,
	body.woocommerce-checkout:not(.woocommerce-order-received) #order_review table.shop_table td,
	body.woocommerce-order-pay form#order_review > table.shop_table th,
	body.woocommerce-order-pay form#order_review > table.shop_table td {
		padding: 0;
		text-align: left;
	}
}

@media screen and (min-width: 768px) {

	.col2-set .form-row-first {
		float: left;
		margin-right: 3.8%;
	}

	.col2-set .form-row-last {
		float: right;
		margin-right: 0;
	}

	.col2-set .form-row-first,
	.col2-set .form-row-last {
		width: 48.1%;
	}
}

/**
 * General WooCommerce components
 */

@keyframes natural-prime-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/**
 * Header cart
 */
.site-header-cart {
	position: relative;
	margin: 0;
	padding: 0;
}

.site-header-cart .cart-contents {
	text-decoration: none;
}

.site-header-cart .widget_shopping_cart {
	display: none;
}

.site-header-cart .product_list_widget {
	margin: 0;
	padding: 0;
}

/**
 * Star rating
 */
.star-rating {
	overflow: hidden;
	position: relative;
	height: 1.618em;
	line-height: 1.618;
	width: 5.3em;
	font-family: star;
	font-weight: 400;
}

.star-rating::before {
	content: "\53\53\53\53\53";
	opacity: 0.25;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span::before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: #4169e1;
}

p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 1px;
	font-weight: 400;
}

p.stars a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: star;
	content: "\53";
	color: #404040;
	text-indent: 0;
	opacity: 0.25;
}

p.stars a:hover ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars:hover a::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

p.stars.selected a.active::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

p.stars.selected a.active ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.woocommerce-tabs ul.tabs li {
	display: block;
	margin: 0;
	position: relative;
}

.woocommerce-tabs ul.tabs li a {
	padding: 1em 0;
	display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
	margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
	text-align: right;
}

.woocommerce-password-strength.strong {
	color: #0f834d;
}

.woocommerce-password-strength.short {
	color: #e2401c;
}

.woocommerce-password-strength.bad {
	color: #e2401c;
}

.woocommerce-password-strength.good {
	color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
	box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
	box-shadow: inset 2px 0 0 #e2401c;
}

.required {
	color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background-color: #0f834d;
	clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	background-color: #3d9cd2;
}

.woocommerce-error {
	background-color: #e2401c;
}

.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em;
	background-color: #3d9cd2;
	z-index: 9999;
}

@media screen and (min-width: 48em) {

	/**
	 * Header cart
	 */
	.site-header-cart .widget_shopping_cart {
		position: absolute;
		top: 100%;
		width: 100%;
		z-index: 999999;
		left: -999em;
		display: block;
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	}

	.site-header-cart:hover .widget_shopping_cart,
	.site-header-cart.focus .widget_shopping_cart {
		left: 0;
		display: block;
	}
}

/**
 * WooCommerce widgets
 */

/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
	margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
	text-align: right;
	line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
	float: left;
}

.widget_price_filter .ui-slider {
	position: relative;
	text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1em;
	height: 1em;
	cursor: ew-resize;
	outline: none;
	background: #4169e1;
	box-sizing: border-box;
	margin-top: -0.25em;
	opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
	box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	background: #4169e1;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
	height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	height: 100%;
}

/**
 * Product archive redesign
 *
 * Matches the Figma shop layout while reusing the theme token palette from
 * src/styles.css (imported via style.css).
 */
body.post-type-archive-product .shop-archive-section__container,
body.tax-product_cat .shop-archive-section__container,
body.tax-product_tag .shop-archive-section__container {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	row-gap: 0;
}

body.post-type-archive-product .shop-archive-panel-toggle,
body.tax-product_cat .shop-archive-panel-toggle,
body.tax-product_tag .shop-archive-panel-toggle {
	display: none;
}

body.post-type-archive-product .shop-archive-banner,
body.tax-product_cat .shop-archive-banner,
body.tax-product_tag .shop-archive-banner {
	grid-column: 1 / -1;
	padding: 48px 24px;
	min-height: 370px;
	background:
		linear-gradient(rgba(254, 247, 238, 0.12), rgba(254, 247, 238, 0.12)),
		url("img/banner-bg.png") center center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

body.post-type-archive-product .shop-archive-banner__inner,
body.tax-product_cat .shop-archive-banner__inner,
body.tax-product_tag .shop-archive-banner__inner {
	width: min(800px, 100%);
	padding-top: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

body.post-type-archive-product .shop-archive-banner__title,
body.tax-product_cat .shop-archive-banner__title,
body.tax-product_tag .shop-archive-banner__title {
	margin: 0;
	color: var(--orange, #e87a12);
	font-family: "Montserrat", sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

body.post-type-archive-product .shop-archive-banner__copy,
body.tax-product_cat .shop-archive-banner__copy,
body.tax-product_tag .shop-archive-banner__copy {
	width: min(672px, 100%);
	margin: 0;
	color: #574235;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.6;
	text-align: center;
}

body.post-type-archive-product .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	row-gap: 24px;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 56px 0 96px;
}

body.post-type-archive-product .site-main > *,
body.tax-product_cat .site-main > *,
body.tax-product_tag .site-main > * {
	min-width: 0;
}

body.post-type-archive-product .woocommerce-products-header,
body.post-type-archive-product .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-products-header,
body.tax-product_cat .woocommerce-breadcrumb,
body.tax-product_tag .woocommerce-products-header,
body.tax-product_tag .woocommerce-breadcrumb {
	display: none;
}

body.post-type-archive-product .woocommerce-notices-wrapper,
body.post-type-archive-product ul.products,
body.post-type-archive-product nav.woocommerce-pagination,
body.post-type-archive-product .woocommerce-info,
body.post-type-archive-product .woocommerce-error,
body.post-type-archive-product .woocommerce-message,
body.tax-product_cat .woocommerce-notices-wrapper,
body.tax-product_cat ul.products,
body.tax-product_cat nav.woocommerce-pagination,
body.tax-product_cat .woocommerce-info,
body.tax-product_cat .woocommerce-error,
body.tax-product_cat .woocommerce-message,
body.tax-product_tag .woocommerce-notices-wrapper,
body.tax-product_tag ul.products,
body.tax-product_tag nav.woocommerce-pagination,
body.tax-product_tag .woocommerce-info,
body.tax-product_tag .woocommerce-error,
body.tax-product_tag .woocommerce-message {
	grid-column: 1 / -1;
}

body.post-type-archive-product .woocommerce-notices-wrapper:empty,
body.tax-product_cat .woocommerce-notices-wrapper:empty,
body.tax-product_tag .woocommerce-notices-wrapper:empty {
	display: none;
}

body.post-type-archive-product p.woocommerce-result-count,
body.tax-product_cat p.woocommerce-result-count,
body.tax-product_tag p.woocommerce-result-count {
	grid-column: 1;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 16px 0 16px 16px;
	border-radius: 12px 0 0 12px;
	background: rgba(255, 255, 255, 0.5);
	color: #574235;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

body.post-type-archive-product form.woocommerce-ordering,
body.tax-product_cat form.woocommerce-ordering,
body.tax-product_tag form.woocommerce-ordering {
	grid-column: 2;
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 16px 16px 16px 0;
	border-radius: 0 12px 12px 0;
	background: rgba(255, 255, 255, 0.5);
}

body.post-type-archive-product form.woocommerce-ordering::before,
body.tax-product_cat form.woocommerce-ordering::before,
body.tax-product_tag form.woocommerce-ordering::before {
	content: "SORT BY:";
	color: #574235;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4;
	text-transform: uppercase;
}

body.post-type-archive-product .woocommerce-ordering .orderby,
body.tax-product_cat .woocommerce-ordering .orderby,
body.tax-product_tag .woocommerce-ordering .orderby {
	min-width: 220px;
	padding: 8px 40px 8px 12px;
	border: 0;
	border-radius: 8px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23574235' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
			no-repeat right 8px center / 24px 24px,
		transparent;
	color: #201b12;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	appearance: none;
}

body.post-type-archive-product .woocommerce-ordering .orderby:focus,
body.tax-product_cat .woocommerce-ordering .orderby:focus,
body.tax-product_tag .woocommerce-ordering .orderby:focus {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 2px;
}

body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
}

body.post-type-archive-product ul.products li.product a,
body.tax-product_cat ul.products li.product a,
body.tax-product_tag ul.products li.product a {
	text-decoration: none;
}

body.post-type-archive-product ul.products li.product .woocommerce-loop-product__link,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__link,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__link {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.post-type-archive-product ul.products li.product .onsale,
body.tax-product_cat ul.products li.product .onsale,
body.tax-product_tag ul.products li.product .onsale,
body.post-type-archive-product ul.products li.product .star-rating,
body.tax-product_cat ul.products li.product .star-rating,
body.tax-product_tag ul.products li.product .star-rating {
	display: none;
}

body.post-type-archive-product ul.products li.product img,
body.tax-product_cat ul.products li.product img,
body.tax-product_tag ul.products li.product img {
	width: 100%;
	height: 278px;
	margin: 0;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	background: #f1e5d5;
}

body.post-type-archive-product ul.products li.product .woosw-btn,
body.tax-product_cat ul.products li.product .woosw-btn,
body.tax-product_tag ul.products li.product .woosw-btn,
body.post-type-archive-product ul.products li.product .yith-add-to-wishlist-button-block,
body.tax-product_cat ul.products li.product .yith-add-to-wishlist-button-block,
body.tax-product_tag ul.products li.product .yith-add-to-wishlist-button-block,
body.post-type-archive-product ul.products li.product .yith-wcwl-add-to-wishlist,
body.tax-product_cat ul.products li.product .yith-wcwl-add-to-wishlist,
body.tax-product_tag ul.products li.product .yith-wcwl-add-to-wishlist {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	margin: 0;
}

body.post-type-archive-product ul.products li.product .woosw-btn,
body.tax-product_cat ul.products li.product .woosw-btn,
body.tax-product_tag ul.products li.product .woosw-btn,
body.post-type-archive-product ul.products li.product .yith-wcwl-add-to-wishlist-button,
body.tax-product_cat ul.products li.product .yith-wcwl-add-to-wishlist-button,
body.tax-product_tag ul.products li.product .yith-wcwl-add-to-wishlist-button,
body.post-type-archive-product ul.products li.product a.add_to_wishlist,
body.tax-product_cat ul.products li.product a.add_to_wishlist,
body.tax-product_tag ul.products li.product a.add_to_wishlist {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(66, 94, 36, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 24px rgba(66, 94, 36, 0.12);
	color: #425e24;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

body.post-type-archive-product ul.products li.product .woosw-btn:hover,
body.tax-product_cat ul.products li.product .woosw-btn:hover,
body.tax-product_tag ul.products li.product .woosw-btn:hover,
body.post-type-archive-product ul.products li.product .yith-wcwl-add-to-wishlist-button:hover,
body.tax-product_cat ul.products li.product .yith-wcwl-add-to-wishlist-button:hover,
body.tax-product_tag ul.products li.product .yith-wcwl-add-to-wishlist-button:hover,
body.post-type-archive-product ul.products li.product a.add_to_wishlist:hover,
body.tax-product_cat ul.products li.product a.add_to_wishlist:hover,
body.tax-product_tag ul.products li.product a.add_to_wishlist:hover {
	background: #425e24;
	box-shadow: 0 16px 26px rgba(66, 94, 36, 0.2);
	color: #fff;
	transform: translateY(-1px);
}

body.post-type-archive-product ul.products li.product .woosw-btn .woosw-btn-text,
body.tax-product_cat ul.products li.product .woosw-btn .woosw-btn-text,
body.tax-product_tag ul.products li.product .woosw-btn .woosw-btn-text,
body.post-type-archive-product ul.products li.product .yith-wcwl-add-to-wishlist-button__label,
body.tax-product_cat ul.products li.product .yith-wcwl-add-to-wishlist-button__label,
body.tax-product_tag ul.products li.product .yith-wcwl-add-to-wishlist-button__label {
	display: none;
}

body.post-type-archive-product ul.products li.product .woosw-btn .woosw-btn-icon,
body.tax-product_cat ul.products li.product .woosw-btn .woosw-btn-icon,
body.tax-product_tag ul.products li.product .woosw-btn .woosw-btn-icon {
	margin: 0;
	font-size: 18px;
	line-height: 1;
}

body.post-type-archive-product ul.products li.product .woosw-btn:not(.woosw-btn-has-icon),
body.tax-product_cat ul.products li.product .woosw-btn:not(.woosw-btn-has-icon),
body.tax-product_tag ul.products li.product .woosw-btn:not(.woosw-btn-has-icon) {
	font-size: 0;
}

body.post-type-archive-product ul.products li.product .woosw-btn:not(.woosw-btn-has-icon)::before,
body.tax-product_cat ul.products li.product .woosw-btn:not(.woosw-btn-has-icon)::before,
body.tax-product_tag ul.products li.product .woosw-btn:not(.woosw-btn-has-icon)::before {
	content: "\2661";
	font-size: 20px;
	line-height: 1;
}

body.post-type-archive-product ul.products li.product .woosw-btn.woosw-added,
body.tax-product_cat ul.products li.product .woosw-btn.woosw-added,
body.tax-product_tag ul.products li.product .woosw-btn.woosw-added,
body.post-type-archive-product ul.products li.product .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added,
body.tax-product_cat ul.products li.product .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added,
body.tax-product_tag ul.products li.product .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added,
body.post-type-archive-product ul.products li.product a.add_to_wishlist.exists,
body.tax-product_cat ul.products li.product a.add_to_wishlist.exists,
body.tax-product_tag ul.products li.product a.add_to_wishlist.exists {
	background: #425e24;
	color: #fff;
}

body.post-type-archive-product ul.products li.product .yith-wcwl-add-to-wishlist-button svg,
body.tax-product_cat ul.products li.product .yith-wcwl-add-to-wishlist-button svg,
body.tax-product_tag ul.products li.product .yith-wcwl-add-to-wishlist-button svg,
body.post-type-archive-product ul.products li.product a.add_to_wishlist svg,
body.tax-product_cat ul.products li.product a.add_to_wishlist svg,
body.tax-product_tag ul.products li.product a.add_to_wishlist svg {
	width: 20px;
	height: 20px;
}

body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	color: #425e24;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.68;
}

body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 5px 0;
	color: #e87a12;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.044em;
	line-height: 1;
}

body.post-type-archive-product ul.products li.product .price del,
body.tax-product_cat ul.products li.product .price del,
body.tax-product_tag ul.products li.product .price del {
	color: #6b6b6b;
	font-size: 16px;
	font-weight: 600;
	opacity: 1;
}

body.post-type-archive-product ul.products li.product .price ins,
body.tax-product_cat ul.products li.product .price ins,
body.tax-product_tag ul.products li.product .price ins {
	color: #e87a12;
	text-decoration: none;
}

body.post-type-archive-product ul.products li.product .price .amount,
body.tax-product_cat ul.products li.product .price .amount,
body.tax-product_tag ul.products li.product .price .amount {
	color: inherit;
}

body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title + .price,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title + .price,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title + .price {
	margin-top: -4px;
}

body.post-type-archive-product ul.products li.product .button,
body.tax-product_cat ul.products li.product .button,
body.tax-product_tag ul.products li.product .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 154px;
	min-height: 48px;
	margin-top: 0;
	padding: 16px 22px;
	border: 0;
	border-radius: 8px;
	background: #e87a12;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

body.post-type-archive-product ul.products li.product .button:hover,
body.tax-product_cat ul.products li.product .button:hover,
body.tax-product_tag ul.products li.product .button:hover {
	background: #ed6a1a;
	box-shadow: 0 10px 18px rgba(232, 122, 18, 0.2);
	transform: translateY(-1px);
}

body.post-type-archive-product ul.products li.product .button:focus-visible,
body.tax-product_cat ul.products li.product .button:focus-visible,
body.tax-product_tag ul.products li.product .button:focus-visible {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 4px;
}

body.post-type-archive-product ul.products li.product .button.loading,
body.tax-product_cat ul.products li.product .button.loading,
body.tax-product_tag ul.products li.product .button.loading {
	color: rgba(255, 255, 255, 0.78);
	pointer-events: none;
}

body.post-type-archive-product ul.products li.product .button.loading::after,
body.tax-product_cat ul.products li.product .button.loading::after,
body.tax-product_tag ul.products li.product .button.loading::after {
	content: "";
	width: 16px;
	height: 16px;
	margin-left: 10px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 999px;
	animation: natural-prime-spin 700ms linear infinite;
}

body.post-type-archive-product ul.products li.product .button.added,
body.tax-product_cat ul.products li.product .button.added,
body.tax-product_tag ul.products li.product .button.added {
	background: var(--green, #425e24);
	box-shadow: 0 10px 18px rgba(66, 94, 36, 0.18);
	color: transparent;
}

body.post-type-archive-product ul.products li.product .button.added::after,
body.tax-product_cat ul.products li.product .button.added::after,
body.tax-product_tag ul.products li.product .button.added::after {
	content: "Added";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1;
	text-transform: uppercase;
}

body.post-type-archive-product ul.products li.product .button.added::before,
body.tax-product_cat ul.products li.product .button.added::before,
body.tax-product_tag ul.products li.product .button.added::before {
	content: "\2713";
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #dff0c2;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

body.post-type-archive-product ul.products li.product .added_to_cart.wc-forward,
body.tax-product_cat ul.products li.product .added_to_cart.wc-forward,
body.tax-product_tag ul.products li.product .added_to_cart.wc-forward {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-top: -2px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--green, #425e24);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-decoration: none;
	text-transform: uppercase;
}

body.post-type-archive-product ul.products li.product .added_to_cart.wc-forward::after,
body.tax-product_cat ul.products li.product .added_to_cart.wc-forward::after,
body.tax-product_tag ul.products li.product .added_to_cart.wc-forward::after {
	content: "→";
	font-size: 14px;
	line-height: 1;
}

body.post-type-archive-product ul.products li.product .added_to_cart.wc-forward:hover,
body.tax-product_cat ul.products li.product .added_to_cart.wc-forward:hover,
body.tax-product_tag ul.products li.product .added_to_cart.wc-forward:hover {
	color: #ed6a1a;
}

body.post-type-archive-product ul.products li.product .added_to_cart.wc-forward:focus-visible,
body.tax-product_cat ul.products li.product .added_to_cart.wc-forward:focus-visible,
body.tax-product_tag ul.products li.product .added_to_cart.wc-forward:focus-visible {
	outline: 2px solid var(--green, #425e24);
	outline-offset: 4px;
}

body.post-type-archive-product nav.woocommerce-pagination,
body.tax-product_cat nav.woocommerce-pagination,
body.tax-product_tag nav.woocommerce-pagination {
	padding-top: 24px;
}

body.post-type-archive-product nav.woocommerce-pagination ul,
body.tax-product_cat nav.woocommerce-pagination ul,
body.tax-product_tag nav.woocommerce-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

body.post-type-archive-product nav.woocommerce-pagination ul li,
body.tax-product_cat nav.woocommerce-pagination ul li,
body.tax-product_tag nav.woocommerce-pagination ul li {
	border: 0;
	list-style: none;
}

body.post-type-archive-product nav.woocommerce-pagination ul li .page-numbers,
body.tax-product_cat nav.woocommerce-pagination ul li .page-numbers,
body.tax-product_tag nav.woocommerce-pagination ul li .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #dec1af;
	border-radius: 8px;
	background: transparent;
	color: #574235;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
}

body.post-type-archive-product nav.woocommerce-pagination ul li .page-numbers.current,
body.tax-product_cat nav.woocommerce-pagination ul li .page-numbers.current,
body.tax-product_tag nav.woocommerce-pagination ul li .page-numbers.current {
	border-color: #e87a12;
	background: #e87a12;
	color: #fff;
	font-weight: 600;
}

body.post-type-archive-product #secondary.widget-area,
body.tax-product_cat #secondary.widget-area,
body.tax-product_tag #secondary.widget-area {
	width: 100%;
	margin: 56px 0 48px;
	color: #574235;
}

@supports selector(.shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter)) {
	body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
	body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
	body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) {
		grid-template-columns: minmax(220px, 248px) minmax(0, 1fr);
		column-gap: 48px;
		align-items: start;
	}

	body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
	body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
	body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area {
		grid-column: 1;
		grid-row: 2;
		margin-bottom: 96px;
	}

	body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
	body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
	body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main {
		grid-column: 2;
		grid-row: 2;
	}
}

@supports selector(#secondary.widget-area:not(:has(.widget_product_categories, .widget_price_filter, .widget_rating_filter))) {
	body.post-type-archive-product #secondary.widget-area:not(:has(.widget_product_categories, .widget_price_filter, .widget_rating_filter)),
	body.tax-product_cat #secondary.widget-area:not(:has(.widget_product_categories, .widget_price_filter, .widget_rating_filter)),
	body.tax-product_tag #secondary.widget-area:not(:has(.widget_product_categories, .widget_price_filter, .widget_rating_filter)) {
		display: none;
	}
}

body.post-type-archive-product #secondary .widget,
body.tax-product_cat #secondary .widget,
body.tax-product_tag #secondary .widget {
	margin: 0 0 47px;
}

body.post-type-archive-product #secondary .widget:last-child,
body.tax-product_cat #secondary .widget:last-child,
body.tax-product_tag #secondary .widget:last-child {
	margin-bottom: 0;
}

body.post-type-archive-product #secondary .widget-title,
body.tax-product_cat #secondary .widget-title,
body.tax-product_tag #secondary .widget-title {
	margin: 0 0 16px;
	color: #201b12;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
}

body.post-type-archive-product #secondary ul,
body.tax-product_cat #secondary ul,
body.tax-product_tag #secondary ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.post-type-archive-product #secondary .widget_product_categories .product-categories,
body.tax-product_cat #secondary .widget_product_categories .product-categories,
body.tax-product_tag #secondary .widget_product_categories .product-categories {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

body.post-type-archive-product #secondary .widget_product_categories .cat-item,
body.tax-product_cat #secondary .widget_product_categories .cat-item,
body.tax-product_tag #secondary .widget_product_categories .cat-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 8px;
	border-radius: 8px;
}

body.post-type-archive-product #secondary .widget_product_categories .cat-item > a,
body.tax-product_cat #secondary .widget_product_categories .cat-item > a,
body.tax-product_tag #secondary .widget_product_categories .cat-item > a {
	flex: 1 1 auto;
	color: #574235;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

body.post-type-archive-product #secondary .widget_product_categories .count,
body.tax-product_cat #secondary .widget_product_categories .count,
body.tax-product_tag #secondary .widget_product_categories .count {
	flex-shrink: 0;
	opacity: 0.5;
	color: #574235;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4;
}

body.post-type-archive-product #secondary .widget_product_categories .current-cat,
body.tax-product_cat #secondary .widget_product_categories .current-cat,
body.tax-product_tag #secondary .widget_product_categories .current-cat {
	background: #f7ecdd;
}

body.post-type-archive-product #secondary .widget_product_categories .current-cat > a,
body.post-type-archive-product #secondary .widget_product_categories .current-cat > .count,
body.tax-product_cat #secondary .widget_product_categories .current-cat > a,
body.tax-product_cat #secondary .widget_product_categories .current-cat > .count,
body.tax-product_tag #secondary .widget_product_categories .current-cat > a,
body.tax-product_tag #secondary .widget_product_categories .current-cat > .count {
	color: #964900;
	font-weight: 600;
}

body.post-type-archive-product #secondary .widget_product_categories .children,
body.tax-product_cat #secondary .widget_product_categories .children,
body.tax-product_tag #secondary .widget_product_categories .children {
	margin-top: 4px;
	padding-left: 12px;
}

body.post-type-archive-product #secondary .widget_rating_filter ul,
body.tax-product_cat #secondary .widget_rating_filter ul,
body.tax-product_tag #secondary .widget_rating_filter ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

body.post-type-archive-product #secondary .widget_rating_filter ul li,
body.tax-product_cat #secondary .widget_rating_filter ul li,
body.tax-product_tag #secondary .widget_rating_filter ul li {
	margin: 0;
}

body.post-type-archive-product #secondary .widget_rating_filter ul li a,
body.tax-product_cat #secondary .widget_rating_filter ul li a,
body.tax-product_tag #secondary .widget_rating_filter ul li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #574235;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4;
}

body.post-type-archive-product #secondary .widget_rating_filter ul li a::before,
body.tax-product_cat #secondary .widget_rating_filter ul li a::before,
body.tax-product_tag #secondary .widget_rating_filter ul li a::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 1px solid #dec1af;
	border-radius: 4px;
	background: #fff;
	box-sizing: border-box;
}

body.post-type-archive-product #secondary .widget_rating_filter .count,
body.tax-product_cat #secondary .widget_rating_filter .count,
body.tax-product_tag #secondary .widget_rating_filter .count {
	display: none;
}

body.post-type-archive-product #secondary .widget_rating_filter .star-rating,
body.tax-product_cat #secondary .widget_rating_filter .star-rating,
body.tax-product_tag #secondary .widget_rating_filter .star-rating {
	height: 11px;
	width: 62px;
	font-size: 11px;
	line-height: 1;
}

body.post-type-archive-product #secondary .widget_rating_filter .star-rating::before,
body.tax-product_cat #secondary .widget_rating_filter .star-rating::before,
body.tax-product_tag #secondary .widget_rating_filter .star-rating::before {
	color: rgba(232, 122, 18, 0.28);
	opacity: 1;
}

body.post-type-archive-product #secondary .widget_rating_filter .star-rating span::before,
body.tax-product_cat #secondary .widget_rating_filter .star-rating span::before,
body.tax-product_tag #secondary .widget_rating_filter .star-rating span::before {
	color: #e87a12;
}

body.post-type-archive-product #secondary .widget_price_filter .price_slider,
body.tax-product_cat #secondary .widget_price_filter .price_slider,
body.tax-product_tag #secondary .widget_price_filter .price_slider {
	margin: 0 8px 8px;
}

body.post-type-archive-product #secondary .widget_price_filter .price_slider_wrapper .ui-widget-content,
body.tax-product_cat #secondary .widget_price_filter .price_slider_wrapper .ui-widget-content,
body.tax-product_tag #secondary .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: #ebe1d2;
}

body.post-type-archive-product #secondary .widget_price_filter .ui-slider-horizontal,
body.tax-product_cat #secondary .widget_price_filter .ui-slider-horizontal,
body.tax-product_tag #secondary .widget_price_filter .ui-slider-horizontal {
	height: 8px;
	border-radius: 999px;
}

body.post-type-archive-product #secondary .widget_price_filter .ui-slider .ui-slider-range,
body.tax-product_cat #secondary .widget_price_filter .ui-slider .ui-slider-range,
body.tax-product_tag #secondary .widget_price_filter .ui-slider .ui-slider-range {
	background: #e87a12;
	border-radius: 999px;
}

body.post-type-archive-product #secondary .widget_price_filter .ui-slider .ui-slider-handle,
body.tax-product_cat #secondary .widget_price_filter .ui-slider .ui-slider-handle,
body.tax-product_tag #secondary .widget_price_filter .ui-slider .ui-slider-handle {
	width: 16px;
	height: 16px;
	margin-top: -4px;
	border: 0;
	border-radius: 999px;
	background: #e87a12;
}

body.post-type-archive-product #secondary .widget_price_filter .price_slider_amount,
body.tax-product_cat #secondary .widget_price_filter .price_slider_amount,
body.tax-product_tag #secondary .widget_price_filter .price_slider_amount {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 0 8px;
	line-height: 1.4;
}

body.post-type-archive-product #secondary .widget_price_filter .price_label,
body.tax-product_cat #secondary .widget_price_filter .price_label,
body.tax-product_tag #secondary .widget_price_filter .price_label {
	order: 1;
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-size: 0;
}

body.post-type-archive-product #secondary .widget_price_filter .price_label .from,
body.post-type-archive-product #secondary .widget_price_filter .price_label .to,
body.tax-product_cat #secondary .widget_price_filter .price_label .from,
body.tax-product_cat #secondary .widget_price_filter .price_label .to,
body.tax-product_tag #secondary .widget_price_filter .price_label .from,
body.tax-product_tag #secondary .widget_price_filter .price_label .to {
	color: #574235;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4;
}

body.post-type-archive-product #secondary .widget_price_filter .price_slider_amount .button,
body.tax-product_cat #secondary .widget_price_filter .price_slider_amount .button,
body.tax-product_tag #secondary .widget_price_filter .price_slider_amount .button {
	order: 2;
	float: none;
	padding: 10px 16px;
	border-radius: 8px;
	background: #425e24;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

@supports selector(#page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter)) {
	body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
	body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
	body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) {
		display: grid;
		grid-template-columns: minmax(24px, 1fr) minmax(220px, 248px) 48px minmax(0, 984px) minmax(24px, 1fr);
	}

	body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .skip-link,
	body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-header,
	body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-footer,
	body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .skip-link,
	body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-header,
	body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-footer,
	body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .skip-link,
	body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-header,
	body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-footer {
		grid-column: 1 / -1;
	}

	body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
	body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
	body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area {
		grid-column: 2;
		grid-row: 2;
		align-self: start;
		width: 100%;
		margin: 148px 0 96px;
	}

	body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
	body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
	body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main {
		grid-column: 4;
		grid-row: 2;
		width: 100%;
		margin: 0 0 96px;
		padding-top: 148px;
		padding-bottom: 0;
	}
}

@media screen and (max-width: 1120px) {
	body.post-type-archive-product .shop-archive-banner,
	body.tax-product_cat .shop-archive-banner,
	body.tax-product_tag .shop-archive-banner {
		min-height: 320px;
		padding: 40px 24px;
	}

	body.post-type-archive-product .shop-archive-banner__title,
	body.tax-product_cat .shop-archive-banner__title,
	body.tax-product_tag .shop-archive-banner__title {
		font-size: 42px;
	}

	body.post-type-archive-product ul.products,
	body.tax-product_cat ul.products,
	body.tax-product_tag ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	@supports selector(.shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter)) {
		body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) {
			grid-template-columns: minmax(200px, 220px) minmax(0, 1fr);
			column-gap: 32px;
		}
	}

	@supports selector(#page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter)) {
		body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) {
			grid-template-columns: 24px minmax(200px, 220px) 32px minmax(0, 1fr) 24px;
		}
	}
}

@media screen and (max-width: 860px) {
	body.post-type-archive-product .shop-archive-panel-toggle,
	body.tax-product_cat .shop-archive-panel-toggle,
	body.tax-product_tag .shop-archive-panel-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 52px;
		margin: 40px 0 0;
		padding: 14px 18px;
		border: 1px solid rgba(66, 94, 36, 0.12);
		border-radius: 12px;
		background: #fff;
		color: var(--green, #425e24);
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.12em;
		line-height: 1;
		text-transform: uppercase;
	}

	body.post-type-archive-product .shop-archive-panel-toggle[aria-expanded="true"],
	body.tax-product_cat .shop-archive-panel-toggle[aria-expanded="true"],
	body.tax-product_tag .shop-archive-panel-toggle[aria-expanded="true"] {
		background: var(--green, #425e24);
		color: #fff;
	}

	body.post-type-archive-product .shop-archive-banner,
	body.tax-product_cat .shop-archive-banner,
	body.tax-product_tag .shop-archive-banner {
		margin-top: 96px;
		min-height: 280px;
		padding: 36px 20px;
	}

	body.post-type-archive-product .shop-archive-banner__title,
	body.tax-product_cat .shop-archive-banner__title,
	body.tax-product_tag .shop-archive-banner__title {
		font-size: 34px;
	}

	body.post-type-archive-product .shop-archive-banner__copy,
	body.tax-product_cat .shop-archive-banner__copy,
	body.tax-product_tag .shop-archive-banner__copy {
		font-size: 16px;
	}

	body.post-type-archive-product .site-main,
	body.tax-product_cat .site-main,
	body.tax-product_tag .site-main {
		grid-template-columns: 1fr;
		width: 100%;
		padding-top: 40px;
		padding-bottom: 80px;
	}

	body.post-type-archive-product #secondary.widget-area,
	body.tax-product_cat #secondary.widget-area,
	body.tax-product_tag #secondary.widget-area {
		margin: 40px 0 24px;
	}

	@supports selector(.shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter)) {
		body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) {
			grid-template-columns: 1fr;
		}

		body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
		body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
		body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
		body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
		body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
		body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main {
			grid-column: 1;
		}

		body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
		body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
		body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area {
			grid-row: 2;
			margin-bottom: 0;
		}

		body.post-type-archive-product .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
		body.tax-product_cat .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
		body.tax-product_tag .shop-archive-section__container:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main {
			grid-row: 3;
		}
	}

	body.post-type-archive-product p.woocommerce-result-count,
	body.post-type-archive-product form.woocommerce-ordering,
	body.tax-product_cat p.woocommerce-result-count,
	body.tax-product_cat form.woocommerce-ordering,
	body.tax-product_tag p.woocommerce-result-count,
	body.tax-product_tag form.woocommerce-ordering {
		grid-column: 1;
		justify-self: stretch;
	}

	body.post-type-archive-product p.woocommerce-result-count,
	body.tax-product_cat p.woocommerce-result-count,
	body.tax-product_tag p.woocommerce-result-count {
		padding-right: 16px;
		border-radius: 12px;
	}

	body.post-type-archive-product form.woocommerce-ordering,
	body.tax-product_cat form.woocommerce-ordering,
	body.tax-product_tag form.woocommerce-ordering {
		padding: 0;
		border-radius: 12px;
		background: transparent;
	}

	body.post-type-archive-product form.woocommerce-ordering::before,
	body.tax-product_cat form.woocommerce-ordering::before,
	body.tax-product_tag form.woocommerce-ordering::before {
		display: none;
	}

	body.post-type-archive-product .woocommerce-ordering .orderby,
	body.tax-product_cat .woocommerce-ordering .orderby,
	body.tax-product_tag .woocommerce-ordering .orderby {
		width: 100%;
		background-color: rgba(255, 255, 255, 0.5);
	}

	@supports selector(#page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter)) {
		body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter),
		body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) {
			grid-template-columns: 16px minmax(0, 1fr) 16px;
		}

		body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
		body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area,
		body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > #secondary.widget-area {
			grid-column: 2;
			grid-row: 2;
			width: 100%;
			margin: 132px 0 32px;
		}

		body.post-type-archive-product #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
		body.tax-product_cat #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main,
		body.tax-product_tag #page:has(#secondary.widget-area .widget_product_categories, #secondary.widget-area .widget_price_filter, #secondary.widget-area .widget_rating_filter) > .site-main {
			grid-column: 2;
			grid-row: 3;
			margin-bottom: 80px;
			padding-top: 0;
		}
	}
}

@media screen and (max-width: 620px) {
	body.post-type-archive-product .shop-archive-banner,
	body.tax-product_cat .shop-archive-banner,
	body.tax-product_tag .shop-archive-banner {
		margin-top: 88px;
		min-height: 240px;
		padding: 32px 16px;
	}

	body.post-type-archive-product .shop-archive-banner__title,
	body.tax-product_cat .shop-archive-banner__title,
	body.tax-product_tag .shop-archive-banner__title {
		font-size: 30px;
		line-height: 1.18;
	}

	body.post-type-archive-product .shop-archive-banner__copy,
	body.tax-product_cat .shop-archive-banner__copy,
	body.tax-product_tag .shop-archive-banner__copy {
		font-size: 15px;
		line-height: 1.6;
	}

	body.post-type-archive-product ul.products,
	body.tax-product_cat ul.products,
	body.tax-product_tag ul.products {
		grid-template-columns: 1fr;
	}

	body.post-type-archive-product ul.products li.product img,
	body.tax-product_cat ul.products li.product img,
	body.tax-product_tag ul.products li.product img {
		height: auto;
		aspect-ratio: 1 / 1;
	}

	body.post-type-archive-product nav.woocommerce-pagination ul li .page-numbers,
	body.tax-product_cat nav.woocommerce-pagination ul li .page-numbers,
	body.tax-product_tag nav.woocommerce-pagination ul li .page-numbers {
		width: 36px;
		height: 36px;
	}
}
.woocommerce div.product div.images {
    width: 100%;
}

.woocommerce div.product div.images .flex-viewport {
    height: auto !important;
}

.woocommerce-product-gallery__wrapper {
    display: flex;
    align-items: stretch;
}

.woocommerce-product-gallery__image {
    height: 500px;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
