.single-product .site-main {
	background:
		radial-gradient(circle at top right, rgba(251, 191, 36, 0.14), transparent 28rem),
		linear-gradient(180deg, #fffaf2 0%, var(--he-color-background) 22rem);
}

.he-product-page {
	padding-top: calc(var(--he-space-96) + var(--he-space-32));
	padding-bottom: var(--he-space-96);
}

.he-product__shell {
	max-width: 80rem;
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--he-space-16);
	padding-left: var(--he-space-16);
}

.he-product__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: var(--he-space-8);
	margin-bottom: var(--he-space-32);
	color: var(--he-color-text-muted);
	font-size: var(--he-type-body-small-size);
	line-height: var(--he-type-body-small-line-height);
}

.he-product__breadcrumb a {
	color: var(--he-color-text-secondary);
}

.he-product__hero,
.he-product__gallery,
.he-product__summary,
.he-product__section-head,
.he-product__summary form.cart {
	display: grid;
	gap: var(--he-space-24);
}

.he-product__hero {
	align-items: start;
}

.he-product__stage,
.he-product__summary,
.he-product__section {
	border: 1px solid rgba(180, 83, 9, 0.12);
	border-radius: calc(var(--he-radius-base) * 2);
	background-color: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.he-product__stage,
.he-product__section {
	padding: var(--he-space-20);
}

.he-product__panel,
.he-product__panel picture,
.he-product__panel img,
.he-product__thumb picture,
.he-product__thumb img {
	width: 100%;
	height: 100%;
}

.he-product__panel {
	margin: 0;
	overflow: hidden;
	border-radius: calc(var(--he-radius-base) * 1.5);
	aspect-ratio: 4 / 5;
	background-color: var(--he-color-surface-soft);
}

.he-product__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
	gap: var(--he-space-12);
}

.he-product__thumb {
	padding: 0;
	border: 1px solid var(--he-color-border-light);
	border-radius: var(--he-radius-base);
	overflow: hidden;
	aspect-ratio: 1;
	background-color: var(--he-color-background);
	opacity: 0.76;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.he-product__thumb.is-active {
	border-color: var(--he-color-amber);
	box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.14);
	opacity: 1;
}

.he-product__summary {
	align-content: start;
	padding: var(--he-space-32);
}

.he-product__eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--he-space-12);
}

.he-product__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--he-space-8) var(--he-space-12);
	border-radius: 999px;
	background-color: var(--he-color-amber);
	color: var(--he-color-background);
	font-size: var(--he-type-caption-size);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.he-product__collection-link,
.he-product__assist-link {
	display: inline-flex;
	align-items: center;
	color: var(--he-color-amber-dark);
	font-size: var(--he-type-body-small-size);
	font-weight: 600;
}

.he-product__title {
	font-family: var(--he-font-heading);
	font-size: clamp(2.6rem, 5vw, 4.25rem);
	font-weight: 500;
	line-height: 0.95;
}

.he-product__price,
.he-product__price .price {
	color: var(--he-color-amber);
	font-family: var(--he-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
}

.he-product__price del {
	color: var(--he-color-text-muted);
	font-size: 0.6em;
}

.he-product__price ins {
	text-decoration: none;
}

.he-product__excerpt,
.he-product__description,
.he-product__assist-copy {
	color: var(--he-color-text-secondary);
}

.he-product__excerpt p,
.he-product__description p {
	margin-top: 0;
	margin-bottom: var(--he-space-16);
}

.he-product__description p:last-child {
	margin-bottom: 0;
}

.he-product__cart .quantity {
	display: inline-flex;
}

.he-product__cart .qty {
	width: 5rem;
	padding: var(--he-space-12) var(--he-space-16);
	border: 1px solid var(--he-color-border-light);
	border-radius: var(--he-space-6);
	background-color: var(--he-color-background);
	color: var(--he-color-text-dark);
}

.he-product__cart .single_add_to_cart_button.button,
.he-product__cart .single_add_to_cart_button.button.alt {
	min-height: 3.25rem;
	padding: var(--he-space-12) var(--he-space-24);
	border: 1px solid var(--he-color-amber) !important;
	border-radius: 999px;
	background: var(--he-color-amber) !important;
	color: var(--he-color-background) !important;
	font-size: var(--he-type-body-small-size);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.he-product__cart .single_add_to_cart_button.button:hover,
.he-product__cart .single_add_to_cart_button.button.alt:hover {
	border-color: var(--he-color-amber-dark) !important;
	background: var(--he-color-amber-dark) !important;
}

.he-product__assist {
	display: grid;
	gap: var(--he-space-8);
	padding-top: var(--he-space-20);
	border-top: 1px solid var(--he-color-border-light);
}

.he-product__section {
	margin-top: var(--he-space-40);
	padding: var(--he-space-32);
}

.he-product__section-kicker {
	color: var(--he-color-amber-dark);
	font-size: var(--he-type-caption-size);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.he-product__section-title {
	font-family: var(--he-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
}

.he-product__section--related .he-catalog-grid {
	margin-top: var(--he-space-24);
}

.he-product-page .woocommerce-notices-wrapper {
	max-width: 80rem;
	margin: 0 auto var(--he-space-24);
	padding: 0 var(--he-space-16);
}

.he-product-page .woocommerce-error,
.he-product-page .woocommerce-info,
.he-product-page .woocommerce-message {
	margin: 0;
	padding: var(--he-space-16) var(--he-space-20);
	border: 1px solid rgba(180, 83, 9, 0.18);
	border-radius: var(--he-radius-base);
	background-color: #fffaf2;
	color: var(--he-color-text-dark);
	font-size: var(--he-type-body-small-size);
	line-height: var(--he-type-body-small-line-height);
}

.he-product-page .woocommerce-message .button,
.he-product-page .woocommerce-info .button {
	margin-left: var(--he-space-16);
	padding: var(--he-space-8) var(--he-space-12);
	border: 1px solid var(--he-color-amber);
	border-radius: var(--he-space-6);
	background-color: var(--he-color-amber);
	color: var(--he-color-background);
}

@media (min-width: 640px) {
	.he-product__shell,
	.he-product-page .woocommerce-notices-wrapper {
		padding-right: var(--he-space-24);
		padding-left: var(--he-space-24);
	}

	.he-product__summary form.cart {
		grid-template-columns: auto auto;
		align-items: center;
		justify-content: start;
	}
}

@media (min-width: 1024px) {
	.he-product__shell,
	.he-product-page .woocommerce-notices-wrapper {
		padding-right: var(--he-space-32);
		padding-left: var(--he-space-32);
	}

	.he-product__hero {
		grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.82fr);
		gap: var(--he-space-32);
	}
}

@media (max-width: 767px) {
	.he-product-page {
		padding-top: calc(var(--he-space-96) + var(--he-space-8));
		padding-bottom: var(--he-space-64);
	}

	.he-product__summary,
	.he-product__section {
		padding: var(--he-space-24);
	}

	.he-product__title {
		font-size: 2.5rem;
	}

	.he-product__price,
	.he-product__price .price {
		font-size: 2.2rem;
	}

	.he-product__eyebrow {
		align-items: start;
		justify-content: start;
	}

	.he-product__thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
