.re-wc-catalog {
	display: grid;
	gap: clamp(1.25rem, 2vw, 2rem);
}

.re-static-page__catalogue {
	border-top: 1px solid rgba(169, 131, 31, 0.22);
	margin-top: clamp(0.5rem, 2vw, 1rem);
	padding-top: clamp(1.75rem, 4vw, 3rem);
}

.re-static-page__catalogue-header {
	display: grid;
	gap: 0.75rem;
	max-width: 58rem;
}

.re-static-page__catalogue-header h2 {
	font-size: clamp(1.65rem, 3vw, 2.45rem);
	line-height: 1.15;
	margin: 0;
	text-wrap: balance;
}

.re-static-page__catalogue-header p {
	color: rgba(29, 24, 16, 0.72);
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	line-height: 1.68;
	margin: 0;
}

.re-wc-catalog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.05rem, 2vw, 1.65rem);
}

.re-wc-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid rgba(177, 134, 70, 0.34);
	border-radius: 8px;
	background: linear-gradient(180deg, #15120f 0%, #0f0e0c 100%);
	color: #f7f1e8;
	box-shadow: 0 18px 44px rgba(29, 24, 16, 0.16);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.re-wc-product-card:hover,
.re-wc-product-card:focus-within {
	border-color: rgba(215, 173, 104, 0.58);
	box-shadow: 0 22px 54px rgba(29, 24, 16, 0.2);
	transform: translateY(-2px);
}

.re-wc-product-card__image {
	display: grid;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(186, 143, 77, 0.2), rgba(255, 255, 255, 0.045));
	place-items: center;
}

.re-wc-product-card__img {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: clamp(0.35rem, 1.2vw, 0.7rem);
	object-fit: contain;
}

.re-wc-product-card__image-placeholder {
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(186, 143, 77, 0.58);
	border-radius: 999px;
}

.re-wc-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.72rem;
	padding: clamp(1.05rem, 2vw, 1.45rem);
}

.re-wc-product-card__meta,
.re-wc-product-card__sku {
	color: rgba(247, 241, 232, 0.62);
	font-size: 0.78rem;
	line-height: 1.35;
}

.re-wc-product-card__meta a {
	color: inherit;
	text-decoration: none;
}

.re-wc-product-card__title {
	margin: 0;
	color: #fffaf2;
	font-size: clamp(1.02rem, 1.35vw, 1.18rem);
	line-height: 1.25;
	text-wrap: balance;
}

.re-wc-product-card__title a {
	color: inherit;
	text-decoration: none;
}

.re-wc-product-card__price {
	color: #d7ad68;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0;
}

.re-wc-product-card__cta {
	margin-top: auto;
}

.re-wc-inquiry {
	margin: 0;
}

.re-wc-inquiry__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.72rem 1.05rem;
	border: 1px solid rgba(186, 143, 77, 0.82);
	border-radius: 4px;
	background: rgba(186, 143, 77, 0.1);
	color: #fffaf2;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.re-wc-inquiry__button:hover,
.re-wc-inquiry__button:focus-visible {
	border-color: #d7ad68;
	background: rgba(186, 143, 77, 0.18);
	color: #ffffff;
}

body.woocommerce a.button.add_to_cart_button,
body.woocommerce button.single_add_to_cart_button,
body.woocommerce form.cart,
body.woocommerce .cart_totals,
body.woocommerce .checkout-button,
body.woocommerce .woocommerce-mini-cart {
	display: none !important;
}

body.single-product .re-main,
body.single-product main {
	background: linear-gradient(180deg, rgba(255, 250, 240, 0.72) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 250, 240, 0.66) 100%);
}

body.single-product div.product {
	margin-inline: auto;
	max-width: 1180px;
	padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 3vw, 1.5rem);
}

body.single-product div.product div.images,
body.single-product div.product div.summary {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

body.single-product div.product div.images {
	border: 1px solid rgba(177, 134, 70, 0.22);
	border-radius: 8px;
	overflow: hidden;
	background: #15120f;
	box-shadow: 0 18px 44px rgba(29, 24, 16, 0.12);
}

body.single-product div.product div.images img {
	display: block;
	background: #15120f;
}

body.single-product div.product div.summary {
	border: 1px solid rgba(177, 134, 70, 0.22);
	border-radius: 8px;
	background: rgba(255, 252, 246, 0.92);
	box-shadow: 0 18px 44px rgba(29, 24, 16, 0.08);
	padding: clamp(1.25rem, 3vw, 2rem);
}

body.single-product div.product .product_title {
	color: #1d1810;
	font-size: clamp(1.85rem, 4vw, 3rem);
	line-height: 1.08;
	margin: 0 0 1rem;
	text-wrap: balance;
}

body.single-product div.product p.price,
body.single-product div.product span.price {
	color: #9a6c24;
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-weight: 700;
	letter-spacing: 0;
}

body.single-product div.product .woocommerce-product-details__short-description {
	color: rgba(29, 24, 16, 0.76);
	line-height: 1.68;
	margin-block: 1rem 1.2rem;
}

body.single-product div.product .product_meta {
	border-top: 1px solid rgba(177, 134, 70, 0.22);
	color: rgba(29, 24, 16, 0.64);
	display: grid;
	gap: 0.35rem;
	font-size: 0.9rem;
	line-height: 1.45;
	margin-top: 1.35rem;
	padding-top: 1rem;
}

.re-wc-product-notice {
	display: grid;
	gap: 0.85rem;
	margin-top: clamp(1.15rem, 2vw, 1.6rem);
	padding: clamp(1rem, 2.4vw, 1.35rem);
	border: 1px solid rgba(154, 108, 36, 0.28);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(247, 241, 232, 0.9));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
	color: rgba(29, 24, 16, 0.78);
}

.re-wc-product-notice__title {
	margin: 0;
	color: #1d1810;
	font-size: clamp(1.05rem, 1.5vw, 1.18rem);
	line-height: 1.25;
}

.re-wc-product-notice__text {
	display: grid;
	gap: 0.6rem;
	font-size: 0.94rem;
	line-height: 1.6;
}

.re-wc-product-notice__text p {
	margin: 0;
}

.re-wc-product-notice__text p:last-child {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1rem;
}

.re-wc-product-notice__text a {
	color: #7f561c;
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}

.re-wc-product-notice__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.re-wc-product-notice__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.55rem;
	padding: 0.68rem 0.95rem;
	border: 1px solid rgba(154, 108, 36, 0.64);
	border-radius: 4px;
	background: #1d1810;
	color: #fffaf2;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.re-wc-product-notice__button:hover,
.re-wc-product-notice__button:focus-visible {
	border-color: #9a6c24;
	background: #2b2318;
	color: #ffffff;
}

.re-wc-product-notice__button--secondary {
	background: transparent;
	color: #1d1810;
}

.re-wc-product-notice__button--secondary:hover,
.re-wc-product-notice__button--secondary:focus-visible {
	background: rgba(154, 108, 36, 0.1);
	color: #1d1810;
}

body.single-product div.product .woocommerce-tabs {
	clear: both;
	margin-inline: auto;
	max-width: 920px;
}

body.single-product div.product .woocommerce-tabs ul.tabs {
	display: none;
}

body.single-product div.product .woocommerce-tabs .panel {
	border: 1px solid rgba(177, 134, 70, 0.18);
	border-radius: 8px;
	background: rgba(255, 252, 246, 0.9);
	box-shadow: 0 18px 44px rgba(29, 24, 16, 0.07);
	color: rgba(29, 24, 16, 0.78);
	line-height: 1.7;
	padding: clamp(1.25rem, 3vw, 2rem);
}

body.single-product div.product .woocommerce-tabs .panel h2,
body.single-product div.product .woocommerce-tabs .panel h3 {
	color: #1d1810;
	line-height: 1.22;
	margin-block: 0 0.85rem;
}

body.single-product div.product .woocommerce-tabs .panel p,
body.single-product div.product .woocommerce-tabs .panel ul {
	margin-block: 0 1rem;
}

body.single-product div.product .related.products,
body.single-product div.product .upsells.products {
	clear: both;
	margin-inline: auto;
	max-width: 1180px;
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

@media (max-width: 768px) {
	body.single-product div.product div.images,
	body.single-product div.product div.summary {
		float: none;
		width: 100%;
	}

	body.single-product div.product div.summary {
		padding: 1.15rem;
	}
}

@media (max-width: 980px) {
	.re-wc-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.re-wc-catalog__grid {
		grid-template-columns: 1fr;
	}

	.re-wc-inquiry__button {
		width: 100%;
	}
}

/* Phase 89: Editorial Luxury catalogue styling, scoped to WooCommerce/catalogue surfaces. */
.re-static-page__catalogue.re-wc-catalog {
	margin-top: clamp(1.5rem, 4vw, 3rem);
	padding-top: 0;
	border-top: 0;
	background: #fbfaf7;
	color: #211d1a;
}

.re-editorial-catalog__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
	gap: clamp(1.5rem, 3vw, 2.6rem);
	align-items: center;
	max-width: none;
	min-height: clamp(27rem, 52vw, 39rem);
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: 28px;
	background: #fbfaf7;
	box-shadow: inset 0 0 0 1px rgba(154, 108, 36, 0.08);
}

.re-editorial-catalog__hero-copy {
	display: grid;
	gap: 1rem;
	max-width: 42rem;
}

.re-editorial-catalog__hero h2 {
	color: #191719;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.2rem, 5vw, 4.8rem);
	font-weight: 500;
	line-height: 0.98;
	margin: 0;
	letter-spacing: 0;
	text-wrap: balance;
}

.re-editorial-catalog__hero p {
	max-width: 40rem;
	color: #605a61;
	font-size: clamp(1rem, 1.5vw, 1.16rem);
	line-height: 1.72;
	margin: 0;
}

.re-editorial-catalog__hero-link,
.re-wc-inquiry__button,
body.woocommerce ul.products li.product .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 2.8rem;
	padding: 0.78rem 1.12rem;
	border: 1px solid #191719;
	border-radius: 999px;
	background: #191719;
	color: #fffaf2;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.re-editorial-catalog__hero-link:hover,
.re-editorial-catalog__hero-link:focus-visible,
.re-wc-inquiry__button:hover,
.re-wc-inquiry__button:focus-visible,
body.woocommerce ul.products li.product .button:hover,
body.woocommerce ul.products li.product .button:focus-visible {
	border-color: #9a6c24;
	background: #9a6c24;
	color: #fffaf2;
}

.re-editorial-catalog__visual {
	position: relative;
	display: grid;
	min-height: clamp(20rem, 37vw, 29rem);
	overflow: hidden;
	border-radius: 34px;
	background:
		radial-gradient(circle at 48% 50%, rgba(185, 151, 91, 0.24), transparent 30%),
		linear-gradient(145deg, #252224, #f1e6d3);
	box-shadow: 0 28px 70px rgba(29, 24, 16, 0.18);
	place-items: center;
}

.re-editorial-catalog__visual::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: clamp(10rem, 21vw, 15rem);
	height: clamp(10rem, 21vw, 15rem);
	border: 10px solid rgba(255, 255, 255, 0.44);
	border-radius: 50%;
	box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
	content: "";
	transform: translate(-50%, -50%);
}

.re-editorial-catalog__visual-item {
	position: absolute;
	z-index: 1;
	display: grid;
	width: clamp(9rem, 21vw, 16rem);
	aspect-ratio: 1;
	margin: 0;
	padding: clamp(0.5rem, 1.4vw, 0.9rem);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 24px;
	background: rgba(255, 250, 240, 0.88);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
	place-items: center;
}

.re-editorial-catalog__visual-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.re-editorial-catalog__visual-item--1 {
	left: 50%;
	top: 50%;
	width: clamp(12rem, 26vw, 20rem);
	transform: translate(-50%, -50%);
}

.re-editorial-catalog__visual-item--2 {
	left: 7%;
	bottom: 8%;
	width: clamp(7rem, 14vw, 11rem);
}

.re-editorial-catalog__visual-item--3 {
	right: 8%;
	top: 9%;
	width: clamp(7rem, 14vw, 11rem);
}

.re-wc-catalog__grid.re-editorial-catalog__mosaic {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
	gap: clamp(1rem, 2vw, 1.4rem);
	padding: clamp(2rem, 4vw, 3.6rem) clamp(0rem, 1vw, 0.5rem) 0;
}

.re-wc-catalog__grid.re-editorial-catalog__mosaic .re-wc-product-card:first-child {
	grid-row: span 2;
}

.re-wc-catalog__grid.re-editorial-catalog__mosaic .re-wc-product-card:first-child .re-wc-product-card__image {
	aspect-ratio: 1 / 1.35;
}

.re-wc-product-card {
	border: 1px solid rgba(33, 29, 26, 0.08);
	border-radius: 24px;
	background: #ffffff;
	color: #211d1a;
	box-shadow: 0 22px 54px rgba(29, 24, 16, 0.1);
	transform: none;
}

.re-wc-product-card:hover,
.re-wc-product-card:focus-within {
	border-color: rgba(154, 108, 36, 0.28);
	box-shadow: 0 28px 68px rgba(29, 24, 16, 0.14);
	transform: translateY(-1px);
}

.re-wc-product-card__image {
	aspect-ratio: 1 / 1.05;
	background: linear-gradient(145deg, #f7f2ea, #ffffff);
}

.re-wc-product-card__img {
	padding: clamp(0.8rem, 2vw, 1.35rem);
}

.re-wc-product-card__body {
	gap: 0.62rem;
	padding: clamp(1.1rem, 2vw, 1.35rem);
}

.re-wc-product-card__meta {
	color: #8a7c6b;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.re-wc-product-card__sku {
	display: none;
}

.re-wc-product-card__title {
	color: #191719;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.08rem, 1.35vw, 1.28rem);
	font-weight: 500;
	line-height: 1.2;
}

.re-wc-product-card__price {
	color: #8d6426;
	font-size: 1rem;
	font-weight: 700;
}

body.tax-product_cat .re-main.re-wc-catalog,
body.post-type-archive-product .re-main.re-wc-catalog {
	background: #fbfaf7;
}

body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header {
	margin: 0;
	padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
	background: #181719;
	color: #fffaf2;
}

body.tax-product_cat .woocommerce-products-header__title,
body.post-type-archive-product .woocommerce-products-header__title {
	max-width: 70rem;
	margin: 0 auto;
	color: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

body.tax-product_cat .term-description,
body.post-type-archive-product .term-description {
	max-width: 70rem;
	margin: 1rem auto 0;
	color: #d9d4ce;
	font-size: 1.06rem;
	line-height: 1.7;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-breadcrumb + .page-title,
body.tax-product_cat .re-main.re-wc-catalog > .page-title,
body.post-type-archive-product .re-main.re-wc-catalog > .page-title {
	margin: 0;
	padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
	background: #181719;
	color: #fffaf2;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

body.tax-product_cat .woocommerce-notices-wrapper,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_cat .woocommerce-ordering,
body.post-type-archive-product .woocommerce-notices-wrapper,
body.post-type-archive-product .woocommerce-result-count,
body.post-type-archive-product .woocommerce-ordering {
	max-width: 1180px;
	margin-inline: auto;
}

body.tax-product_cat ul.products,
body.post-type-archive-product ul.products {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
	gap: clamp(1rem, 2vw, 1.4rem);
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3.6rem) clamp(1rem, 3vw, 1.5rem);
}

body.tax-product_cat ul.products li.product,
body.post-type-archive-product ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(33, 29, 26, 0.08);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 22px 54px rgba(29, 24, 16, 0.1);
}

body.tax-product_cat ul.products li.product:first-child,
body.post-type-archive-product ul.products li.product:first-child {
	grid-row: span 2;
}

body.tax-product_cat ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img {
	aspect-ratio: 1 / 1.05;
	width: 100%;
	height: auto;
	margin: 0;
	padding: clamp(0.8rem, 2vw, 1.35rem);
	background: linear-gradient(145deg, #f7f2ea, #ffffff);
	object-fit: contain;
}

body.tax-product_cat ul.products li.product:first-child a img,
body.post-type-archive-product ul.products li.product:first-child a img {
	aspect-ratio: 1 / 1.35;
}

body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title {
	padding: 1rem 1.2rem 0.45rem;
	color: #191719;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.08rem, 1.35vw, 1.28rem);
	font-weight: 500;
	line-height: 1.2;
}

body.tax-product_cat ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price {
	display: block;
	padding: 0 1.2rem 1rem;
	color: #8d6426;
	font-weight: 700;
}

body.tax-product_cat ul.products li.product .re-wc-inquiry,
body.post-type-archive-product ul.products li.product .re-wc-inquiry {
	padding: 0 1.2rem 1.25rem;
}

body.single-product .re-main,
body.single-product main {
	background: #fbfaf7;
}

body.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	max-width: none;
	margin: 0;
	padding: 0;
	background: #fbfaf7;
}

body.single-product div.product div.images {
	float: none;
	width: 100%;
	max-width: none;
	margin: 0;
	border: 0;
	border-radius: 0;
	background:
		radial-gradient(circle at center, rgba(185, 151, 91, 0.2), transparent 34%),
		linear-gradient(145deg, #1d1b1e, #e8dcc9);
	box-shadow: none;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	display: grid;
	min-height: clamp(28rem, 62vw, 42rem);
	margin: 0;
	padding: clamp(2rem, 5vw, 4rem);
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__image {
	display: grid;
	width: min(72vw, 45rem);
	max-width: 100%;
	place-items: center;
}

body.single-product div.product div.images img {
	max-height: clamp(20rem, 50vw, 34rem);
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	background: transparent;
	object-fit: contain;
}

body.single-product div.product div.summary {
	float: none;
	width: auto;
	max-width: none;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: #ffffff;
	box-shadow: none;
}

body.single-product div.product .summary,
body.single-product div.product .woocommerce-tabs {
	position: relative;
}

body.single-product div.product div.summary {
	display: grid;
	gap: 1rem;
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3.2rem) clamp(1rem, 5vw, 4rem);
	width: min(100%, 1180px);
}

body.single-product div.product .product_title {
	max-width: 52rem;
	color: #191719;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.2rem, 5vw, 4.6rem);
	font-weight: 500;
	line-height: 0.98;
}

body.single-product div.product p.price,
body.single-product div.product span.price {
	color: #8d6426;
	font-size: clamp(1.22rem, 2vw, 1.55rem);
}

body.single-product div.product .product_meta {
	order: -1;
	border-top: 0;
	margin: 0 0 0.35rem;
	padding: 0;
	color: #8a7c6b;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.single-product div.product .woocommerce-product-details__short-description {
	max-width: 54rem;
	color: #605a61;
	font-size: clamp(1rem, 1.5vw, 1.16rem);
	line-height: 1.72;
}

body.single-product div.product .woocommerce-tabs {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr);
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

body.single-product div.product .woocommerce-tabs .panel {
	border: 1px solid rgba(33, 29, 26, 0.08);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 22px 54px rgba(29, 24, 16, 0.08);
	font-size: clamp(1rem, 1.35vw, 1.1rem);
	line-height: 1.78;
	padding: clamp(1.4rem, 3vw, 2.2rem);
}

.re-wc-product-notice {
	border: 1px solid rgba(33, 29, 26, 0.08);
	border-radius: 24px;
	background: #fbfaf7;
	box-shadow: inset 0 0 0 1px rgba(154, 108, 36, 0.08);
}

.re-wc-product-notice__title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 500;
}

.re-wc-product-notice__button {
	border-radius: 999px;
	background: #191719;
}

.re-wc-product-notice__button--secondary {
	background: transparent;
}

@media (max-width: 900px) {
	.re-editorial-catalog__hero,
	.re-wc-catalog__grid.re-editorial-catalog__mosaic,
	body.tax-product_cat ul.products,
	body.post-type-archive-product ul.products {
		grid-template-columns: 1fr;
	}

	.re-editorial-catalog__hero {
		min-height: 0;
		padding: clamp(1.5rem, 7vw, 2.2rem);
	}

	.re-editorial-catalog__visual {
		min-height: 19rem;
	}

	.re-wc-catalog__grid.re-editorial-catalog__mosaic .re-wc-product-card:first-child,
	body.tax-product_cat ul.products li.product:first-child,
	body.post-type-archive-product ul.products li.product:first-child {
		grid-row: auto;
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
		min-height: 26rem;
		padding: 1.4rem;
	}
}

@media (max-width: 640px) {
	.re-editorial-catalog__visual-item--2,
	.re-editorial-catalog__visual-item--3 {
		display: none;
	}

	.re-editorial-catalog__hero-link,
	.re-wc-inquiry__button,
	.re-wc-product-notice__button {
		width: 100%;
	}
}

/* Phase 90: visual polish for catalogue-only surfaces. */
.re-static-page--catalogue {
	padding-block: clamp(1.25rem, 3vw, 2.25rem) clamp(2.5rem, 5vw, 4rem);
	background: #fbfaf7;
}

.re-static-page--catalogue > .re-static-page__inner {
	width: min(100% - clamp(1.5rem, 4vw, 4rem), 1500px);
	max-width: 1500px;
	margin-inline: auto;
}

.re-static-page--catalogue .re-static-page__catalogue.re-wc-catalog {
	margin-top: 0;
}

.re-static-page--catalogue .re-editorial-catalog__hero {
	grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
	gap: clamp(3rem, 5vw, 4.5rem);
	min-height: clamp(25rem, 42vw, 34rem);
	padding: clamp(2.25rem, 5vw, 4.5rem);
}

.re-static-page--catalogue .re-editorial-catalog__hero h2 {
	font-size: clamp(2rem, 4.4vw, 4.35rem);
}

.re-static-page--catalogue .re-editorial-catalog__visual {
	min-height: clamp(19rem, 32vw, 27rem);
}

.re-static-page--catalogue .re-editorial-catalog__visual-item--1 {
	width: clamp(11rem, 22vw, 17rem);
}

.re-static-page--catalogue .re-editorial-catalog__visual-item--2,
.re-static-page--catalogue .re-editorial-catalog__visual-item--3 {
	width: clamp(6rem, 11vw, 9rem);
}

.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
	align-items: stretch;
	gap: clamp(1rem, 1.7vw, 1.35rem);
	padding-top: clamp(1.7rem, 3vw, 2.8rem);
}

.re-static-page--catalogue .re-wc-product-card__image {
	aspect-ratio: 1 / 0.92;
}

.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic .re-wc-product-card:first-child .re-wc-product-card__image {
	aspect-ratio: 1 / 1.08;
}

.re-static-page--catalogue .re-wc-product-card__img {
	max-height: 18rem;
	padding: clamp(0.55rem, 1.5vw, 1rem);
}

.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic .re-wc-product-card:first-child .re-wc-product-card__img {
	max-height: 25rem;
}

.re-static-page--catalogue .re-wc-product-card__body {
	gap: 0.52rem;
	padding: clamp(0.95rem, 1.7vw, 1.25rem);
}

.re-static-page--catalogue .re-wc-product-card__cta {
	padding-top: 0.25rem;
}

body.single-product div.product div.images {
	background: #f6f1e8;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	display: block;
	min-height: 0;
	padding: clamp(1.5rem, 4vw, 3.25rem) clamp(1rem, 5vw, 4rem) clamp(1rem, 2vw, 1.5rem);
	text-align: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
	display: inline-grid;
	width: auto;
	max-width: 100%;
	margin: 0;
	vertical-align: top;
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	display: grid;
	width: min(100%, 960px);
	min-height: clamp(22rem, 44vw, 35rem);
	margin: 0 auto;
	padding: clamp(0.75rem, 2vw, 1.5rem);
	border-radius: 28px;
	background: #fffdf8;
	box-shadow: 0 26px 72px rgba(29, 24, 16, 0.12);
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
	max-height: clamp(20rem, 40vw, 32rem);
	width: auto;
	max-width: 100%;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
	width: clamp(4.75rem, 8vw, 6.5rem);
	height: clamp(4.75rem, 8vw, 6.5rem);
	margin: clamp(0.85rem, 1.8vw, 1.25rem) 0.25rem 0;
	padding: 0.3rem;
	border: 1px solid rgba(33, 29, 26, 0.12);
	border-radius: 14px;
	background: #fffdf8;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
}

body.single-product div.product div.summary {
	padding-top: clamp(1.75rem, 3vw, 2.7rem);
}

body.single-product div.product .woocommerce-tabs {
	padding-top: clamp(0.5rem, 1vw, 1rem);
}

@media (max-width: 1100px) {
	.re-static-page--catalogue .re-editorial-catalog__hero {
		grid-template-columns: 1fr;
		gap: clamp(1.5rem, 4vw, 2.5rem);
	}

	.re-static-page--catalogue .re-editorial-catalog__visual {
		min-height: clamp(17rem, 48vw, 25rem);
	}
}

@media (max-width: 820px) {
	.re-static-page--catalogue > .re-static-page__inner {
		width: min(100% - 1.25rem, 1500px);
	}

	.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic {
		grid-template-columns: 1fr;
	}

	.re-static-page--catalogue .re-wc-product-card__image,
	.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic .re-wc-product-card:first-child .re-wc-product-card__image {
		aspect-ratio: 1 / 0.82;
	}
}

@media (max-width: 640px) {
	body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
		padding-inline: 0.75rem;
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
		min-height: 18rem;
		border-radius: 20px;
	}
}

/* Phase 91: hero/grid/gallery refinement. */
.re-static-page--catalogue {
	padding-top: 0;
}

.re-static-page--catalogue > .re-static-page__inner {
	width: 100%;
	max-width: none;
}

.re-static-page--catalogue .re-static-page__catalogue.re-wc-catalog {
	width: 100%;
}

.re-static-page--catalogue .re-editorial-catalog__hero {
	width: 100%;
	grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
	gap: clamp(3.5rem, 5vw, 5rem);
	min-height: clamp(22rem, 36vw, 30rem);
	padding: clamp(2rem, 4vw, 3.5rem) max(clamp(1.25rem, 4vw, 4rem), calc((100vw - 1500px) / 2));
	border-radius: 0;
	box-shadow: none;
}

.re-static-page--catalogue .re-editorial-catalog__hero-copy {
	max-width: 35rem;
}

.re-static-page--catalogue .re-editorial-catalog__hero h2 {
	font-size: clamp(1.75rem, 3.25vw, 3.25rem);
	line-height: 1.05;
}

.re-static-page--catalogue .re-editorial-catalog__visual {
	min-height: clamp(18rem, 29vw, 25rem);
}

.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic {
	width: min(100% - clamp(1.5rem, 4vw, 4rem), 1500px);
	margin-inline: auto;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
	padding-top: clamp(1.4rem, 2.6vw, 2.25rem);
}

.re-wc-product-card--featured .re-wc-product-card__excerpt {
	display: -webkit-box;
	margin: 0.1rem 0 0;
	overflow: hidden;
	color: #6b6257;
	font-size: 0.94rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.re-static-page--catalogue .re-wc-product-card--featured .re-wc-product-card__image {
	aspect-ratio: 1 / 0.92;
}

.re-static-page--catalogue .re-wc-product-card--featured .re-wc-product-card__img {
	max-height: 21rem;
}

.re-static-page--catalogue .re-wc-product-card__image {
	aspect-ratio: 1 / 0.86;
}

.re-static-page--catalogue .re-wc-product-card__img {
	max-height: 15.5rem;
}

body.single-product div.product div.images {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: #fffdf8;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	padding: clamp(0.9rem, 2.4vw, 2rem) max(clamp(0.85rem, 4vw, 4rem), calc((100vw - 1500px) / 2)) clamp(0.8rem, 1.6vw, 1.25rem);
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	width: min(100%, 1120px);
	min-height: clamp(20rem, 38vw, 31rem);
	overflow: hidden;
	background: #ffffff;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child a {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
	max-height: clamp(18rem, 34vw, 29rem);
	transition: transform 260ms ease;
	will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child:hover img {
		transform: scale(1.055);
	}
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child):hover,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child).is-active {
	border-color: rgba(154, 108, 36, 0.62);
	box-shadow: 0 10px 28px rgba(29, 24, 16, 0.12);
	transform: translateY(-1px);
}

body.single-product div.product div.summary {
	padding-top: clamp(1.35rem, 2.5vw, 2.3rem);
}

@media (max-width: 1180px) {
	.re-static-page--catalogue .re-editorial-catalog__hero {
		grid-template-columns: 1fr;
	}

	.re-static-page--catalogue .re-editorial-catalog__hero-copy {
		max-width: 48rem;
	}
}

@media (max-width: 820px) {
	.re-static-page--catalogue .re-editorial-catalog__hero {
		padding-inline: clamp(1rem, 5vw, 1.5rem);
	}

	.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic {
		width: min(100% - 1.25rem, 1500px);
	}
}

/* Phase 92: true full-width white catalogue and product stages. */
body.woocommerce,
body.woocommerce-page,
body.single-product,
body.tax-product_cat,
body.post-type-archive-product {
	background: #ffffff;
}

body.woocommerce .re-main,
body.woocommerce-page .re-main,
body.single-product .re-main,
body.single-product main,
body.tax-product_cat .re-main.re-wc-catalog,
body.post-type-archive-product .re-main.re-wc-catalog,
.re-static-page--catalogue,
.re-static-page--catalogue .re-static-page__catalogue.re-wc-catalog {
	background: #ffffff;
}

.re-static-page--catalogue {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0 0 clamp(2.25rem, 5vw, 4rem);
}

.re-static-page--catalogue > .re-static-page__inner {
	width: 100%;
	max-width: none;
	padding: 0;
}

.re-static-page--catalogue .re-editorial-catalog__hero {
	width: 100vw;
	margin: 0;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: clamp(3rem, 5vw, 5rem);
	align-items: center;
	min-height: clamp(20rem, 32vw, 28rem);
	padding: clamp(1.75rem, 3.6vw, 3rem) max(clamp(1.25rem, 4vw, 4.5rem), calc((100vw - 1500px) / 2));
	border-radius: 0;
	background: #ffffff;
	box-shadow: none;
	overflow: hidden;
}

.re-static-page--catalogue .re-editorial-catalog__hero-copy {
	position: relative;
	z-index: 2;
	min-width: 0;
	max-width: 36rem;
}

.re-static-page--catalogue .re-editorial-catalog__hero h2 {
	font-size: clamp(1.65rem, 2.75vw, 2.85rem);
	line-height: 1.08;
}

.re-static-page--catalogue .re-editorial-catalog__hero p {
	max-width: 33rem;
}

.re-static-page--catalogue .re-editorial-catalog__visual {
	position: relative;
	z-index: 1;
	min-width: 0;
	min-height: clamp(16rem, 28vw, 23rem);
	background: #ffffff;
	box-shadow: none;
	overflow: hidden;
}

.re-static-page--catalogue .re-editorial-catalog__visual::after {
	display: none;
}

.re-static-page--catalogue .re-editorial-catalog__visual-item {
	border-color: rgba(33, 29, 26, 0.08);
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(29, 24, 16, 0.1);
}

.re-static-page--catalogue .re-editorial-catalog__visual-item--1 {
	width: clamp(10rem, 18vw, 15rem);
}

.re-static-page--catalogue .re-editorial-catalog__visual-item--2,
.re-static-page--catalogue .re-editorial-catalog__visual-item--3 {
	width: clamp(5.5rem, 9vw, 8rem);
}

.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic {
	background: #ffffff;
}

body.single-product div.product,
body.single-product div.product div.images,
body.single-product div.product div.summary,
body.single-product div.product .woocommerce-tabs {
	background: #ffffff;
}

body.single-product div.product div.images {
	width: 100vw;
	margin-top: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #ffffff;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	background: #ffffff;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
	background: #ffffff;
}

@media (max-width: 1200px) {
	.re-static-page--catalogue .re-editorial-catalog__hero {
		grid-template-columns: 1fr;
		gap: clamp(1.5rem, 4vw, 2.5rem);
		overflow: visible;
	}

	.re-static-page--catalogue .re-editorial-catalog__hero-copy {
		max-width: 46rem;
	}
}

/* Phase 93: remove residual shop strips and enlarge catalogue card images. */
body.woocommerce,
body.woocommerce-page,
body.single-product,
body.tax-product_cat,
body.post-type-archive-product,
body.woocommerce .re-main,
body.woocommerce-page .re-main,
body.single-product .re-main,
body.tax-product_cat .re-main,
body.post-type-archive-product .re-main,
.re-static-page.re-static-page--catalogue,
.re-static-page.re-static-page--catalogue::before,
.re-static-page.re-static-page--catalogue::after,
.re-static-page--catalogue > .re-static-page__inner,
.re-static-page--catalogue .re-static-page__catalogue,
.re-static-page--catalogue .re-wc-catalog,
.re-static-page--catalogue .re-editorial-catalog__hero,
.re-static-page--catalogue .re-editorial-catalog__visual,
.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic,
body.single-product div.product,
body.single-product div.product div.images,
body.single-product div.product div.summary,
body.single-product div.product .woocommerce-tabs,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	background: #ffffff !important;
	background-image: none !important;
}

.re-static-page.re-static-page--catalogue {
	display: block;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 0 0 clamp(1.5rem, 3vw, 2.5rem);
}

.re-static-page--catalogue > .re-static-page__inner {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.re-static-page--catalogue .re-editorial-catalog__hero {
	margin-top: 0;
	padding-top: clamp(1.25rem, 2.6vw, 2.2rem);
}

.re-static-page--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic {
	padding-bottom: 0;
}

.re-static-page--catalogue .re-wc-product-card__image {
	aspect-ratio: 1 / 0.9;
}

.re-static-page--catalogue .re-wc-product-card--featured .re-wc-product-card__image {
	aspect-ratio: 1 / 0.98;
}

.re-static-page--catalogue .re-wc-product-card__img {
	max-height: 18.5rem;
	padding: clamp(0.18rem, 0.6vw, 0.42rem);
}

.re-static-page--catalogue .re-wc-product-card--featured .re-wc-product-card__img {
	max-height: 26rem;
	padding: clamp(0.18rem, 0.6vw, 0.42rem);
}

body.tax-product_cat ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img {
	padding: clamp(0.18rem, 0.6vw, 0.42rem);
}

body.single-product div.product div.images {
	margin-top: 0;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	padding-top: clamp(0.75rem, 1.8vw, 1.4rem);
	padding-bottom: clamp(0.75rem, 1.5vw, 1.1rem);
}

/* Phase 95: final white shop canvas and tighter product-card image padding. */
.re-main.re-main--catalogue,
body.woocommerce .re-main.re-wc-catalog,
body.woocommerce-page .re-main.re-wc-catalog,
body.single-product .re-main,
body.tax-product_cat .re-main,
body.post-type-archive-product .re-main {
	max-width: none;
	margin: 0;
	padding: 0;
	background: #ffffff !important;
	background-image: none !important;
}

.re-main.re-main--catalogue,
.re-main.re-main--catalogue > .re-section,
.re-main.re-main--catalogue .re-static-page.re-static-page--catalogue,
.re-main.re-main--catalogue .re-static-page.re-static-page--catalogue::before,
.re-main.re-main--catalogue .re-static-page.re-static-page--catalogue::after,
.re-main.re-main--catalogue .re-static-page__inner,
.re-main.re-main--catalogue .re-static-page__catalogue,
.re-main.re-main--catalogue .re-wc-catalog,
.re-main.re-main--catalogue .re-editorial-catalog__hero,
.re-main.re-main--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic,
body.woocommerce .re-main.re-wc-catalog,
body.woocommerce-page .re-main.re-wc-catalog,
body.tax-product_cat .re-main.re-wc-catalog,
body.post-type-archive-product .re-main.re-wc-catalog,
body.single-product .re-main,
body.single-product div.product,
body.single-product div.product div.images,
body.single-product div.product div.summary,
body.single-product div.product .woocommerce-tabs {
	background: #ffffff !important;
	background-image: none !important;
}

.re-main.re-main--catalogue .re-static-page.re-static-page--catalogue {
	width: 100%;
	margin: 0;
	padding-block: 0 clamp(1.5rem, 3vw, 2.5rem);
}

.re-main.re-main--catalogue .re-editorial-catalog__hero {
	margin-top: 0;
}

.re-main.re-main--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic,
body.tax-product_cat ul.products,
body.post-type-archive-product ul.products {
	padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.re-static-page--catalogue .re-wc-product-card__image,
.re-static-page--catalogue .re-wc-product-card--featured .re-wc-product-card__image {
	padding: 6px;
	background: #ffffff;
}

.re-static-page--catalogue .re-wc-product-card__img,
.re-static-page--catalogue .re-wc-product-card--featured .re-wc-product-card__img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	padding: 0;
	object-fit: contain;
}

body.tax-product_cat ul.products li.product a,
body.post-type-archive-product ul.products li.product a {
	background: #ffffff;
}

body.tax-product_cat ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img {
	box-sizing: border-box;
	padding: 6px;
	background: #ffffff;
	object-fit: contain;
}

/* Phase 96: calmer two-column catalogue grid and quieter card titles. */
.re-main.re-main--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic,
body.tax-product_cat ul.products,
body.post-type-archive-product ul.products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.re-main.re-main--catalogue .re-wc-product-card,
body.tax-product_cat ul.products li.product,
body.post-type-archive-product ul.products li.product {
	min-width: 0;
}

.re-main.re-main--catalogue .re-wc-product-card--featured,
.re-main.re-main--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic .re-wc-product-card:first-child,
body.tax-product_cat ul.products li.product:first-child,
body.post-type-archive-product ul.products li.product:first-child {
	grid-row: auto;
}

.re-main.re-main--catalogue .re-wc-product-card__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title {
	font-size: clamp(1rem, 1.05vw, 1.14rem);
	font-weight: 500;
	line-height: 1.24;
}

.re-main.re-main--catalogue .re-wc-product-card__title a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

@media (max-width: 767px) {
	.re-main.re-main--catalogue .re-wc-catalog__grid.re-editorial-catalog__mosaic,
	body.tax-product_cat ul.products,
	body.post-type-archive-product ul.products {
		grid-template-columns: 1fr;
	}
}

/* Phase 105: product detail gallery full-width with selectable featured thumbnail. */
body.single-product div.product div.images {
	width: 100vw;
	max-width: none;
	margin: 0 calc(50% - 50vw);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #ffffff !important;
	box-shadow: none;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(0.45rem, 1.2vw, 0.8rem);
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(0.75rem, 1.8vw, 1.5rem) max(clamp(0.9rem, 4vw, 4rem), calc((100vw - 1500px) / 2)) clamp(1rem, 2vw, 1.6rem);
	background: #ffffff !important;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	flex: 0 0 100%;
	display: grid;
	width: 100%;
	max-width: 1180px;
	min-height: clamp(24rem, 48vw, 43rem);
	margin: 0 auto clamp(0.45rem, 1vw, 0.8rem);
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #ffffff !important;
	box-shadow: none;
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child a {
	display: grid;
	width: 100%;
	height: 100%;
	cursor: default;
	place-items: center;
	pointer-events: none;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
	display: block;
	width: auto;
	max-width: min(100%, 1180px);
	max-height: clamp(23rem, 46vw, 41rem);
	margin: 0 auto;
	object-fit: contain;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
	flex: 0 0 auto;
	display: grid;
	width: clamp(4.7rem, 7vw, 6.35rem);
	height: clamp(4.7rem, 7vw, 6.35rem);
	margin: 0;
	padding: 0.24rem;
	border: 1px solid rgba(33, 29, 26, 0.14);
	border-radius: 12px;
	background: #ffffff !important;
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) a {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: none;
	object-fit: contain;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child):hover,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child).is-active {
	border-color: rgba(154, 108, 36, 0.72);
	box-shadow: 0 8px 24px rgba(29, 24, 16, 0.1);
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
		padding-right: clamp(0.75rem, 4vw, 1rem);
		padding-left: clamp(0.75rem, 4vw, 1rem);
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
		min-height: clamp(20rem, 86vw, 30rem);
	}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
		max-height: clamp(19rem, 82vw, 28rem);
	}
}

/* Phase 106: keep single-product thumbnails exclusively below the main image. */
body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(clamp(4.7rem, 7vw, 6.35rem), clamp(4.7rem, 7vw, 6.35rem))) !important;
	justify-content: center;
	align-items: start;
	gap: clamp(0.45rem, 1.2vw, 0.8rem);
	width: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(0.75rem, 1.8vw, 1.5rem) max(clamp(0.9rem, 4vw, 4rem), calc((100vw - 1500px) / 2)) clamp(1rem, 2vw, 1.6rem);
	overflow-x: hidden;
	background: #ffffff !important;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	grid-column: 1 / -1 !important;
	display: grid !important;
	justify-self: stretch;
	width: 100% !important;
	max-width: none;
	min-height: clamp(24rem, 48vw, 43rem);
	margin: 0 0 clamp(0.45rem, 1vw, 0.8rem);
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #ffffff !important;
	box-shadow: none;
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child a {
	display: grid;
	width: min(100%, 1180px);
	height: 100%;
	cursor: default;
	place-items: center;
	pointer-events: none;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
	display: block;
	width: auto;
	max-width: min(100%, 1180px);
	max-height: clamp(23rem, 46vw, 41rem);
	margin: 0 auto;
	object-fit: contain;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
	grid-column: auto !important;
	justify-self: center;
	align-self: start;
	width: clamp(4.7rem, 7vw, 6.35rem) !important;
	height: clamp(4.7rem, 7vw, 6.35rem) !important;
	margin: 0 !important;
}

@media (max-width: 767px) {
	body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
		grid-template-columns: repeat(auto-fit, minmax(4.35rem, 4.35rem)) !important;
		padding-right: clamp(0.75rem, 4vw, 1rem);
		padding-left: clamp(0.75rem, 4vw, 1rem);
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
		min-height: clamp(20rem, 86vw, 30rem);
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child img {
		max-height: clamp(19rem, 82vw, 28rem);
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
		width: 4.35rem !important;
		height: 4.35rem !important;
	}
}

/* Phase 107: larger initial main image, no top gap, centered thumbnail row. */
body.single-product div.product div.images {
	margin-top: 0 !important;
	padding-top: 0 !important;
	background: #ffffff !important;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	display: block !important;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 max(clamp(0.9rem, 4vw, 4rem), calc((100vw - 1500px) / 2)) clamp(0.9rem, 1.8vw, 1.4rem);
	overflow-x: hidden;
	background: #ffffff !important;
	text-align: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	display: grid !important;
	width: 100% !important;
	max-width: none;
	min-height: clamp(27rem, 52vw, 46rem);
	margin: 0 auto clamp(0.55rem, 1.2vw, 0.95rem);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #ffffff !important;
	box-shadow: none;
	place-items: center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > img,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > a > img {
	display: block;
	width: auto;
	max-width: min(100%, 1240px);
	max-height: clamp(26rem, 50vw, 44rem);
	margin: 0 auto;
	object-fit: contain;
}

body.single-product div.product div.images .re-wc-gallery-thumbnails {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(0.45rem, 1.2vw, 0.8rem);
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 0;
	background: #ffffff !important;
}

body.single-product div.product div.images .re-wc-gallery-thumbnails > .woocommerce-product-gallery__image {
	display: grid !important;
	flex: 0 0 auto;
	width: clamp(4.7rem, 7vw, 6.35rem) !important;
	height: clamp(4.7rem, 7vw, 6.35rem) !important;
	margin: 0 !important;
	padding: 0.24rem;
	border: 1px solid rgba(33, 29, 26, 0.14);
	border-radius: 12px;
	background: #ffffff !important;
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	place-items: center;
}

body.single-product div.product div.images .re-wc-gallery-thumbnails > .woocommerce-product-gallery__image a {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

body.single-product div.product div.images .re-wc-gallery-thumbnails > .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: none;
	object-fit: contain;
}

body.single-product div.product div.images .re-wc-gallery-thumbnails > .woocommerce-product-gallery__image:hover,
body.single-product div.product div.images .re-wc-gallery-thumbnails > .woocommerce-product-gallery__image.is-active {
	border-color: rgba(154, 108, 36, 0.72);
	box-shadow: 0 8px 24px rgba(29, 24, 16, 0.1);
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
		padding-right: clamp(0.75rem, 4vw, 1rem);
		padding-left: clamp(0.75rem, 4vw, 1rem);
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
		min-height: clamp(22rem, 88vw, 31rem);
	}

	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > img,
	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > a > img {
		max-height: clamp(21rem, 84vw, 29rem);
	}

	body.single-product div.product div.images .re-wc-gallery-thumbnails {
		max-width: 100%;
	}

body.single-product div.product div.images .re-wc-gallery-thumbnails > .woocommerce-product-gallery__image {
		width: 4.35rem !important;
		height: 4.35rem !important;
	}
}

/* Phase 108: remove remaining vertical gallery whitespace. */
body.single-product div.product div.images,
body.single-product div.product div.images .woocommerce-product-gallery {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	padding-top: 0 !important;
	padding-bottom: clamp(0.75rem, 1.5vw, 1.1rem);
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	align-items: start;
	min-height: 0 !important;
	margin-bottom: 15px !important;
	place-items: start center;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > img,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > a > img {
	margin-top: 0;
}

body.single-product div.product div.images .re-wc-gallery-thumbnails {
	margin-top: 0 !important;
}

@media (max-width: 767px) {
	body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
		min-height: 0 !important;
		margin-bottom: 15px !important;
	}
}

/* Phase 109: final single-product gallery top spacing. */
body.single-product .re-main,
body.single-product main,
body.single-product div.product,
body.single-product div.product div.images,
body.single-product div.product div.images .woocommerce-product-gallery,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper {
	align-items: flex-start !important;
	gap: 0 !important;
	line-height: 0;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child {
	align-items: start !important;
	line-height: 0;
	margin-top: 0 !important;
	margin-bottom: 15px !important;
	padding-top: 0 !important;
	place-items: start center !important;
}

body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > img,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child > a > img {
	margin-top: 0 !important;
	vertical-align: top;
}

body.single-product div.product div.images .re-wc-gallery-thumbnails {
	line-height: 1;
	margin-top: 0 !important;
}

/* Phase 110: remove the final single-product gap before the first visible image. */
body.single-product .re-main.re-wc-catalog {
	display: block !important;
	gap: 0 !important;
	padding-top: 0 !important;
}

body.single-product .re-main.re-wc-catalog > .woocommerce-notices-wrapper:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.single-product .re-main.re-wc-catalog > div.product {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Phase 112: product category archives aligned with the RheinEdel catalogue design. */
body.tax-product_cat .re-main.re-wc-catalog {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: #ffffff !important;
}

body.tax-product_cat .woocommerce-products-header {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: clamp(3rem, 6vw, 4.5rem) max(clamp(1rem, 5vw, 4rem), calc((100vw - 1400px) / 2)) clamp(2rem, 4vw, 3rem);
	background: #181719 !important;
	color: #fffaf2;
}

body.tax-product_cat .woocommerce-products-header__title,
body.tax-product_cat .woocommerce-products-header .page-title {
	max-width: 1400px;
	margin: 0 auto;
	color: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.35rem, 5vw, 4.4rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

body.tax-product_cat .term-description {
	max-width: 760px;
	margin: 1rem auto 0;
	color: rgba(255, 250, 242, 0.78);
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	line-height: 1.6;
	text-align: center;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-notices-wrapper,
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count,
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
	box-sizing: border-box;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-notices-wrapper:empty {
	display: none;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count,
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
	position: relative;
	z-index: 1;
	margin-top: clamp(1.1rem, 2.2vw, 1.7rem);
	margin-bottom: 0;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count {
	float: none;
	display: flex;
	align-items: center;
	min-height: 3.25rem;
	width: min(100% - clamp(2rem, 8vw, 8rem), 1320px);
	margin-right: auto;
	margin-left: auto;
	padding: 0.8rem clamp(1rem, 2.5vw, 1.4rem);
	border: 1px solid rgba(33, 29, 26, 0.1);
	border-radius: 8px;
	background: #ffffff;
	color: rgba(33, 29, 26, 0.68);
	font-size: 0.92rem;
	line-height: 1.35;
	box-shadow: 0 12px 34px rgba(29, 24, 16, 0.06);
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
	float: none;
	display: flex;
	justify-content: flex-end;
	width: min(100% - clamp(2rem, 8vw, 8rem), 1320px);
	margin-top: -3.25rem;
	margin-right: auto;
	margin-left: auto;
	padding: 0.45rem clamp(1rem, 2.5vw, 1.4rem);
	pointer-events: none;
}

body.tax-product_cat .woocommerce-ordering select {
	box-sizing: border-box;
	min-height: 2.35rem;
	max-width: min(100%, 18rem);
	padding: 0.5rem 2.35rem 0.5rem 0.8rem;
	border: 1px solid rgba(33, 29, 26, 0.16);
	border-radius: 999px;
	background: #ffffff;
	color: #211d1a;
	font: inherit;
	font-size: 0.9rem;
	line-height: 1.2;
	pointer-events: auto;
}

body.tax-product_cat ul.products {
	clear: both;
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(1.1rem, 2.4vw, 1.75rem) !important;
	width: min(100% - clamp(2rem, 8vw, 8rem), 1320px);
	max-width: 1320px;
	margin: clamp(1.25rem, 2.8vw, 2rem) auto clamp(2rem, 4vw, 3.5rem) !important;
	padding: 0 !important;
	background: #ffffff;
	list-style: none;
}

body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after {
	display: none !important;
	content: none !important;
}

body.tax-product_cat ul.products li.product,
body.tax-product_cat ul.products li.product.first,
body.tax-product_cat ul.products li.product.last,
body.tax-product_cat ul.products li.product:first-child {
	float: none !important;
	clear: none !important;
	display: block !important;
	width: auto !important;
	min-width: 0;
	max-width: none;
	margin: 0 !important;
	padding: 0 !important;
	grid-column: auto !important;
	grid-row: auto !important;
	background: transparent !important;
	box-shadow: none;
}

body.tax-product_cat ul.products li.product .re-wc-product-card {
	height: 100%;
}

body.tax-product_cat ul.products li.product .re-wc-product-card__image {
	padding: 6px;
	background: #ffffff;
}

body.tax-product_cat ul.products li.product .re-wc-product-card__img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	padding: 0;
	object-fit: contain;
}

body.tax-product_cat ul.products li.product .re-wc-product-card__title {
	font-size: clamp(1rem, 1.05vw, 1.14rem);
	font-weight: 500;
	line-height: 1.24;
}

body.tax-product_cat ul.products li.product .re-wc-product-card__title a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.tax-product_cat ul.products li.product .re-wc-inquiry__button {
	color: #fffaf2;
}

/* Phase 113: category archive product-card buttons match the catalogue landing page. */
body.tax-product_cat ul.products li.product .re-wc-product-card .re-wc-inquiry__button,
body.tax-product_cat ul.products li.product .re-wc-product-card .re-wc-inquiry__button:visited {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 2.8rem;
	padding: 0.78rem 1.12rem;
	border: 1px solid #191719 !important;
	border-radius: 999px;
	background: #191719 !important;
	color: #fffaf2 !important;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

body.tax-product_cat ul.products li.product .re-wc-product-card .re-wc-inquiry__button:hover,
body.tax-product_cat ul.products li.product .re-wc-product-card .re-wc-inquiry__button:focus-visible {
	border-color: #9a6c24 !important;
	background: #9a6c24 !important;
	color: #fffaf2 !important;
	outline: 2px solid rgba(154, 108, 36, 0.28);
	outline-offset: 3px;
}

@media (max-width: 767px) {
	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count,
	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering,
	body.tax-product_cat ul.products {
		width: min(100% - 1.5rem, 1320px);
	}

	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count,
	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
		margin-top: 0.9rem;
	}

	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count {
		display: block;
		min-height: 0;
		text-align: center;
	}

	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
		justify-content: center;
		margin-top: 0.6rem;
		padding-block: 0;
	}

	body.tax-product_cat .woocommerce-ordering select {
		width: 100%;
		max-width: 100%;
	}

	body.tax-product_cat ul.products {
		grid-template-columns: 1fr !important;
	}
}

/* Phase 114: quieter premium result/sorting controls for product categories. */
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count,
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
	width: min(100% - clamp(2rem, 8vw, 8rem), 1320px);
	max-width: 1320px;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count {
	display: inline-flex;
	align-items: center;
	width: auto;
	min-height: 0;
	margin: clamp(1.15rem, 2.2vw, 1.65rem) 0 0 max(clamp(1rem, 4vw, 4rem), calc((100vw - 1320px) / 2));
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(33, 29, 26, 0.58);
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.4;
	box-shadow: none;
	gap: 0.48rem;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count::before {
	display: inline-block;
	width: 0.78rem;
	height: 0.78rem;
	flex: 0 0 auto;
	background:
		linear-gradient(currentColor 0 0) 0 0 / 0.28rem 0.28rem no-repeat,
		linear-gradient(currentColor 0 0) 100% 0 / 0.28rem 0.28rem no-repeat,
		linear-gradient(currentColor 0 0) 0 100% / 0.28rem 0.28rem no-repeat,
		linear-gradient(currentColor 0 0) 100% 100% / 0.28rem 0.28rem no-repeat;
	color: rgba(154, 108, 36, 0.72);
	content: "";
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: -1.72rem auto 0;
	padding: 0;
	pointer-events: none;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering::before {
	display: inline-block;
	width: 0.82rem;
	height: 0.82rem;
	margin-right: 0.48rem;
	border-top: 2px solid rgba(154, 108, 36, 0.72);
	border-bottom: 2px solid rgba(154, 108, 36, 0.72);
	content: "";
	opacity: 0.88;
	pointer-events: none;
}

body.tax-product_cat .woocommerce-ordering select {
	-webkit-appearance: none;
	appearance: none;
	min-height: 2.3rem;
	max-width: min(100%, 17rem);
	padding: 0.48rem 2.2rem 0.48rem 0.92rem;
	border: 1px solid rgba(33, 29, 26, 0.1);
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.86);
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(33, 29, 26, 0.62) 50%),
		linear-gradient(135deg, rgba(33, 29, 26, 0.62) 50%, transparent 50%);
	background-position:
		calc(100% - 1rem) 50%,
		calc(100% - 0.72rem) 50%;
	background-repeat: no-repeat;
	background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
	color: rgba(33, 29, 26, 0.78);
	font-size: 0.88rem;
	font-weight: 500;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

body.tax-product_cat .woocommerce-ordering select:hover,
body.tax-product_cat .woocommerce-ordering select:focus-visible {
	border-color: rgba(154, 108, 36, 0.34);
	color: #211d1a;
	outline: 2px solid rgba(154, 108, 36, 0.18);
	outline-offset: 2px;
}

@media (max-width: 767px) {
	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count,
	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
		width: min(100% - 1.5rem, 1320px);
		margin-right: auto;
		margin-left: auto;
	}

	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count {
		display: flex;
		justify-content: center;
		margin-top: 0.95rem;
		text-align: center;
	}

	body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
		justify-content: center;
		margin-top: 0.7rem;
	}

	body.tax-product_cat .woocommerce-ordering select {
		width: 100%;
		max-width: 100%;
	}
}

/* Phase 115: Font Awesome icons and unboxed native select for category sorting. */
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count::before,
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering::before,
body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering::after {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.95rem;
	height: 0.95rem;
	background: none;
	color: rgba(154, 108, 36, 0.74);
	font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", "Font Awesome 5 Free";
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	text-rendering: auto;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-result-count::before {
	content: "\f00a";
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering {
	position: relative;
	gap: 0.46rem;
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering::before {
	margin-right: 0;
	border: 0;
	content: "\f0dc";
}

body.tax-product_cat .re-main.re-wc-catalog > .woocommerce-ordering::after {
	position: absolute;
	top: 50%;
	right: 0.14rem;
	content: "\f078";
	pointer-events: none;
	transform: translateY(-50%);
}

body.tax-product_cat .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select.orderby {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	min-height: 2.05rem;
	padding: 0.38rem 1.45rem 0.38rem 0;
	border: 0 !important;
	border-bottom: 1px solid rgba(154, 108, 36, 0.18) !important;
	border-radius: 0;
	background-color: transparent !important;
	background-image: none !important;
	color: rgba(33, 29, 26, 0.76);
	box-shadow: none !important;
	cursor: pointer;
}

body.tax-product_cat .woocommerce-ordering select::-ms-expand {
	display: none;
}

body.tax-product_cat .woocommerce-ordering select:hover,
body.tax-product_cat .woocommerce-ordering select:focus-visible,
body.tax-product_cat .woocommerce-ordering select.orderby:hover,
body.tax-product_cat .woocommerce-ordering select.orderby:focus-visible {
	border-color: rgba(154, 108, 36, 0.42) !important;
	background-color: transparent !important;
	color: #211d1a;
	outline: 0;
	box-shadow: 0 2px 0 rgba(154, 108, 36, 0.14) !important;
}
