/* =========================================================================
   Hallowheen — WooCommerce styles
   ========================================================================= */

/* ---------- Shop layout ---------- */
.site-main--shop {
	padding-top: clamp(32px, 4vw, 56px);
}

.shop-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 40px;
}

.shop-layout:has(.shop-filters) {
	grid-template-columns: 280px minmax(0, 1fr);
}

.shop-filters__head {
	display: none;
}

.shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	padding: 14px 18px;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
}

.shop-toolbar__filters {
	display: none;
}

.woocommerce .shop-toolbar .woocommerce-result-count {
	margin: 0;
	flex: 1;
	color: var(--hw-muted);
	font-size: 0.9rem;
	font-weight: 700;
	float: none;
}

.woocommerce .shop-toolbar .woocommerce-ordering {
	margin: 0;
	float: none;
}

.woocommerce .shop-toolbar .woocommerce-ordering select {
	width: auto;
	min-width: 200px;
	padding: 0.6em 2.6em 0.6em 1em;
	font-size: 0.9rem;
	font-weight: 700;
	border-radius: 999px;
}

.woocommerce-notices-wrapper:empty {
	display: none;
}

@media (max-width: 1023px) {
	.shop-layout:has(.shop-filters) {
		grid-template-columns: 1fr;
	}

	.shop-toolbar__filters {
		display: inline-flex;
		padding: 0.6em 1.2em;
		font-size: 0.9rem;
	}

	.shop-filters {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(360px, 88vw);
		padding: 0 20px 20px;
		overflow-y: auto;
		background: var(--hw-bg-2);
		border-right: 1px solid var(--hw-border);
		box-shadow: var(--hw-shadow);
		transform: translateX(-105%);
		transition: transform 0.4s var(--hw-ease);
		z-index: 200;
	}

	.shop-filters.is-open {
		transform: translateX(0);
	}

	.shop-filters__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0 -20px 20px;
		padding: 18px 20px;
		border-bottom: 1px solid var(--hw-border);
		font-family: var(--hw-font-display);
		font-size: 1.4rem;
		color: var(--hw-orange-2);
	}

	.shop-filters .widget {
		background: transparent;
		border: 0;
		padding: 0 0 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid var(--hw-border);
		border-radius: 0;
	}
}

/* ---------- Product grid ---------- */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: 0 0 2em;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.woocommerce ul.products.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.woocommerce ul.products.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.woocommerce ul.products.columns-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.woocommerce ul.products.columns-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.shop-content ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-layout:not(:has(.shop-filters)) .shop-content ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
	.woocommerce ul.products,
	.woocommerce ul.products[class*="columns-"],
	.shop-content ul.products,
	.shop-layout:not(:has(.shop-filters)) .shop-content ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.woocommerce ul.products,
	.woocommerce ul.products[class*="columns-"],
	.shop-content ul.products,
	.shop-layout:not(:has(.shop-filters)) .shop-content ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 400px) {
	.woocommerce ul.products,
	.woocommerce ul.products[class*="columns-"] {
		grid-template-columns: 1fr;
	}
}

/* ---------- Product card ---------- */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	width: auto;
	float: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
	box-shadow: var(--hw-shadow-sm);
	transition: transform 0.4s var(--hw-ease), border-color 0.4s, box-shadow 0.4s;
}

ul.products li.product:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 122, 26, 0.45);
	box-shadow: var(--hw-shadow), var(--hw-glow-orange);
}

.product-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: radial-gradient(circle at 50% 30%, var(--hw-surface-2), var(--hw-surface) 80%);
}

.product-card__media > a {
	display: block;
	height: 100%;
}

.woocommerce ul.products li.product a img,
.product-card__media img {
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform 0.7s var(--hw-ease), filter 0.5s;
	box-shadow: none;
}

ul.products li.product:hover .product-card__media img {
	transform: scale(1.07);
}

/* Sale badge */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale,
span.onsale {
	position: absolute;
	top: 14px;
	left: 14px;
	right: auto;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 6px 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--hw-blood), #7a0b16);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
	box-shadow: 0 6px 18px rgba(193, 18, 31, 0.5);
	animation: hw-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes hw-badge-pulse {
	0%, 100% { box-shadow: 0 6px 18px rgba(193, 18, 31, 0.5); }
	50% { box-shadow: 0 6px 26px rgba(193, 18, 31, 0.9); }
}

.hw-badge {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
}

.hw-badge--new {
	top: 14px;
	left: auto;
	right: 14px;
	background: linear-gradient(135deg, var(--hw-toxic), var(--hw-toxic-dark));
	color: #06200a;
	box-shadow: 0 6px 18px rgba(141, 255, 90, 0.35);
}

.hw-badge--sold {
	top: 14px;
	left: auto;
	right: 14px;
	background: var(--hw-surface-2);
	color: var(--hw-muted);
	border: 1px solid var(--hw-border-strong);
}

ul.products li.product.outofstock {
	opacity: 0.78;
}

ul.products li.product.outofstock .product-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(11, 10, 20, 0.35);
	pointer-events: none;
}

.empty-shop {
	text-align: center;
	padding: 48px 20px;
	color: var(--hw-muted);
}

.empty-shop__icon {
	color: var(--hw-purple);
	margin-bottom: 12px;
}

/* Card actions (add to cart) */
.product-card__actions {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 4;
	transform: translateY(16px);
	opacity: 0;
	transition: transform 0.35s var(--hw-ease), opacity 0.35s;
}

ul.products li.product:hover .product-card__actions,
ul.products li.product:focus-within .product-card__actions {
	transform: none;
	opacity: 1;
}

@media (hover: none) {
	.product-card__actions {
		position: static;
		transform: none;
		opacity: 1;
		padding: 0 16px 4px;
	}
}

.woocommerce ul.products li.product .button,
.product-card__actions .button,
.product-card__actions a.button {
	display: inline-flex;
	width: 100%;
	margin: 0;
	padding: 0.75em 1.2em;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--hw-orange-2), var(--hw-orange) 60%, var(--hw-orange-dark));
	color: #1a0b00;
	font-size: 0.88rem;
	font-weight: 800;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(6px);
}

.woocommerce ul.products li.product .button:hover {
	color: #1a0b00;
	box-shadow: 0 10px 28px rgba(255, 122, 26, 0.5);
}

.woocommerce ul.products li.product .button.loading {
	opacity: 0.7;
}

.woocommerce ul.products li.product .button.loading::after {
	top: auto;
	right: 1em;
}

.woocommerce ul.products li.product .added_to_cart {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	margin-top: 8px;
	padding: 0.65em 1em;
	border-radius: 999px;
	background: var(--hw-toxic);
	color: #06200a;
	font-size: 0.85rem;
	font-weight: 800;
}

/* Card body */
.product-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px 20px;
}

.product-card__cats {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hw-toxic);
}

.product-card__cats a {
	color: inherit;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce-loop-product__title {
	margin: 0;
	padding: 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.35;
}

.woocommerce-loop-product__title a {
	color: var(--hw-text);
}

.woocommerce-loop-product__title a:hover {
	color: var(--hw-orange-2);
}

.woocommerce ul.products li.product .price,
.woocommerce .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin: 6px 0 0;
	color: var(--hw-orange-2);
	font-size: 1.1rem;
	font-weight: 800;
}

.woocommerce .price del,
.woocommerce ul.products li.product .price del {
	color: var(--hw-muted);
	font-weight: 600;
	font-size: 0.9em;
	opacity: 1;
}

.woocommerce .price ins,
.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	font-weight: 800;
	background: none;
}

/* Star ratings */
.woocommerce .star-rating {
	color: var(--hw-orange);
	font-size: 0.85em;
	margin: 4px 0 0;
}

.woocommerce .star-rating::before {
	color: rgba(243, 234, 215, 0.2);
}

.woocommerce ul.products li.product .star-rating {
	margin: 4px 0 0;
}

/* Category cards in shop loop */
.woocommerce ul.products li.product-category a {
	display: block;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title {
	padding: 16px 18px;
	font-size: 1.1rem;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title .count {
	background: none;
	color: var(--hw-muted);
	font-size: 0.85em;
	font-weight: 600;
}

/* ---------- Product cards outside the shop (shortcodes / front page) ---------- */
.products-section .woocommerce {
	display: block;
}

/* ---------- Single product ---------- */
.site-main--product {
	padding-top: clamp(24px, 3vw, 40px);
}

.site-main--product .hw-breadcrumb {
	margin: 0 0 28px;
}

.woocommerce div.product {
	position: relative;
}

.woocommerce div.product .product_title {
	font-family: var(--hw-font-display);
	font-weight: 400;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	letter-spacing: 0.02em;
	line-height: 1.05;
	color: var(--hw-orange-2);
	text-shadow: 0 0 24px rgba(255, 122, 26, 0.35);
	margin-bottom: 14px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 3em;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images {
	width: 50%;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary {
	width: 46%;
}

@media (max-width: 767px) {
	.woocommerce #content div.product div.images,
	.woocommerce div.product div.images,
	.woocommerce #content div.product div.summary,
	.woocommerce div.product div.summary {
		width: 100%;
		float: none;
	}
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	border-radius: var(--hw-radius);
	overflow: hidden;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	box-shadow: var(--hw-shadow);
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
	width: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: auto;
	float: none;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
	border-radius: var(--hw-radius-sm);
	border: 2px solid transparent;
	opacity: 0.55;
	transition: opacity 0.3s, border-color 0.3s;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
	opacity: 1;
	border-color: var(--hw-orange);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	top: 14px;
	right: 14px;
	background: var(--hw-surface-2);
	border-radius: 50%;
	box-shadow: var(--hw-shadow-sm);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
	border-color: var(--hw-orange-2);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
	background: var(--hw-orange-2);
}

.woocommerce div.product .summary .onsale {
	position: static;
	display: inline-flex;
	margin-bottom: 14px;
	animation: none;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.8rem;
	color: var(--hw-orange-2);
	margin-bottom: 18px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--hw-muted);
	font-size: 1.05rem;
}

.woocommerce div.product .woocommerce-product-rating {
	margin-bottom: 14px;
}

.woocommerce .woocommerce-product-rating .woocommerce-review-link {
	color: var(--hw-muted);
	font-size: 0.9rem;
	margin-left: 8px;
}

.woocommerce div.product p.stock {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
}

.woocommerce div.product p.stock.in-stock {
	background: rgba(141, 255, 90, 0.12);
	color: var(--hw-toxic);
}

.woocommerce div.product p.stock.out-of-stock {
	background: rgba(193, 18, 31, 0.15);
	color: #ff6b76;
}

/* Cart form */
.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	margin: 24px 0;
	padding: 20px;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
}

.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart .woocommerce-variation,
.woocommerce div.product form.cart .grouped_form {
	flex-basis: 100%;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
	border: 0;
	padding: 6px 0;
	vertical-align: middle;
}

.woocommerce div.product form.cart .variations label {
	margin: 0;
	color: var(--hw-text);
}

.woocommerce div.product form.cart .variations select {
	min-width: 200px;
}

.woocommerce div.product form.cart .reset_variations {
	font-size: 0.85rem;
	color: var(--hw-muted);
}

.woocommerce div.product form.cart .woocommerce-variation-price .price {
	font-size: 1.4rem;
}

.woocommerce .quantity {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--hw-border-strong);
	border-radius: 999px;
	background: var(--hw-bg-2);
	overflow: hidden;
}

.woocommerce .quantity .qty {
	width: 70px;
	padding: 0.75em 0.5em;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-align: center;
	font-weight: 800;
	-moz-appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.quantity__btn {
	width: 40px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--hw-orange-2);
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1;
}

.quantity__btn:hover {
	background: rgba(255, 122, 26, 0.15);
	transform: none;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .single_add_to_cart_button {
	flex: 1;
	min-width: 200px;
	padding: 0.9em 1.6em;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--hw-orange-2), var(--hw-orange) 60%, var(--hw-orange-dark));
	color: #1a0b00;
	font-size: 1rem;
	font-weight: 800;
	box-shadow: 0 8px 24px rgba(255, 122, 26, 0.3);
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	color: #1a0b00;
	box-shadow: 0 12px 32px rgba(255, 122, 26, 0.5), var(--hw-glow-orange);
}

.woocommerce div.product form.cart .single_add_to_cart_button.disabled,
.woocommerce div.product form.cart .single_add_to_cart_button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Trust badges */
.trust-badges {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--hw-muted);
}

.trust-badges li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.trust-badges .hw-icon {
	color: var(--hw-toxic);
	flex: none;
}

/* Meta */
.woocommerce div.product .product_meta {
	padding-top: 16px;
	border-top: 1px solid var(--hw-border);
	font-size: 0.88rem;
	color: var(--hw-muted);
}

.woocommerce div.product .product_meta > span {
	display: block;
	margin-bottom: 4px;
}

.woocommerce div.product .product_meta a {
	color: var(--hw-orange-2);
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
	clear: both;
	margin-bottom: 3em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 -1px;
	padding: 0;
	overflow: visible;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 1px solid var(--hw-border);
	border-bottom: 0;
	border-radius: var(--hw-radius-sm) var(--hw-radius-sm) 0 0;
	background: var(--hw-bg-2);
	box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 14px 22px;
	color: var(--hw-muted);
	font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--hw-surface);
	border-color: var(--hw-border-strong);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--hw-orange-2);
}

.woocommerce div.product .woocommerce-tabs .panel {
	padding: 28px;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border-strong);
	border-radius: 0 var(--hw-radius) var(--hw-radius) var(--hw-radius);
}

.woocommerce div.product .woocommerce-tabs .panel h2:first-child {
	font-family: var(--hw-font-display);
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	color: var(--hw-orange-2);
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
	border: 0;
	border-bottom: 1px solid var(--hw-border);
	background: none;
	padding: 10px 12px;
	font-style: normal;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
	background: rgba(243, 234, 215, 0.03);
}

/* Reviews */
.woocommerce #reviews #comments ol.commentlist {
	padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	width: 48px;
	padding: 0;
	border: 2px solid var(--hw-orange);
	border-radius: 50%;
	background: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin-left: 64px;
	padding: 18px;
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius-sm);
	background: var(--hw-bg-2);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	color: var(--hw-muted);
	font-size: 0.85rem;
}

.woocommerce #review_form #respond {
	padding: 24px;
	background: var(--hw-bg-2);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
}

.woocommerce p.stars a {
	color: var(--hw-orange);
}

/* Related / upsells */
.woocommerce .related,
.woocommerce .up-sells,
.woocommerce .cross-sells {
	clear: both;
	margin-top: 40px;
}

.woocommerce .related > h2,
.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2 {
	margin-bottom: 28px;
	font-family: var(--hw-font-display);
	font-weight: 400;
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	letter-spacing: 0.03em;
	text-align: center;
	color: var(--hw-orange-2);
	text-shadow: 0 0 24px rgba(255, 122, 26, 0.35);
}

/* ---------- Notices ---------- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 24px;
	padding: 16px 20px 16px 56px;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border-strong);
	border-top: 1px solid var(--hw-border-strong);
	border-left: 4px solid var(--hw-orange);
	border-radius: var(--hw-radius-sm);
	color: var(--hw-text);
	list-style: none;
	box-shadow: var(--hw-shadow-sm);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	top: 18px;
	left: 20px;
	color: var(--hw-orange);
}

.woocommerce-message {
	border-left-color: var(--hw-toxic);
}

.woocommerce-message::before {
	color: var(--hw-toxic);
}

.woocommerce-info {
	border-left-color: var(--hw-purple);
}

.woocommerce-info::before {
	color: #b98ae6;
}

.woocommerce-error {
	border-left-color: var(--hw-blood);
}

.woocommerce-error::before {
	color: #ff6b76;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce .woocommerce-message .button {
	order: 2;
	margin-left: auto;
	padding: 0.55em 1.2em;
	font-size: 0.85rem;
	background: var(--hw-orange);
	color: #1a0b00;
}

/* ---------- Cart ---------- */
.woocommerce-cart .woocommerce {
	max-width: 1100px;
	margin: 0 auto;
}

.woocommerce table.shop_table {
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: var(--hw-surface);
	margin-bottom: 28px;
}

.woocommerce table.shop_table th {
	padding: 14px 16px;
	background: var(--hw-bg-2);
	color: var(--hw-orange-2);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--hw-border);
}

.woocommerce table.shop_table td {
	padding: 16px;
	border-top: 1px solid var(--hw-border);
	vertical-align: middle;
}

.woocommerce table.shop_table td.product-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--hw-radius-sm);
}

.woocommerce table.shop_table td.product-name a {
	font-weight: 800;
	color: var(--hw-text);
}

.woocommerce table.shop_table td.product-name a:hover {
	color: var(--hw-orange-2);
}

.woocommerce table.shop_table td.product-name .variation {
	margin-top: 4px;
	font-size: 0.85rem;
	color: var(--hw-muted);
}

.woocommerce a.remove {
	width: 28px;
	height: 28px;
	line-height: 26px;
	color: var(--hw-muted) !important;
	background: var(--hw-surface-2);
	border-radius: 50%;
	font-weight: 400;
	transition: background 0.3s, color 0.3s;
}

.woocommerce a.remove:hover {
	background: var(--hw-blood) !important;
	color: #fff !important;
}

.woocommerce table.shop_table td.actions {
	padding: 16px;
	background: var(--hw-bg-2);
}

.woocommerce table.shop_table td.actions .coupon {
	display: flex;
	gap: 8px;
	float: none;
	margin-bottom: 12px;
}

.woocommerce table.shop_table td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: 220px;
	padding: 0.7em 1em;
	margin: 0;
	border-radius: 999px;
}

.woocommerce table.shop_table td.actions .coupon .button {
	white-space: nowrap;
}

.woocommerce-cart table.cart td.actions .button[name="update_cart"] {
	background: var(--hw-surface-2);
	color: var(--hw-text);
	float: right;
}

.woocommerce-cart table.cart td.actions .button[name="update_cart"]:disabled {
	opacity: 0.5;
	color: var(--hw-muted);
}

.woocommerce-cart .cart-collaterals {
	display: flex;
	justify-content: flex-end;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	float: none;
	width: min(100%, 460px);
}

.woocommerce-cart .cart_totals > h2 {
	font-family: var(--hw-font-display);
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	color: var(--hw-orange-2);
}

.woocommerce-cart .cart_totals table th {
	background: none;
	color: var(--hw-muted);
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.95rem;
}

.woocommerce-cart .cart_totals .order-total td,
.woocommerce-cart .cart_totals .order-total th {
	font-size: 1.15rem;
	color: var(--hw-text);
}

.woocommerce-cart .cart_totals .order-total .amount {
	color: var(--hw-orange-2);
	font-weight: 800;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	justify-content: center;
	padding: 1em 1.6em;
	font-size: 1.05rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #b6ff8f, var(--hw-toxic) 60%, var(--hw-toxic-dark));
	color: #06200a;
	box-shadow: 0 8px 24px rgba(141, 255, 90, 0.25);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	color: #06200a;
	box-shadow: 0 12px 32px rgba(141, 255, 90, 0.45), var(--hw-glow-toxic);
}

.woocommerce-cart .cross-sells {
	margin-top: 0;
	flex-basis: 100%;
}

.empty-cart {
	text-align: center;
	padding: 40px 0 10px;
}

.empty-cart__icon {
	color: var(--hw-text);
	animation: hw-float 4s ease-in-out infinite;
	filter: drop-shadow(0 0 20px rgba(243, 234, 215, 0.35));
	margin-bottom: 12px;
}

.empty-cart .woocommerce-info {
	display: inline-flex;
	border: 0;
	border-left: 0;
	background: none;
	box-shadow: none;
	padding: 0;
	font-size: 1.1rem;
	color: var(--hw-muted);
}

.empty-cart .woocommerce-info::before {
	display: none;
}

.woocommerce-cart .return-to-shop {
	text-align: center;
}

.woocommerce-cart .return-to-shop .button {
	background: var(--hw-orange);
	color: #1a0b00;
}

@media (max-width: 767px) {
	.woocommerce table.shop_table_responsive tr {
		display: block;
		padding: 12px 0;
		border-top: 1px solid var(--hw-border);
	}

	.woocommerce table.shop_table_responsive tr td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: 0;
		padding: 8px 16px;
		text-align: right;
	}

	.woocommerce table.shop_table_responsive tr td::before {
		float: none;
		color: var(--hw-muted);
		font-size: 0.8rem;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.woocommerce table.shop_table_responsive tr td.product-remove,
	.woocommerce table.shop_table_responsive tr td.product-thumbnail {
		justify-content: flex-start;
	}

	.woocommerce table.shop_table td.actions .coupon {
		flex-wrap: wrap;
	}

	.woocommerce table.shop_table td.actions .coupon .input-text {
		width: 100%;
	}

	.woocommerce-cart table.cart td.actions .button[name="update_cart"] {
		float: none;
		width: 100%;
	}
}

/* ---------- Checkout ---------- */
.woocommerce-checkout .woocommerce {
	max-width: 1100px;
	margin: 0 auto;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
	margin-bottom: 20px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.woocommerce-form-login,
.woocommerce-form-track-order {
	padding: 24px;
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
	background: var(--hw-surface);
}

.woocommerce-checkout #customer_details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: auto;
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields h3 {
	font-family: var(--hw-font-display);
	font-weight: 400;
	font-size: 1.7rem;
	letter-spacing: 0.03em;
	color: var(--hw-orange-2);
}

.woocommerce-checkout #order_review_heading {
	margin-top: 40px;
}

.woocommerce form .form-row {
	padding: 0;
	margin: 0 0 14px;
}

.woocommerce form .form-row label {
	color: var(--hw-muted);
	font-size: 0.85rem;
}

.woocommerce form .form-row .required {
	color: var(--hw-orange);
	text-decoration: none;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
	border-color: var(--hw-blood);
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
	border-color: var(--hw-toxic-dark);
}

.woocommerce form .form-row .input-checkbox {
	margin-right: 8px;
}

.woocommerce form .form-row .woocommerce-input-wrapper {
	display: block;
}

.select2-container--default .select2-selection--single {
	height: auto;
	padding: 0.8em 1.1em;
	border: 1px solid var(--hw-border-strong);
	border-radius: var(--hw-radius-sm);
	background: var(--hw-surface);
	color: var(--hw-text);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--hw-text);
	line-height: 1.4;
	padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--hw-orange-2) transparent transparent;
}

.select2-dropdown {
	background: var(--hw-surface-2);
	border: 1px solid var(--hw-border-strong);
	border-radius: var(--hw-radius-sm);
	color: var(--hw-text);
	box-shadow: var(--hw-shadow);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	background: var(--hw-bg-2);
	border-color: var(--hw-border-strong);
	color: var(--hw-text);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: var(--hw-orange);
	color: #1a0b00;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
	background: var(--hw-purple-2);
}

.woocommerce-checkout-review-order {
	padding: 24px;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
}

.woocommerce-checkout-review-order table.shop_table {
	margin-bottom: 20px;
	border: 0;
	background: none;
}

.woocommerce-checkout-review-order table.shop_table th {
	background: none;
}

.woocommerce-checkout-review-order table.shop_table tfoot .order-total td,
.woocommerce-checkout-review-order table.shop_table tfoot .order-total th {
	font-size: 1.15rem;
	color: var(--hw-text);
}

.woocommerce-checkout-review-order table.shop_table tfoot .order-total .amount {
	color: var(--hw-orange-2);
}

.woocommerce-checkout #payment {
	background: var(--hw-bg-2);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
}

.woocommerce-checkout #payment ul.payment_methods {
	padding: 18px;
	border-bottom: 1px solid var(--hw-border);
}

.woocommerce-checkout #payment ul.payment_methods li {
	padding: 10px 0;
}

.woocommerce-checkout #payment ul.payment_methods li label {
	display: inline;
	color: var(--hw-text);
	font-size: 1rem;
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--hw-surface-2);
	color: var(--hw-muted);
	border-radius: var(--hw-radius-sm);
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--hw-surface-2);
}

.woocommerce-checkout #payment div.place-order {
	padding: 18px;
}

.woocommerce-checkout #payment #place_order,
.woocommerce #payment #place_order {
	width: 100%;
	padding: 1em 1.6em;
	font-size: 1.05rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #b6ff8f, var(--hw-toxic) 60%, var(--hw-toxic-dark));
	color: #06200a;
	box-shadow: 0 8px 24px rgba(141, 255, 90, 0.25);
}

.woocommerce #payment #place_order:hover {
	color: #06200a;
	box-shadow: 0 12px 32px rgba(141, 255, 90, 0.45), var(--hw-glow-toxic);
}

.woocommerce-terms-and-conditions-wrapper {
	color: var(--hw-muted);
	font-size: 0.9rem;
}

.woocommerce-privacy-policy-text a,
.woocommerce-terms-and-conditions-link {
	color: var(--hw-orange-2);
}

@media (max-width: 767px) {
	.woocommerce-checkout #customer_details {
		grid-template-columns: 1fr;
	}
}

/* Order received */
.woocommerce-order .woocommerce-thankyou-order-received {
	padding: 24px;
	margin-bottom: 24px;
	font-family: var(--hw-font-display);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 0.03em;
	text-align: center;
	color: var(--hw-toxic);
	background: rgba(141, 255, 90, 0.08);
	border: 1px solid rgba(141, 255, 90, 0.3);
	border-radius: var(--hw-radius);
}

.woocommerce ul.order_details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin: 0 0 32px;
	padding: 0;
}

.woocommerce ul.order_details li {
	float: none;
	margin: 0;
	padding: 16px;
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius-sm);
	background: var(--hw-surface);
	font-size: 0.75rem;
	color: var(--hw-muted);
}

.woocommerce ul.order_details li strong {
	display: block;
	margin-top: 4px;
	font-size: 1.05rem;
	color: var(--hw-text);
}

.woocommerce-order h2,
.woocommerce-customer-details h2 {
	font-family: var(--hw-font-display);
	font-weight: 400;
	font-size: 1.7rem;
	letter-spacing: 0.03em;
	color: var(--hw-orange-2);
}

.woocommerce .woocommerce-customer-details address {
	padding: 18px;
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius-sm);
	background: var(--hw-surface);
	color: var(--hw-muted);
}

/* ---------- My account ---------- */
.woocommerce-account .woocommerce {
	max-width: 1100px;
	margin: 0 auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: 100%;
	margin-bottom: 32px;
}

.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: 100%;
}

@media (min-width: 900px) {
	.woocommerce-account .woocommerce:not(.woocommerce-checkout) {
		display: grid;
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 40px;
		align-items: start;
	}

	.woocommerce-account .woocommerce > .woocommerce-notices-wrapper {
		grid-column: 1 / -1;
	}

	.woocommerce-account:not(.logged-in) .woocommerce {
		display: block;
	}
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 10px;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
}

.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 12px 16px;
	border-radius: 10px;
	color: var(--hw-muted);
	font-weight: 700;
	transition: background 0.3s, color 0.3s;
}

.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
	background: rgba(255, 122, 26, 0.12);
	color: var(--hw-orange-2);
}

.woocommerce-MyAccount-content {
	padding: 28px;
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
}

.woocommerce-MyAccount-content > p:first-child {
	color: var(--hw-muted);
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
	font-family: var(--hw-font-display);
	font-weight: 400;
	letter-spacing: 0.03em;
	color: var(--hw-orange-2);
}

.woocommerce-MyAccount-content .woocommerce-Address {
	padding: 18px;
	background: var(--hw-bg-2);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius-sm);
}

.woocommerce-account .woocommerce-orders-table .button {
	padding: 0.5em 1em;
	font-size: 0.82rem;
	background: var(--hw-surface-2);
	color: var(--hw-text);
}

.woocommerce-account .woocommerce-orders-table .button:hover {
	background: var(--hw-orange);
	color: #1a0b00;
}

/* Login / register */
.woocommerce-account:not(.logged-in) .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce-form-register {
	max-width: 480px;
	margin: 0 auto;
}

.woocommerce .u-columns.col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.woocommerce .u-columns.col2-set .col-1,
.woocommerce .u-columns.col2-set .col-2 {
	float: none;
	width: auto;
	max-width: none;
}

.woocommerce .u-columns h2 {
	font-family: var(--hw-font-display);
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	color: var(--hw-orange-2);
}

@media (max-width: 767px) {
	.woocommerce .u-columns.col2-set {
		grid-template-columns: 1fr;
	}
}

.woocommerce form .show-password-input::after {
	color: var(--hw-muted);
}

.woocommerce-LostPassword,
.woocommerce-privacy-policy-text {
	font-size: 0.9rem;
	color: var(--hw-muted);
}

/* ---------- Mini cart (header dropdown) ---------- */
.header-cart__dropdown .woocommerce-mini-cart {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	max-height: 320px;
	overflow-y: auto;
}

.header-cart__dropdown .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 12px;
	padding: 10px 0 10px 28px;
	border-bottom: 1px solid var(--hw-border);
	font-size: 0.88rem;
}

.header-cart__dropdown .woocommerce-mini-cart-item a.remove {
	position: absolute;
	left: 0;
	top: 12px;
	width: 22px;
	height: 22px;
	line-height: 20px;
	font-size: 1rem;
}

.header-cart__dropdown .woocommerce-mini-cart-item a:not(.remove) {
	display: contents;
	color: var(--hw-text);
	font-weight: 700;
}

.header-cart__dropdown .woocommerce-mini-cart-item img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 8px;
	float: none;
	margin: 0;
	grid-column: 1;
	grid-row: 1 / 3;
}

.header-cart__dropdown .woocommerce-mini-cart-item .quantity {
	grid-column: 2;
	display: block;
	border: 0;
	background: none;
	color: var(--hw-muted);
	font-size: 0.82rem;
}

.header-cart__dropdown .woocommerce-mini-cart-item .quantity .amount {
	color: var(--hw-orange-2);
	font-weight: 800;
}

.header-cart__dropdown .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	padding: 6px 0 14px;
	border-top: 0;
	font-weight: 800;
}

.header-cart__dropdown .woocommerce-mini-cart__total .amount {
	color: var(--hw-orange-2);
}

.header-cart__dropdown .woocommerce-mini-cart__buttons {
	display: flex;
	gap: 8px;
	margin: 0;
}

.header-cart__dropdown .woocommerce-mini-cart__buttons .button {
	flex: 1;
	padding: 0.7em 1em;
	font-size: 0.85rem;
	background: var(--hw-surface-2);
	color: var(--hw-text);
	margin: 0;
}

.header-cart__dropdown .woocommerce-mini-cart__buttons .button.checkout {
	background: var(--hw-orange);
	color: #1a0b00;
}

.header-cart__dropdown .woocommerce-mini-cart__empty-message {
	margin: 0;
	padding: 12px 0;
	text-align: center;
	color: var(--hw-muted);
}

/* ---------- Widgets ---------- */
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	background: var(--hw-orange);
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--hw-surface-2);
}

.woocommerce .widget_price_filter .price_slider_amount .button {
	font-size: 0.85rem;
	padding: 0.5em 1.1em;
}

.woocommerce .widget_price_filter .price_slider_amount .price_label {
	color: var(--hw-muted);
	font-size: 0.9rem;
	line-height: 2.6;
}

.woocommerce .widget_layered_nav ul li.chosen a::before,
.woocommerce .widget_layered_nav_filters ul li a::before {
	color: var(--hw-blood);
}

.woocommerce .widget_product_categories li .count,
.woocommerce .widget_layered_nav li .count {
	float: right;
	color: var(--hw-muted);
	font-size: 0.85em;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
	border-top: 1px solid var(--hw-border);
	padding-top: 12px;
}

.woocommerce ul.product_list_widget li,
.woocommerce .widget_products ul li,
.woocommerce .widget_recently_viewed_products ul li,
.woocommerce .widget_top_rated_products ul li {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
}

.woocommerce ul.product_list_widget li a {
	display: contents;
	font-weight: 700;
	color: var(--hw-text);
}

.woocommerce ul.product_list_widget li img {
	float: none;
	width: 56px;
	height: 56px;
	object-fit: cover;
	margin: 0;
	border-radius: 8px;
	grid-row: 1 / 3;
}

.woocommerce ul.product_list_widget li .product-title {
	grid-column: 2;
}

.woocommerce ul.product_list_widget li .amount,
.woocommerce ul.product_list_widget li .star-rating {
	grid-column: 2;
}

.woocommerce ul.product_list_widget li .amount {
	color: var(--hw-orange-2);
	font-weight: 800;
	font-size: 0.9rem;
}

.woocommerce .widget_product_search .woocommerce-product-search {
	position: relative;
	display: flex;
}

.woocommerce .widget_product_search .search-field {
	padding-right: 56px;
	border-radius: 999px;
}

.woocommerce .widget_product_search button {
	position: absolute;
	right: 4px;
	top: 4px;
	bottom: 4px;
	padding: 0 16px;
	border-radius: 999px;
	background: var(--hw-orange);
	color: #1a0b00;
	font-size: 0.82rem;
}

/* ---------- Blocks (WooCommerce Blocks) ---------- */
.wc-block-grid__product,
.wc-block-grid .wc-block-grid__product {
	background: var(--hw-surface);
	border: 1px solid var(--hw-border);
	border-radius: var(--hw-radius);
	padding: 0 0 16px;
	overflow: hidden;
}

.wc-block-grid__product-title {
	color: var(--hw-text);
	font-weight: 800;
}

.wc-block-grid__product-price,
.wc-block-components-product-price {
	color: var(--hw-orange-2);
	font-weight: 800;
}

.wc-block-grid__product-onsale {
	background: var(--hw-blood);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-size: 0.72rem;
	text-transform: uppercase;
}

.wc-block-components-button:not(.is-link),
.wc-block-grid__product-add-to-cart .wp-block-button__link {
	background: var(--hw-orange);
	color: #1a0b00;
	border-radius: 999px;
	font-weight: 800;
}

.wc-block-components-checkout-step,
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-totals-wrapper,
.wc-block-cart .wc-block-components-sidebar,
.wc-block-cart-items {
	color: var(--hw-text);
}

.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="url"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"] {
	background: var(--hw-surface);
	color: var(--hw-text);
	border-color: var(--hw-border-strong);
}

.wc-block-components-text-input label,
.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-combobox .wc-block-components-combobox-control label {
	color: var(--hw-muted);
}

.wc-block-components-radio-control__option,
.wc-block-components-checkbox {
	color: var(--hw-text);
}

.wc-block-components-panel__button,
.wc-block-components-totals-item,
.wc-block-components-order-summary__button-text {
	color: var(--hw-text);
}

.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
	color: var(--hw-text);
}

.wc-block-components-product-metadata__description,
.wc-block-cart-item__prices .wc-block-components-product-price__regular {
	color: var(--hw-muted);
}

.wc-block-components-order-summary-item__quantity {
	background: var(--hw-orange);
	color: #1a0b00;
	border-color: var(--hw-orange);
}

.wc-block-components-notice-banner {
	background: var(--hw-surface);
	color: var(--hw-text);
	border-color: var(--hw-border-strong);
}

.wc-block-checkout select,
.wc-block-components-select select,
.wc-block-components-combobox input,
.wc-block-components-state-input input,
.wc-block-components-country-input input,
.wc-block-components-text-input input {
	background-color: var(--hw-surface) !important;
	color: var(--hw-text) !important;
	border-color: var(--hw-border-strong) !important;
}

.wc-block-components-combobox ul,
.components-form-token-field__suggestions-list {
	background: var(--hw-surface-2) !important;
	color: var(--hw-text) !important;
}

/* Coming soon (WooCommerce store-only mode) */
.woocommerce-coming-soon-store-only,
.wp-block-woocommerce-coming-soon {
	color: var(--hw-text);
}

.woocommerce-coming-soon-store-only h1,
.wp-block-woocommerce-coming-soon h1 {
	font-family: var(--hw-font-display) !important;
	font-weight: 400 !important;
	font-size: clamp(2.4rem, 6vw, 4.2rem) !important;
	letter-spacing: 0.03em;
	color: var(--hw-orange-2) !important;
	text-shadow: 0 0 28px rgba(255, 122, 26, 0.4), 0 6px 0 rgba(0, 0, 0, 0.45);
}

.woocommerce-coming-soon-store-only p,
.wp-block-woocommerce-coming-soon p {
	color: var(--hw-muted) !important;
	font-family: var(--hw-font-body) !important;
	font-size: 1.1rem;
}
