/*
 * Shop4U global visual system.
 * Brand colors are close approximations inferred from the approved reference.
 */

:root {
	--shop4u-color-primary: #e83f6f;
	--shop4u-color-primary-strong: #c92d5a;
	--shop4u-color-primary-soft: #fce8ee;
	--shop4u-color-primary-pale: #fff4f7;
	--shop4u-color-text: #151316;
	--shop4u-color-text-muted: #686268;
	--shop4u-color-background: #fffafa;
	--shop4u-color-surface: #ffffff;
	--shop4u-color-border: #e8e2e5;
	--shop4u-color-footer: #1d1d1f;
	--shop4u-color-footer-muted: #bdb9bd;
	--shop4u-color-success: #25854f;
	--shop4u-color-warning: #a86413;
	--shop4u-color-danger: #bd294c;
	--shop4u-container-max: 75rem;
	--shop4u-container-wide: 87.5rem;
	--shop4u-gutter: clamp(1rem, 3vw, 2rem);
	--shop4u-radius-xs: 0.25rem;
	--shop4u-radius-sm: 0.5rem;
	--shop4u-radius-md: 0.75rem;
	--shop4u-radius-lg: 1.125rem;
	--shop4u-radius-pill: 999px;
	--shop4u-space-1: 0.25rem;
	--shop4u-space-2: 0.5rem;
	--shop4u-space-3: 0.75rem;
	--shop4u-space-4: 1rem;
	--shop4u-space-5: 1.5rem;
	--shop4u-space-6: 2rem;
	--shop4u-space-7: 3rem;
	--shop4u-space-8: 4.5rem;
	--shop4u-shadow-subtle: 0 0.25rem 1rem rgb(23 19 22 / 7%);
	--shop4u-shadow-menu: 0 1rem 2.5rem rgb(23 19 22 / 14%);
	--shop4u-font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shop4u-font-brand: "Segoe Script", "Bradley Hand", cursive;
	--shop4u-text-xs: 0.75rem;
	--shop4u-text-sm: 0.875rem;
	--shop4u-text-md: 1rem;
	--shop4u-text-lg: 1.125rem;
	--shop4u-heading-sm: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
	--shop4u-heading-md: clamp(1.75rem, 1.45rem + 1vw, 2.35rem);
	--shop4u-heading-lg: clamp(2.25rem, 1.8rem + 2vw, 3.5rem);
	--shop4u-transition-fast: 160ms ease;
	--shop4u-transition-base: 240ms ease;
	--shop4u-z-header: 100;
	--shop4u-z-menu: 110;
	--shop4u-z-skip-link: 1000;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: clip;
	background: var(--shop4u-color-background);
	color: var(--shop4u-color-text);
	font-family: var(--shop4u-font-sans);
	font-size: var(--shop4u-text-md);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.navigation-open {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
	margin-block-start: 0;
}

h1,
h2,
h3,
h4 {
	line-height: 1.16;
	letter-spacing: -0.025em;
}

h1 {
	font-size: var(--shop4u-heading-lg);
}

h2 {
	font-size: var(--shop4u-heading-md);
}

h3 {
	font-size: var(--shop4u-heading-sm);
}

a {
	color: var(--shop4u-color-primary-strong);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
	transition: color var(--shop4u-transition-fast);
}

a:hover {
	color: var(--shop4u-color-primary);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
[type="button"],
[type="submit"] {
	cursor: pointer;
}

:where(a, button, input, select, textarea):focus-visible {
	outline: 0.1875rem solid var(--shop4u-color-primary);
	outline-offset: 0.1875rem;
}

img,
svg {
	display: block;
}

img {
	max-width: 100%;
	height: auto;
}

.shop4u-container,
.shop4u-container-wide {
	width: min(100% - (2 * var(--shop4u-gutter)), var(--shop4u-container-max));
	margin-inline: auto;
}

.shop4u-container-wide {
	max-width: var(--shop4u-container-wide);
}

.shop4u-section {
	padding-block: clamp(var(--shop4u-space-7), 7vw, var(--shop4u-space-8));
}

.shop4u-icon {
	width: 1.35rem;
	height: 1.35rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.screen-reader-text {
	position: absolute;
	width: 0.0625rem;
	height: 0.0625rem;
	padding: 0;
	margin: -0.0625rem;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: var(--shop4u-space-4);
	left: var(--shop4u-space-4);
	z-index: var(--shop4u-z-skip-link);
	width: auto;
	height: auto;
	padding: var(--shop4u-space-3) var(--shop4u-space-4);
	margin: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	white-space: normal;
	background: var(--shop4u-color-surface);
	box-shadow: var(--shop4u-shadow-menu);
	color: var(--shop4u-color-text);
}

/* Announcement */
.announcement-bar {
	position: relative;
	z-index: var(--shop4u-z-header);
	background: var(--shop4u-color-primary);
	color: var(--shop4u-color-surface);
}

.announcement-bar__inner {
	display: flex;
	min-height: 1.875rem;
	align-items: center;
	justify-content: center;
	padding-block: var(--shop4u-space-1);
	text-align: center;
}

.announcement-bar p {
	margin: 0;
	font-size: var(--shop4u-text-xs);
	font-weight: 600;
	line-height: 1.35;
}

/* Header */
.site-header {
	position: relative;
	z-index: var(--shop4u-z-header);
	background: var(--shop4u-color-surface);
	border-bottom: 0.0625rem solid var(--shop4u-color-border);
}

.site-header__main {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: var(--shop4u-space-3);
	min-height: 4.25rem;
	padding-block: var(--shop4u-space-2);
}

.site-branding {
	min-width: 0;
}

.site-title,
.site-footer__title {
	display: inline-block;
	color: var(--shop4u-color-text);
	font-family: var(--shop4u-font-brand);
	font-size: clamp(1.55rem, 6vw, 2.15rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.06em;
	text-decoration: none;
}

.site-title::first-letter,
.site-footer__title::first-letter {
	color: var(--shop4u-color-primary);
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-width: 9.5rem;
	max-height: 3rem;
}

.menu-toggle,
.header-action {
	display: inline-flex;
	position: relative;
	width: 2.75rem;
	height: 2.75rem;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-text);
	text-decoration: none;
	transition: background-color var(--shop4u-transition-fast), color var(--shop4u-transition-fast);
}

.menu-toggle:hover,
.header-action:hover {
	background: var(--shop4u-color-primary-pale);
	color: var(--shop4u-color-primary-strong);
}

.menu-toggle[aria-expanded="false"] .menu-toggle__close,
.menu-toggle[aria-expanded="true"] .menu-toggle__open {
	display: none;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--shop4u-space-1);
}

.header-cart__count {
	display: flex;
	position: absolute;
	top: 0.15rem;
	right: 0.05rem;
	min-width: 1.05rem;
	height: 1.05rem;
	align-items: center;
	justify-content: center;
	padding-inline: 0.18rem;
	background: var(--shop4u-color-primary);
	border: 0.125rem solid var(--shop4u-color-surface);
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-surface);
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
}

.header-search--desktop,
.header-account--desktop {
	display: none;
}

.header-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: var(--shop4u-z-menu);
	max-height: calc(100vh - 6rem);
	overflow-y: auto;
	background: var(--shop4u-color-surface);
	border-top: 0.0625rem solid var(--shop4u-color-border);
	box-shadow: var(--shop4u-shadow-menu);
}

.header-panel[hidden] {
	display: none;
}

.header-panel__inner {
	display: grid;
	gap: var(--shop4u-space-4);
	padding-block: var(--shop4u-space-4) var(--shop4u-space-5);
}

.product-search {
	display: flex;
	position: relative;
	width: 100%;
}

.product-search__field {
	width: 100%;
	height: 2.75rem;
	padding: 0.65rem 3rem 0.65rem var(--shop4u-space-4);
	background: #f7f5f6;
	border: 0.0625rem solid transparent;
	border-radius: var(--shop4u-radius-sm);
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-sm);
	transition: background-color var(--shop4u-transition-fast), border-color var(--shop4u-transition-fast);
}

.product-search__field::placeholder {
	color: var(--shop4u-color-text-muted);
}

.product-search__field:focus {
	background: var(--shop4u-color-surface);
	border-color: var(--shop4u-color-primary);
}

.product-search__submit {
	display: inline-flex;
	position: absolute;
	top: 50%;
	right: var(--shop4u-space-1);
	width: 2.25rem;
	height: 2.25rem;
	align-items: center;
	justify-content: center;
	padding: 0;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-text);
}

.primary-navigation__menu,
.footer-navigation__menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation__menu {
	display: grid;
	gap: var(--shop4u-space-1);
}

.primary-navigation a {
	display: flex;
	min-height: 2.75rem;
	align-items: center;
	padding: var(--shop4u-space-2) var(--shop4u-space-3);
	border-radius: var(--shop4u-radius-sm);
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-sm);
	font-weight: 600;
	text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
	background: var(--shop4u-color-primary-pale);
	color: var(--shop4u-color-primary-strong);
}

.mobile-account-link {
	display: flex;
	min-height: 2.75rem;
	align-items: center;
	gap: var(--shop4u-space-3);
	padding: var(--shop4u-space-2) var(--shop4u-space-3);
	border-top: 0.0625rem solid var(--shop4u-color-border);
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-sm);
	font-weight: 600;
	text-decoration: none;
}

/* Main content */
.site-main {
	min-height: 60vh;
}

.foundation-page,
.content-area {
	padding-block: clamp(var(--shop4u-space-7), 7vw, var(--shop4u-space-8));
}

.foundation-page {
	text-align: center;
}

.foundation-page p {
	color: var(--shop4u-color-text-muted);
}

/* Homepage: hero, value strip and popular categories */
.home-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(105deg, var(--shop4u-color-primary-pale), var(--shop4u-color-primary-soft));
}

.home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: 29rem;
}

.home-hero__content {
	position: relative;
	z-index: 2;
	max-width: 34rem;
	padding-block: var(--shop4u-space-7) var(--shop4u-space-4);
}

.home-hero__title {
	margin-bottom: var(--shop4u-space-4);
}

.home-hero__title-main,
.home-hero__title-accent {
	display: block;
}

.home-hero__title-main {
	font-size: clamp(2.15rem, 8.5vw, 3.65rem);
	font-weight: 750;
}

.home-hero__title-accent {
	margin-top: var(--shop4u-space-1);
	color: var(--shop4u-color-primary);
	font-family: var(--shop4u-font-brand);
	font-size: clamp(2.35rem, 9vw, 4rem);
	font-style: italic;
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.95;
}

.home-hero__description {
	max-width: 31rem;
	margin-bottom: var(--shop4u-space-5);
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-md);
}

.shop4u-button {
	display: inline-flex;
	min-height: 2.875rem;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1.35rem;
	background: var(--shop4u-color-primary);
	border: 0.0625rem solid var(--shop4u-color-primary);
	border-radius: var(--shop4u-radius-xs);
	color: var(--shop4u-color-surface);
	font-size: var(--shop4u-text-sm);
	font-weight: 700;
	text-decoration: none;
	transition: background-color var(--shop4u-transition-fast), border-color var(--shop4u-transition-fast), transform var(--shop4u-transition-fast);
}

.shop4u-button:hover {
	transform: translateY(-0.0625rem);
	background: var(--shop4u-color-primary-strong);
	border-color: var(--shop4u-color-primary-strong);
	color: var(--shop4u-color-surface);
}

.home-hero__artwork {
	display: flex;
	min-height: 12.5rem;
	align-items: end;
	justify-content: center;
	margin-inline: calc(-1 * var(--shop4u-gutter));
}

.home-hero__shopper {
	position: relative;
	z-index: 1;
	width: min(28rem, 84vw);
	max-height: 18rem;
	object-fit: contain;
	object-position: center bottom;
}

.home-hero__sparkle {
	position: absolute;
	z-index: 2;
	color: var(--shop4u-color-surface);
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	opacity: 0.9;
}

.home-hero__sparkle--one {
	top: 20%;
	left: 12%;
}

.home-hero__sparkle--two {
	top: 38%;
	right: 8%;
	opacity: 0.75;
}

.home-benefits {
	background: var(--shop4u-color-surface);
	border-bottom: 0.0625rem solid var(--shop4u-color-border);
}

.home-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(min-content, max-content));
	grid-auto-flow: row;
	height: auto;
	max-height: none;
	overflow: visible;
}

.benefit-item {
	display: grid;
	grid-template-columns: 2.25rem minmax(0, 1fr);
	gap: var(--shop4u-space-2);
	align-content: start;
	padding: var(--shop4u-space-4) var(--shop4u-space-3);
	border-bottom: 0.0625rem solid var(--shop4u-color-border);
}

.benefit-item:nth-child(odd) {
	border-right: 0.0625rem solid var(--shop4u-color-border);
}

.benefit-item:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.benefit-item__icon {
	display: flex;
	width: 2.25rem;
	height: 2.25rem;
	align-items: center;
	justify-content: center;
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-primary);
}

.benefit-item__icon .shop4u-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.benefit-item__title {
	margin-bottom: var(--shop4u-space-1);
	font-size: clamp(0.75rem, 2.8vw, var(--shop4u-text-sm));
	font-weight: 750;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.benefit-item p {
	margin: 0;
	color: var(--shop4u-color-text-muted);
	font-size: clamp(0.6875rem, 2.5vw, var(--shop4u-text-xs));
	line-height: 1.45;
}

.home-categories {
	background: var(--shop4u-color-surface);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--shop4u-space-4);
	margin-bottom: var(--shop4u-space-5);
}

.section-heading h2 {
	margin: 0;
	font-size: var(--shop4u-heading-sm);
}

.section-heading__link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: var(--shop4u-space-2);
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-xs);
	font-weight: 650;
	text-decoration: none;
}

.section-heading__link span {
	color: var(--shop4u-color-primary);
	font-size: var(--shop4u-text-lg);
	transition: transform var(--shop4u-transition-fast);
}

.section-heading__link:hover span {
	transform: translateX(0.2rem);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--shop4u-space-3);
}

.category-card {
	display: grid;
	min-width: 0;
	gap: var(--shop4u-space-2);
	color: var(--shop4u-color-text);
	text-align: center;
	text-decoration: none;
}

.category-card__visual {
	display: grid;
	position: relative;
	min-height: 0;
	aspect-ratio: 1.18 / 1;
	overflow: hidden;
	place-items: center;
	background: var(--shop4u-color-primary-pale);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-sm);
	transition: border-color var(--shop4u-transition-fast), box-shadow var(--shop4u-transition-fast), transform var(--shop4u-transition-fast);
}

.category-card:hover .category-card__visual {
	transform: translateY(-0.125rem);
	border-color: color-mix(in srgb, var(--shop4u-color-primary) 40%, var(--shop4u-color-border));
	box-shadow: var(--shop4u-shadow-subtle);
}

.category-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-card__fallback {
	display: grid;
	width: clamp(3.75rem, 16vw, 5.25rem);
	height: clamp(3.75rem, 16vw, 5.25rem);
	place-items: center;
	background: rgb(255 255 255 / 72%);
	border-radius: 45% 55% 52% 48% / 53% 44% 56% 47%;
	color: var(--shop4u-color-primary-strong);
}

.category-card__fallback .shop4u-icon {
	width: 2.4rem;
	height: 2.4rem;
	stroke-width: 1.35;
}

.category-card--super .category-card__visual,
.category-card--juguetes .category-card__visual {
	background: #fff4e8;
}

.category-card--hogar-decoracion .category-card__visual {
	background: #f4f1ed;
}

.category-card--ropa .category-card__visual {
	background: #f7e9ee;
}

.category-card--belleza .category-card__visual {
	background: #fcecf2;
}

.category-card--salud-cuidado-personal .category-card__visual {
	background: #edf7f4;
}

.category-card__name {
	overflow-wrap: anywhere;
	font-size: var(--shop4u-text-xs);
	font-weight: 700;
	line-height: 1.35;
}

.home-categories__empty {
	margin: 0;
	color: var(--shop4u-color-text-muted);
}

@media (max-width: 42.99rem) {
	.home-categories {
		padding-top: var(--shop4u-space-6);
	}
}

@media (max-width: 22.49rem) {
	.home-benefits__grid {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: none;
		grid-auto-rows: minmax(min-content, max-content);
	}

	.benefit-item,
	.benefit-item:nth-child(odd),
	.benefit-item:nth-last-child(-n + 2) {
		border-right: 0;
		border-bottom: 0.0625rem solid var(--shop4u-color-border);
	}

	.benefit-item:last-child {
		border-bottom: 0;
	}
}

@media (min-width: 43rem) {
	.home-hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
		min-height: 27rem;
	}

	.home-hero__content {
		padding-block: var(--shop4u-space-7);
	}

	.home-hero__artwork {
		align-self: stretch;
		min-height: 0;
		margin-right: calc(-1 * var(--shop4u-gutter));
		margin-left: 0;
	}

	.home-hero__shopper {
		width: min(31rem, 48vw);
		max-height: 27rem;
		align-self: end;
	}

	.category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--shop4u-space-4);
	}
}

@media (min-width: 64rem) {
	.home-hero__inner {
		grid-template-columns: minmax(23rem, 0.85fr) minmax(32rem, 1.15fr);
		min-height: 29rem;
	}

	.home-hero__content {
		padding-block: var(--shop4u-space-8);
	}

	.home-hero__shopper {
		width: min(34rem, 46vw);
		max-height: 29rem;
	}

	.home-benefits__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-template-rows: minmax(min-content, max-content);
	}

	.benefit-item {
		grid-template-columns: 2.75rem minmax(0, 1fr);
		gap: var(--shop4u-space-3);
		padding: var(--shop4u-space-5) var(--shop4u-space-4);
		border-right: 0.0625rem solid var(--shop4u-color-border);
		border-bottom: 0;
	}

	.benefit-item:last-child {
		border-right: 0;
	}

	.benefit-item__icon {
		width: 2.75rem;
		height: 2.75rem;
	}

	.category-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.category-card__name {
		font-size: var(--shop4u-text-sm);
	}
}

/* Footer */
.site-footer {
	background: var(--shop4u-color-footer);
	color: var(--shop4u-color-surface);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--shop4u-space-6);
	padding-block: var(--shop4u-space-7);
}

.site-footer__title {
	color: var(--shop4u-color-surface);
}

.site-footer__title::first-letter {
	color: var(--shop4u-color-primary);
}

.site-footer .custom-logo {
	max-height: 3.25rem;
}

.site-footer__heading {
	margin-bottom: var(--shop4u-space-3);
	font-size: var(--shop4u-text-sm);
	font-weight: 700;
	letter-spacing: 0;
}

.footer-navigation__menu {
	display: grid;
	gap: var(--shop4u-space-2);
}

.footer-navigation a {
	color: var(--shop4u-color-footer-muted);
	font-size: var(--shop4u-text-sm);
	text-decoration: none;
}

.footer-navigation a:hover,
.footer-navigation .current-menu-item > a {
	color: var(--shop4u-color-surface);
}

.site-footer__legal {
	padding-block: var(--shop4u-space-4);
	border-top: 0.0625rem solid rgb(255 255 255 / 13%);
	color: var(--shop4u-color-footer-muted);
}

.site-footer__legal p {
	margin: 0;
	font-size: var(--shop4u-text-xs);
}

@media (min-width: 43rem) {
	.site-footer__inner {
		grid-template-columns: minmax(12rem, 1fr) 2fr;
	}

	.footer-navigation__menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 72rem) {
	body.navigation-open {
		overflow: visible;
	}

	.site-header__main {
		grid-template-columns: minmax(10rem, 0.7fr) minmax(20rem, 1.6fr) minmax(10rem, 0.7fr);
		gap: var(--shop4u-space-6);
		min-height: 4.75rem;
	}

	.menu-toggle,
	.header-search--mobile,
	.mobile-account-link {
		display: none;
	}

	.site-branding {
		justify-self: start;
	}

	.site-title {
		font-size: 2.25rem;
	}

	.header-search--desktop {
		display: block;
		width: min(100%, 35rem);
		justify-self: center;
	}

	.header-actions {
		justify-self: end;
	}

	.header-account--desktop {
		display: inline-flex;
	}

	.header-panel,
	.header-panel[hidden] {
		display: block;
		position: static;
		max-height: none;
		overflow: visible;
		border-top: 0.0625rem solid var(--shop4u-color-border);
		box-shadow: none;
	}

	.header-panel__inner {
		display: block;
		padding-block: 0;
	}

	.primary-navigation__menu {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: var(--shop4u-space-5);
	}

	.primary-navigation a {
		position: relative;
		min-height: 2.75rem;
		padding: var(--shop4u-space-2) 0;
		background: transparent;
		border-radius: 0;
		font-size: var(--shop4u-text-sm);
	}

	.primary-navigation a::after {
		position: absolute;
		right: 0;
		bottom: 0.2rem;
		left: 0;
		height: 0.125rem;
		transform: scaleX(0);
		transform-origin: center;
		background: var(--shop4u-color-primary);
		content: "";
		transition: transform var(--shop4u-transition-fast);
	}

	.primary-navigation a:hover,
	.primary-navigation .current-menu-item > a,
	.primary-navigation .current_page_item > a {
		background: transparent;
	}

	.primary-navigation a:hover::after,
	.primary-navigation a:focus-visible::after,
	.primary-navigation .current-menu-item > a::after,
	.primary-navigation .current_page_item > a::after {
		transform: scaleX(1);
	}

	.site-footer__inner {
		grid-template-columns: minmax(14rem, 1fr) 2fr;
		padding-block: var(--shop4u-space-8) var(--shop4u-space-7);
	}

	.footer-navigation__menu {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
	}
}

/* Homepage completion */
.shop4u-eyebrow {
	margin-bottom: var(--shop4u-space-2);
	color: var(--shop4u-color-primary-strong);
	font-size: var(--shop4u-text-xs);
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.section-heading--centered { justify-content: center; text-align: center; }
.shop4u-button--outline { width: 100%; background: transparent; border-color: var(--shop4u-color-text); color: var(--shop4u-color-text); }
.shop4u-button--outline:hover { background: var(--shop4u-color-primary); border-color: var(--shop4u-color-primary); }
.shop4u-button--dark { background: var(--shop4u-color-text); border-color: var(--shop4u-color-text); }

.home-products { padding-top: 0; background: var(--shop4u-color-surface); }
.product-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--shop4u-space-4); }
.product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--shop4u-color-surface); border: 0.0625rem solid var(--shop4u-color-border); border-radius: var(--shop4u-radius-sm); transition: border-color var(--shop4u-transition-fast), box-shadow var(--shop4u-transition-fast), transform var(--shop4u-transition-fast); }
.product-card:hover { transform: translateY(-0.125rem); border-color: color-mix(in srgb, var(--shop4u-color-primary) 35%, var(--shop4u-color-border)); box-shadow: var(--shop4u-shadow-subtle); }
.product-card__image-link { display: block; color: inherit; }
.product-card__image-wrap { display: grid; aspect-ratio: 1 / 0.92; overflow: hidden; place-items: center; background: #f7f5f6; }
.product-card__image { width: 100%; height: 100%; object-fit: contain; transition: transform var(--shop4u-transition-base); }
.product-card:hover .product-card__image { transform: scale(1.025); }
.product-card__body { position: relative; flex: 1; padding: var(--shop4u-space-4) var(--shop4u-space-3) var(--shop4u-space-2); }
.product-card__badge { display: inline-flex; margin-bottom: var(--shop4u-space-2); padding: 0.2rem 0.5rem; background: var(--shop4u-color-primary-soft); border-radius: var(--shop4u-radius-pill); color: var(--shop4u-color-primary-strong); font-size: 0.65rem; font-weight: 750; line-height: 1.3; }
.product-card__title { margin-bottom: var(--shop4u-space-2); font-size: clamp(0.82rem, 2.8vw, var(--shop4u-text-md)); line-height: 1.35; }
.product-card__title a { color: var(--shop4u-color-text); text-decoration: none; }
.product-card__price { margin-bottom: var(--shop4u-space-1); color: var(--shop4u-color-primary-strong); font-size: var(--shop4u-text-sm); font-weight: 750; }
.product-card__price del { margin-right: var(--shop4u-space-1); color: var(--shop4u-color-text-muted); font-size: var(--shop4u-text-xs); font-weight: 500; }
.product-card__price ins { text-decoration: none; }
.product-card__stock { display: grid; gap: 0.1rem; margin: 0; color: var(--shop4u-color-success); font-size: var(--shop4u-text-xs); font-weight: 650; }
.product-card__stock strong { font-weight: 700; }
.product-card__stock span { color: var(--shop4u-color-text-muted); font-weight: 500; }
.product-card__stock--special_order { color: var(--shop4u-color-primary-strong); }
.product-card__stock--unavailable { color: var(--shop4u-color-danger); }
.product-card__action { padding: var(--shop4u-space-3); }
.product-card__action .shop4u-button { padding-inline: var(--shop4u-space-2); font-size: var(--shop4u-text-xs); }
.home-products__empty { margin: 0; color: var(--shop4u-color-text-muted); }

.home-personal-shopper, .ps-hero, .ps-benefits, .ps-cta { background: var(--shop4u-color-primary-pale); }
.personal-shopper-panel { display: grid; position: relative; grid-template-columns: minmax(0, 1fr); overflow: hidden; background: linear-gradient(120deg, #fff 0%, var(--shop4u-color-primary-soft) 100%); border: 0.0625rem solid var(--shop4u-color-border); border-radius: var(--shop4u-radius-lg); }
.personal-shopper-panel__content { position: relative; z-index: 2; padding: clamp(var(--shop4u-space-6), 6vw, var(--shop4u-space-8)); }
.personal-shopper-panel__content h2 { margin-bottom: var(--shop4u-space-3); }
.personal-shopper-panel__content > p:not(.shop4u-eyebrow) { max-width: 35rem; margin-bottom: var(--shop4u-space-5); color: var(--shop4u-color-text-muted); }
.personal-shopper-panel__visual { display: grid; position: relative; min-height: 14rem; place-items: center; }

.home-how, .ps-process { background: var(--shop4u-color-surface); }
.process-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--shop4u-space-5) var(--shop4u-space-3); padding: 0; margin: 0; list-style: none; }
.process-step { display: flex; position: relative; min-width: 0; flex-direction: column; align-items: center; text-align: center; }
.process-step__number { display: grid; position: relative; z-index: 2; width: 2.25rem; height: 2.25rem; margin-bottom: var(--shop4u-space-3); place-items: center; background: var(--shop4u-color-primary); border-radius: 50%; color: var(--shop4u-color-surface); font-size: var(--shop4u-text-sm); font-weight: 750; }
.process-step__icon { display: grid; width: 3.25rem; height: 3.25rem; margin-bottom: var(--shop4u-space-3); place-items: center; color: var(--shop4u-color-text); }
.process-step__icon .shop4u-icon { width: 2.25rem; height: 2.25rem; stroke-width: 1.35; }
.process-step h3 { margin-bottom: var(--shop4u-space-2); font-size: var(--shop4u-text-sm); }
.process-step p { max-width: 15rem; margin: 0; color: var(--shop4u-color-text-muted); font-size: var(--shop4u-text-xs); }

.home-trust { padding-block: var(--shop4u-space-6); background: var(--shop4u-color-primary-pale); }
.trust-panel { display: grid; gap: var(--shop4u-space-5); align-items: center; padding: var(--shop4u-space-5); background: var(--shop4u-color-surface); border: 0.0625rem solid var(--shop4u-color-border); border-radius: var(--shop4u-radius-md); }
.trust-panel__lead { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--shop4u-space-4); align-items: start; }
.trust-panel__lead h2 { margin-bottom: var(--shop4u-space-2); font-size: var(--shop4u-heading-sm); }
.trust-panel__lead p:not(.shop4u-eyebrow), .trust-panel__note { margin: 0; color: var(--shop4u-color-text-muted); font-size: var(--shop4u-text-sm); }
.trust-panel__icon { display: grid; width: 3rem; height: 3rem; place-items: center; background: var(--shop4u-color-primary-soft); border-radius: 50%; color: var(--shop4u-color-primary-strong); }
.trust-panel__note { padding-top: var(--shop4u-space-4); border-top: 0.0625rem solid var(--shop4u-color-border); }

.home-help { background: var(--shop4u-color-surface); }
.help-panel { display: grid; gap: var(--shop4u-space-4); align-items: center; padding: clamp(var(--shop4u-space-5), 5vw, var(--shop4u-space-7)); background: var(--shop4u-color-primary); border-radius: var(--shop4u-radius-lg); color: var(--shop4u-color-surface); }
.help-panel__icon { display: grid; width: 3rem; height: 3rem; place-items: center; background: rgb(255 255 255 / 18%); border-radius: 50%; }
.help-panel__content h2 { margin-bottom: var(--shop4u-space-2); font-size: var(--shop4u-heading-sm); }
.help-panel__content p { margin: 0; color: rgb(255 255 255 / 88%); font-size: var(--shop4u-text-sm); }

/* Personal Shopper page */
.ps-hero { overflow: hidden; }
.ps-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; min-height: 34rem; }
.ps-hero__content { position: relative; z-index: 2; max-width: 39rem; padding-block: var(--shop4u-space-7) var(--shop4u-space-5); }
.ps-hero__content h1 { margin-bottom: var(--shop4u-space-4); }
.ps-hero__intro { margin-bottom: var(--shop4u-space-5); color: var(--shop4u-color-text-muted); font-size: var(--shop4u-text-lg); }
.ps-unconfigured { max-width: 34rem; margin: 0; padding: var(--shop4u-space-3) var(--shop4u-space-4); background: rgb(255 255 255 / 65%); border: 0.0625rem solid var(--shop4u-color-border); border-radius: var(--shop4u-radius-sm); color: var(--shop4u-color-text-muted); font-size: var(--shop4u-text-sm); }
.ps-hero__visual { display: grid; position: relative; min-height: 18rem; place-items: center; }
.ps-hero__live { display: grid; position: absolute; top: 8%; right: 10%; width: 4.5rem; height: 4.5rem; place-items: center; background: var(--shop4u-color-primary); border: 0.3rem solid var(--shop4u-color-primary-pale); border-radius: 50%; color: var(--shop4u-color-surface); }

.ps-benefits { padding-top: 0; }
.ps-benefits__panel { padding: clamp(var(--shop4u-space-5), 5vw, var(--shop4u-space-7)); background: var(--shop4u-color-surface); border: 0.0625rem solid var(--shop4u-color-border); border-radius: var(--shop4u-radius-lg); }
.ps-benefits__panel > h2 { margin-bottom: var(--shop4u-space-6); font-size: var(--shop4u-heading-sm); text-align: center; }
.ps-benefits__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--shop4u-space-5) var(--shop4u-space-3); }
.ps-benefit { text-align: center; }
.ps-benefit__icon { display: grid; width: 3rem; height: 3rem; margin: 0 auto var(--shop4u-space-3); place-items: center; background: var(--shop4u-color-primary-soft); border-radius: 50%; color: var(--shop4u-color-primary-strong); }
.ps-benefit h3 { margin-bottom: var(--shop4u-space-2); font-size: var(--shop4u-text-sm); }
.ps-benefit p { margin: 0; color: var(--shop4u-color-text-muted); font-size: var(--shop4u-text-xs); }
.ps-cta { padding-top: 0; }
.ps-cta__panel { display: grid; gap: var(--shop4u-space-5); align-items: center; padding: clamp(var(--shop4u-space-5), 6vw, var(--shop4u-space-8)); background: linear-gradient(125deg, var(--shop4u-color-primary-soft), var(--shop4u-color-surface)); border: 0.0625rem solid var(--shop4u-color-border); border-radius: var(--shop4u-radius-lg); }
.ps-cta__panel h2 { margin-bottom: var(--shop4u-space-3); }
.ps-cta__panel > div > p:not(.shop4u-eyebrow) { max-width: 42rem; margin: 0; color: var(--shop4u-color-text-muted); }
.ps-unconfigured--surface { background: var(--shop4u-color-surface); }

@media (max-width: 22.49rem) {
	.product-card-grid, .process-grid, .ps-benefits__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (min-width: 43rem) {
	.product-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.personal-shopper-panel { grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr); }
	.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--shop4u-space-4); }
	.process-step:not(:last-child)::after { position: absolute; top: 1.1rem; left: calc(50% + 1.8rem); width: calc(100% - 3.6rem); border-top: 0.0625rem dashed var(--shop4u-color-border); content: ""; }
	.trust-panel { grid-template-columns: minmax(0, 1.5fr) minmax(14rem, 0.5fr); }
	.trust-panel__note { padding-top: 0; padding-left: var(--shop4u-space-5); border-top: 0; border-left: 0.0625rem solid var(--shop4u-color-border); }
	.help-panel { grid-template-columns: auto minmax(0, 1fr) auto; }
	.ps-hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr); min-height: 35rem; }
	.ps-hero__content { padding-block: var(--shop4u-space-8); }
	.ps-benefits__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.ps-cta__panel { grid-template-columns: minmax(0, 1fr) auto; }
}

@media (min-width: 64rem) {
	.product-card-grid { gap: var(--shop4u-space-5); }
	.product-card__body { padding: var(--shop4u-space-4); }
	.product-card__action { padding: 0 var(--shop4u-space-4) var(--shop4u-space-4); }
	.personal-shopper-panel__visual { min-height: 24rem; }
	.process-grid { gap: var(--shop4u-space-6); }
}

@media (prefers-reduced-motion: reduce) {
	.product-card,
	.product-card__image {
		transition-duration: 0.01ms;
	}
}

/* WooCommerce catalog and product experience */
.woocommerce-shell {
	padding-block: var(--shop4u-space-5) var(--shop4u-space-8);
}

.woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: var(--shop4u-space-1);
	margin-bottom: var(--shop4u-space-5);
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-xs);
}

.woocommerce-breadcrumb a {
	color: var(--shop4u-color-text-muted);
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	color: var(--shop4u-color-primary-strong);
}

.woocommerce-products-header {
	margin-bottom: var(--shop4u-space-6);
	padding: clamp(var(--shop4u-space-5), 5vw, var(--shop4u-space-7));
	background: var(--shop4u-color-primary-pale);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-lg);
}

.woocommerce-products-header__title {
	margin: 0;
	font-size: var(--shop4u-heading-md);
}

.term-description {
	max-width: 47rem;
	margin-top: var(--shop4u-space-3);
	color: var(--shop4u-color-text-muted);
}

.term-description > :last-child {
	margin-bottom: 0;
}

.catalog-hero__image {
	width: min(100%, 14rem);
	margin-top: var(--shop4u-space-5);
}

.catalog-hero__image img {
	width: 100%;
	aspect-ratio: 1.35 / 1;
	object-fit: cover;
	border-radius: var(--shop4u-radius-md);
}

.catalog-categories {
	display: flex;
	grid-column: 1 / -1;
	flex-wrap: wrap;
	gap: var(--shop4u-space-2);
	margin-bottom: var(--shop4u-space-4);
}

.catalog-categories__link {
	display: inline-flex;
	min-height: 2.625rem;
	align-items: center;
	padding: var(--shop4u-space-2) var(--shop4u-space-4);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-xs);
	font-weight: 650;
	text-decoration: none;
}

.catalog-categories__link:hover,
.catalog-categories__link.is-current {
	background: var(--shop4u-color-primary);
	border-color: var(--shop4u-color-primary);
	color: var(--shop4u-color-surface);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	float: none;
	margin: 0;
}

.woocommerce .woocommerce-result-count {
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-sm);
}

.woocommerce .woocommerce-ordering {
	width: 100%;
}

.woocommerce .woocommerce-ordering select,
.woocommerce div.product form.cart .variations select,
.woocommerce select,
.woocommerce input.input-text,
.woocommerce textarea {
	min-height: 2.75rem;
	max-width: 100%;
	padding: 0.6rem var(--shop4u-space-3);
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-sm);
	color: var(--shop4u-color-text);
}

.woocommerce .woocommerce-ordering select {
	width: 100%;
}

.woocommerce .woocommerce-ordering select:focus,
.woocommerce div.product form.cart .variations select:focus,
.woocommerce input.input-text:focus,
.woocommerce textarea:focus {
	border-color: var(--shop4u-color-primary);
	outline: 0.1875rem solid color-mix(in srgb, var(--shop4u-color-primary) 28%, transparent);
	outline-offset: 0.0625rem;
}

.catalog-toolbar {
	display: grid;
	gap: var(--shop4u-space-3);
	align-items: center;
	margin-bottom: var(--shop4u-space-5);
}

.catalog-toolbar .woocommerce-result-count,
.catalog-toolbar .woocommerce-ordering {
	display: flex;
	min-height: 2.75rem;
	align-items: center;
}

.woocommerce .woocommerce-ordering + ul.products,
.woocommerce .woocommerce-notices-wrapper + ul.products {
	clear: both;
}

.woocommerce ul.products,
.woocommerce-page ul.products,
.product-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--shop4u-space-4);
	clear: both;
	padding: 0;
	margin: var(--shop4u-space-5) 0 0;
	list-style: none;
}

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

.woocommerce ul.products li.product.product-card,
.woocommerce-page ul.products li.product.product-card,
.product-card-grid li.product-card {
	float: none;
	width: auto;
	margin: 0;
}

.product-card .woocommerce-placeholder {
	padding: 16%;
	opacity: 0.42;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: var(--shop4u-space-7);
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--shop4u-space-2);
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: grid;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: var(--shop4u-space-2);
	place-items: center;
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-sm);
	color: var(--shop4u-color-text);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--shop4u-color-primary);
	border-color: var(--shop4u-color-primary);
	color: var(--shop4u-color-surface);
}

.catalog-empty {
	display: grid;
	max-width: 38rem;
	justify-items: center;
	margin: var(--shop4u-space-7) auto;
	padding: var(--shop4u-space-7) var(--shop4u-space-5);
	background: var(--shop4u-color-primary-pale);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-lg);
	text-align: center;
}

.catalog-empty__icon {
	display: grid;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: var(--shop4u-space-4);
	place-items: center;
	background: var(--shop4u-color-surface);
	border-radius: 50%;
	color: var(--shop4u-color-primary-strong);
}

.catalog-empty h2 {
	margin-bottom: var(--shop4u-space-2);
	font-size: var(--shop4u-heading-sm);
}

.catalog-empty p {
	margin-bottom: var(--shop4u-space-5);
	color: var(--shop4u-color-text-muted);
}

/* Notices */
.woocommerce-notices-wrapper:not(:empty) {
	margin-bottom: var(--shop4u-space-5);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: var(--shop4u-space-4) var(--shop4u-space-4) var(--shop4u-space-4) 3.25rem;
	margin: 0 0 var(--shop4u-space-4);
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-top: 0;
	border-left: 0.25rem solid var(--shop4u-color-primary);
	border-radius: var(--shop4u-radius-sm);
	box-shadow: none;
	color: var(--shop4u-color-text);
}

.woocommerce-message { border-left-color: var(--shop4u-color-success); }
.woocommerce-error { border-left-color: var(--shop4u-color-danger); }
.woocommerce-message::before { color: var(--shop4u-color-success); }
.woocommerce-error::before { color: var(--shop4u-color-danger); }
.woocommerce-info::before { color: var(--shop4u-color-primary-strong); }

/* Single product */
.single-product .woocommerce-shell > .woocommerce-breadcrumb {
	margin-bottom: var(--shop4u-space-5);
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--shop4u-space-6);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
	overflow: hidden;
	background: #f7f5f6;
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-md);
}

.woocommerce div.product div.images img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--shop4u-space-2);
	margin-top: var(--shop4u-space-3);
}

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

.woocommerce div.product div.images .flex-control-thumbs img {
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-sm);
}

.woocommerce div.product .product_title {
	margin-bottom: var(--shop4u-space-3);
	font-size: var(--shop4u-heading-md);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin-bottom: var(--shop4u-space-3);
	color: var(--shop4u-color-primary-strong);
	font-size: var(--shop4u-heading-sm);
	font-weight: 750;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-md);
	opacity: 1;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	text-decoration: none;
}

.woocommerce div.product .stock {
	display: inline-flex;
	margin-bottom: var(--shop4u-space-4);
	padding: 0.35rem 0.65rem;
	background: color-mix(in srgb, var(--shop4u-color-success) 10%, var(--shop4u-color-surface));
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-success);
	font-size: var(--shop4u-text-sm);
	font-weight: 700;
}

.woocommerce div.product .stock.out-of-stock {
	background: color-mix(in srgb, var(--shop4u-color-danger) 10%, var(--shop4u-color-surface));
	color: var(--shop4u-color-danger);
}

.woocommerce-product-details__short-description {
	margin-bottom: var(--shop4u-space-5);
	color: var(--shop4u-color-text-muted);
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: var(--shop4u-space-3);
	margin-bottom: var(--shop4u-space-5);
}

.woocommerce .quantity .qty {
	width: 4.5rem;
	min-height: 2.875rem;
	padding: var(--shop4u-space-2);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-sm);
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	min-height: 2.875rem;
	padding: 0.72rem 1.35rem;
	background: var(--shop4u-color-primary);
	border-radius: var(--shop4u-radius-xs);
	color: var(--shop4u-color-surface);
	font-weight: 700;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--shop4u-color-primary-strong);
	color: var(--shop4u-color-surface);
}

.woocommerce div.product form.cart .variations {
	width: 100%;
	margin-bottom: var(--shop4u-space-3);
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: block;
	padding: 0 0 var(--shop4u-space-2);
	text-align: left;
}

.woocommerce div.product form.cart .variations label {
	display: inline-block;
	margin-bottom: var(--shop4u-space-1);
	font-size: var(--shop4u-text-sm);
}

.woocommerce div.product form.cart .variations select {
	width: 100%;
	margin-right: 0;
}

.woocommerce div.product form.cart .reset_variations {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	margin-top: var(--shop4u-space-2);
	font-size: var(--shop4u-text-xs);
}

.woocommerce div.product .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: var(--shop4u-space-3);
}

.woocommerce div.product .product_meta {
	padding-top: var(--shop4u-space-4);
	border-top: 0.0625rem solid var(--shop4u-color-border);
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-xs);
}

.woocommerce div.product .product_meta > span {
	display: block;
	margin-bottom: var(--shop4u-space-1);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
	grid-column: 1 / -1;
	width: 100%;
}

.woocommerce div.product .woocommerce-tabs {
	margin-top: var(--shop4u-space-5);
	padding-top: var(--shop4u-space-6);
	border-top: 0.0625rem solid var(--shop4u-color-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--shop4u-space-2);
	padding: 0;
	margin-bottom: var(--shop4u-space-5);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.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;
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-pill);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--shop4u-color-primary-soft);
	border-color: var(--shop4u-color-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	padding: var(--shop4u-space-2) var(--shop4u-space-4);
	font-size: var(--shop4u-text-sm);
}

.woocommerce div.product .woocommerce-tabs .panel {
	max-width: 52rem;
	margin-bottom: var(--shop4u-space-6);
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .related.products > h2 {
	font-size: var(--shop4u-heading-sm);
}

.woocommerce table.shop_attributes {
	border-top-color: var(--shop4u-color-border);
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
	padding: var(--shop4u-space-3);
	border-bottom-color: var(--shop4u-color-border);
}

.woocommerce div.product .related.products {
	margin-top: var(--shop4u-space-6);
}

@media (max-width: 22.49rem) {
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.product-card-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (min-width: 43rem) {
	.woocommerce-shell {
		padding-top: var(--shop4u-space-6);
	}

	.catalog-toolbar {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: var(--shop4u-space-4);
	}

	.woocommerce .woocommerce-ordering {
		width: auto;
	}

	.woocommerce .woocommerce-ordering select {
		width: auto;
		min-width: 13rem;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.product-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.woocommerce div.product {
		grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
		gap: var(--shop4u-space-7);
	}

	.woocommerce div.product div.images {
		grid-column: 1;
	}

	.woocommerce div.product div.summary {
		grid-column: 2;
	}
}

@media (min-width: 64rem) {
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.product-card-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--shop4u-space-5);
	}
}

/* Shop4U Core availability presentation */
.shop4u-availability {
	display: grid;
	gap: var(--shop4u-space-1);
	margin-bottom: var(--shop4u-space-5);
	padding: var(--shop4u-space-3) var(--shop4u-space-4);
	background: color-mix(in srgb, var(--shop4u-color-success) 8%, var(--shop4u-color-surface));
	border: 0.0625rem solid color-mix(in srgb, var(--shop4u-color-success) 28%, var(--shop4u-color-border));
	border-radius: var(--shop4u-radius-sm);
}

.shop4u-availability__label {
	color: var(--shop4u-color-success);
	font-size: var(--shop4u-text-sm);
}

.shop4u-availability__estimate,
.shop4u-availability__note {
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-xs);
}

.shop4u-availability--special_order {
	background: var(--shop4u-color-primary-pale);
	border-color: color-mix(in srgb, var(--shop4u-color-primary) 35%, var(--shop4u-color-border));
}

.shop4u-availability--special_order .shop4u-availability__label {
	color: var(--shop4u-color-primary-strong);
}

.shop4u-availability--unavailable {
	background: color-mix(in srgb, var(--shop4u-color-danger) 7%, var(--shop4u-color-surface));
	border-color: color-mix(in srgb, var(--shop4u-color-danger) 28%, var(--shop4u-color-border));
}

.shop4u-availability--unavailable .shop4u-availability__label {
	color: var(--shop4u-color-danger);
}

.woocommerce .wc-item-meta li,
.woocommerce .wc-block-components-product-details li {
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-sm);
}

/* Cart, checkout and account release-candidate presentation. */
.woocommerce-cart .content-area,
.woocommerce-checkout .content-area,
.woocommerce-account .content-area {
	padding-block: clamp(var(--shop4u-space-6), 5vw, var(--shop4u-space-8));
}

.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header,
.woocommerce-account .entry-header {
	margin-bottom: var(--shop4u-space-6);
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title {
	margin-bottom: 0;
	font-size: var(--shop4u-heading-md);
}

.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-checkout .wp-block-woocommerce-checkout {
	margin: 0;
}

.shop4u-cart-page-actions {
	display: flex;
	justify-content: flex-end;
	margin-bottom: var(--shop4u-space-4);
}

.shop4u-text-link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	font-size: var(--shop4u-text-sm);
	font-weight: 700;
}

.wc-block-cart-items,
.wc-block-cart__sidebar,
.wc-block-checkout__sidebar,
.wc-block-components-order-summary,
.woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce-order-details,
.woocommerce-customer-details {
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-lg);
	box-shadow: var(--shop4u-shadow-subtle);
}

.wc-block-cart-items {
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.wc-block-cart-items thead th,
.wc-block-cart-items .wc-block-cart-items__row {
	border-color: var(--shop4u-color-border);
}

.wc-block-cart-items thead th {
	padding: var(--shop4u-space-3) var(--shop4u-space-4);
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-xs);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wc-block-cart-items .wc-block-cart-items__row td {
	padding-block: var(--shop4u-space-5);
}

.wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img {
	background: var(--shop4u-color-primary-pale);
	border-radius: var(--shop4u-radius-md);
}

.wc-block-components-product-name {
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-md);
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.wc-block-components-product-price,
.wc-block-cart-item__total-price-and-sale-badge-wrapper {
	color: var(--shop4u-color-primary-strong);
	font-weight: 700;
}

.wc-block-cart-item__remove-link,
.woocommerce a.remove {
	min-height: 2.75rem;
	color: var(--shop4u-color-danger);
	font-size: var(--shop4u-text-sm);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.wc-block-components-quantity-selector,
.woocommerce .quantity .qty {
	min-height: 2.75rem;
	background: var(--shop4u-color-surface);
	border-color: var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-sm);
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
	min-width: 2.75rem;
	font-size: var(--shop4u-text-md);
}

.wc-block-components-quantity-selector button {
	min-width: 2.75rem;
	min-height: 2.75rem;
}

.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
	padding: var(--shop4u-space-5);
}

.wc-block-cart__totals-title,
.wc-block-components-checkout-order-summary__title-text,
.wc-block-components-order-summary__button-text {
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-heading-sm);
	font-weight: 750;
	letter-spacing: -0.02em;
	text-transform: none;
}

.wc-block-components-totals-wrapper {
	padding-block: var(--shop4u-space-3);
	border-color: var(--shop4u-color-border);
}

.wc-block-components-totals-item {
	font-size: var(--shop4u-text-sm);
}

.wc-block-components-totals-footer-item {
	font-size: var(--shop4u-text-lg);
	font-weight: 750;
}

.wc-block-components-totals-coupon__button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.is-link),
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	background: var(--shop4u-color-primary);
	border: 0.0625rem solid var(--shop4u-color-primary);
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-surface);
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color var(--shop4u-transition-fast), border-color var(--shop4u-transition-fast), transform var(--shop4u-transition-fast);
}

.wc-block-components-totals-coupon__button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:not(.is-link):hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
	background: var(--shop4u-color-primary-strong);
	border-color: var(--shop4u-color-primary-strong);
	color: var(--shop4u-color-surface);
}

.wc-block-components-button:disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
	cursor: not-allowed;
	opacity: 0.58;
}

.wc-block-components-totals-coupon-link,
.wc-block-components-button.is-link {
	min-height: 2.75rem;
	color: var(--shop4u-color-primary-strong);
	font-weight: 700;
}

.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-totals-coupon__input input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
	min-height: 3rem;
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-sm);
	color: var(--shop4u-color-text);
	font-size: 1rem;
}

.wc-block-components-text-input input:focus,
.wc-block-components-textarea:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-totals-coupon__input input:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--shop4u-color-primary);
	box-shadow: 0 0 0 0.1875rem rgb(232 63 111 / 16%);
	outline: none;
}

.wc-block-components-text-input label,
.wc-block-components-checkout-step__description,
.wc-block-components-address-card__edit,
.woocommerce form .form-row label {
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-sm);
}

.wc-block-components-validation-error,
.woocommerce-invalid .woocommerce-input-wrapper,
.woocommerce form .form-row.woocommerce-invalid label {
	color: var(--shop4u-color-danger);
	font-size: var(--shop4u-text-sm);
}

.wc-block-checkout__main {
	min-width: 0;
}

.wc-block-components-checkout-step {
	margin-bottom: var(--shop4u-space-4);
	padding: var(--shop4u-space-5);
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-lg);
}

.wc-block-components-checkout-step__heading {
	margin-bottom: var(--shop4u-space-4);
}

.wc-block-components-checkout-step__title {
	font-size: var(--shop4u-heading-sm);
}

.wc-block-components-order-summary-item {
	padding-block: var(--shop4u-space-4);
	border-color: var(--shop4u-color-border);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error,
.wc-block-components-notice-banner,
.shop4u-mixed-cart-notice {
	padding: var(--shop4u-space-4);
	border: 0.0625rem solid color-mix(in srgb, var(--shop4u-color-primary) 30%, var(--shop4u-color-border));
	border-left: 0.25rem solid var(--shop4u-color-primary);
	border-radius: var(--shop4u-radius-sm);
	background: var(--shop4u-color-primary-pale);
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-sm);
}

.woocommerce-error,
.wc-block-components-notice-banner.is-error {
	border-color: color-mix(in srgb, var(--shop4u-color-danger) 35%, var(--shop4u-color-border));
	border-left-color: var(--shop4u-color-danger);
	background: color-mix(in srgb, var(--shop4u-color-danger) 7%, var(--shop4u-color-surface));
}

.woocommerce-message,
.wc-block-components-notice-banner.is-success {
	border-color: color-mix(in srgb, var(--shop4u-color-success) 32%, var(--shop4u-color-border));
	border-left-color: var(--shop4u-color-success);
	background: color-mix(in srgb, var(--shop4u-color-success) 7%, var(--shop4u-color-surface));
}

.shop4u-checkout-configuration-notice {
	margin-bottom: var(--shop4u-space-5);
}

.shop4u-empty-cart-action {
	display: grid;
	justify-items: center;
	margin: 0 auto var(--shop4u-space-7);
	text-align: center;
}

.shop4u-empty-cart-action p {
	max-width: 32rem;
	margin-bottom: var(--shop4u-space-4);
	color: var(--shop4u-color-text-muted);
}

.shop4u-empty-cart-action .shop4u-button {
	min-width: 11rem;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
	margin-top: var(--shop4u-space-6);
	margin-bottom: var(--shop4u-space-3);
	font-size: var(--shop4u-heading-md);
}

.wp-block-woocommerce-empty-cart-block .wp-block-heading.has-text-align-center {
	font-size: var(--shop4u-heading-sm);
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
	padding: var(--shop4u-space-3);
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-md);
}

.woocommerce span.onsale,
.wc-block-components-product-sale-badge,
.wc-block-grid__product-onsale {
	min-width: auto;
	min-height: auto;
	padding: 0.35rem 0.65rem;
	background: var(--shop4u-color-primary);
	border: 0;
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-surface);
	font-size: var(--shop4u-text-xs);
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

/* My Account and order details retain native WooCommerce behavior. */
.woocommerce-account .woocommerce {
	display: flow-root;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	margin-bottom: var(--shop4u-space-5);
}

.woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--shop4u-space-2);
	padding: 0;
	margin: 0;
	list-style: none;
}

.woocommerce-MyAccount-navigation a {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	padding: var(--shop4u-space-2) var(--shop4u-space-4);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-pill);
	color: var(--shop4u-color-text);
	font-size: var(--shop4u-text-sm);
	font-weight: 700;
	text-decoration: none;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
	background: var(--shop4u-color-primary-soft);
	border-color: var(--shop4u-color-primary);
	color: var(--shop4u-color-primary-strong);
}

.woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce-order-details,
.woocommerce-customer-details {
	padding: clamp(var(--shop4u-space-4), 4vw, var(--shop4u-space-6));
}

.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
	max-width: 38rem;
	margin-inline: auto;
}

.woocommerce table.shop_table,
.woocommerce-orders-table,
.woocommerce-table--order-details {
	border-color: var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-md);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: var(--shop4u-space-3) var(--shop4u-space-4);
	border-color: var(--shop4u-color-border);
}

.woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	gap: var(--shop4u-space-3);
	padding: var(--shop4u-space-4);
	background: var(--shop4u-color-primary-pale);
	border-radius: var(--shop4u-radius-md);
}

.woocommerce-order-overview li {
	min-width: 0;
	font-size: var(--shop4u-text-sm);
}

.woocommerce-thankyou-order-received {
	color: var(--shop4u-color-success);
	font-size: var(--shop4u-text-lg);
	font-weight: 750;
}

/* Prevent secondary information from becoming micro-text on small screens. */
.process-step p,
.ps-benefit p,
.shop4u-availability__estimate,
.shop4u-availability__note,
.woocommerce div.product .product_meta,
.woocommerce div.product form.cart .reset_variations,
.wc-block-components-product-details,
.wc-block-components-checkout-step__description {
	font-size: var(--shop4u-text-sm);
}

.site-footer__legal p {
	font-size: var(--shop4u-text-sm);
}

@media (max-width: 47.99rem) {
	.product-card__stock,
	.product-card__action .shop4u-button {
		font-size: 0.8125rem;
	}
}

@media (min-width: 48rem) {
	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: left;
		width: 22%;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: grid;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation a {
		width: 100%;
		border-radius: var(--shop4u-radius-sm);
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		float: right;
		width: 74%;
	}
}

@media (max-width: 47.99rem) {
	.woocommerce-cart .entry-header,
	.woocommerce-checkout .entry-header,
	.woocommerce-account .entry-header {
		margin-bottom: var(--shop4u-space-5);
	}

	.wc-block-cart-items .wc-block-cart-items__row {
		padding-block: var(--shop4u-space-4);
	}

	.wc-block-cart-items .wc-block-cart-items__row td {
		padding-block: var(--shop4u-space-3);
	}

	.wc-block-cart__sidebar,
	.wc-block-checkout__sidebar,
	.wc-block-components-checkout-step {
		padding: var(--shop4u-space-4);
	}

	.wc-block-components-checkout-step {
		border-radius: var(--shop4u-radius-md);
	}

	.wc-block-components-product-name {
		font-size: var(--shop4u-text-sm);
	}

	.wc-block-components-product-details,
	.wc-block-components-product-details li,
	.wc-block-components-checkout-step__description,
	.wc-block-components-validation-error {
		font-size: var(--shop4u-text-sm);
	}

	.woocommerce-MyAccount-navigation ul {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: var(--shop4u-space-2);
		scrollbar-width: thin;
	}

	.woocommerce-MyAccount-navigation li {
		flex: 0 0 auto;
	}

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		padding: var(--shop4u-space-3);
		border-bottom: 0.0625rem solid var(--shop4u-color-border);
	}
}

@media (max-width: 22.49rem) {
	.wc-block-cart__sidebar,
	.wc-block-checkout__sidebar,
	.wc-block-components-checkout-step,
	.woocommerce-MyAccount-content,
	.woocommerce-form-login,
	.woocommerce-form-register {
		padding: var(--shop4u-space-3);
	}

	.wc-block-cart-item__image {
		width: 4.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wc-block-components-button,
	.woocommerce button.button,
	.woocommerce a.button,
	.woocommerce input.button {
		transition: none;
	}
}

/* Visual-completion milestone: menus, editorial media and information pages. */
.primary-navigation .sub-menu {
	display: grid;
	gap: var(--shop4u-space-1);
	padding: 0 0 0 var(--shop4u-space-4);
	margin: 0;
	list-style: none;
}

.primary-navigation .sub-menu a {
	min-height: 2.5rem;
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-sm);
}

.primary-navigation .menu-item-has-children > a::before {
	margin-left: auto;
	content: "⌄";
	font-size: 1rem;
	order: 2;
}

.category-card__image,
.product-card__image img,
.woocommerce ul.products li.product img {
	transition: transform var(--shop4u-transition-base);
}

.category-card:hover .category-card__image,
.product-card:hover .product-card__image img,
.woocommerce ul.products li.product:hover img {
	transform: scale(1.025);
}

.personal-shopper-panel__visual {
	overflow: hidden;
	background: var(--shop4u-color-primary-soft);
}

.personal-shopper-panel__visual img {
	width: 100%;
	height: 100%;
	min-height: 16rem;
	object-fit: cover;
	object-position: center;
}

.personal-shopper-panel__live {
	display: grid;
	position: absolute;
	top: var(--shop4u-space-4);
	right: var(--shop4u-space-4);
	width: 3.5rem;
	height: 3.5rem;
	place-items: center;
	background: var(--shop4u-color-primary);
	border: 0.25rem solid rgb(255 255 255 / 88%);
	border-radius: 50%;
	box-shadow: var(--shop4u-shadow-subtle);
	color: var(--shop4u-color-surface);
}

.ps-hero__visual {
	overflow: hidden;
	min-height: 20rem;
	margin-bottom: var(--shop4u-space-6);
	border-radius: 48% 48% var(--shop4u-radius-lg) var(--shop4u-radius-lg);
}

.ps-hero__visual img {
	width: 100%;
	height: 100%;
	min-height: 20rem;
	object-fit: cover;
	object-position: center;
}

.ps-hero__live {
	top: var(--shop4u-space-4);
	right: var(--shop4u-space-4);
}

.ps-editorial {
	background: var(--shop4u-color-surface);
}

.ps-editorial__inner {
	display: grid;
	gap: var(--shop4u-space-4);
	align-items: center;
}

.ps-editorial__image {
	overflow: hidden;
	border-radius: var(--shop4u-radius-lg);
}

.ps-editorial__image img {
	width: 100%;
	height: 100%;
	min-height: 15rem;
	object-fit: cover;
}

.ps-editorial__image--primary img {
	object-position: center;
}

.ps-editorial__image--secondary img {
	object-position: center 62%;
}

.ps-editorial__content {
	padding: var(--shop4u-space-5);
}

.ps-editorial__content h2 {
	margin-bottom: var(--shop4u-space-3);
	font-size: var(--shop4u-heading-sm);
}

.ps-editorial__content > p:last-child {
	margin: 0;
	color: var(--shop4u-color-text-muted);
}

.site-footer__brand p,
.site-footer__contact p {
	max-width: 18rem;
	margin: var(--shop4u-space-3) 0 0;
	color: var(--shop4u-color-footer-muted);
	font-size: var(--shop4u-text-sm);
}

.site-footer__contact a {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: var(--shop4u-space-2);
	margin-top: var(--shop4u-space-3);
	color: var(--shop4u-color-surface);
	font-size: var(--shop4u-text-sm);
	font-weight: 700;
	text-decoration: none;
}

.site-footer__contact a span {
	color: var(--shop4u-color-primary);
}

.information-page {
	background: var(--shop4u-color-surface);
}

.information-hero {
	background: var(--shop4u-color-surface);
	border-bottom: 0.0625rem solid var(--shop4u-color-border);
}

.information-hero--soft {
	background: var(--shop4u-color-primary-pale);
}

.information-hero__inner {
	max-width: 48rem;
	padding-block: clamp(var(--shop4u-space-7), 8vw, 6rem);
	text-align: center;
}

.information-hero__inner h1 {
	margin-bottom: var(--shop4u-space-4);
}

.information-hero__inner > p:last-child {
	margin: 0 auto;
	color: var(--shop4u-color-text-muted);
	font-size: var(--shop4u-text-lg);
}

.information-hero__split {
	display: grid;
	gap: var(--shop4u-space-5);
	align-items: center;
	padding-block: var(--shop4u-space-6);
}

.information-hero__split .information-hero__inner {
	width: 100%;
	padding-block: var(--shop4u-space-5);
	text-align: left;
}

.information-hero__split .information-hero__inner > p:last-child {
	margin-inline: 0;
}

.information-hero__split > img {
	width: 100%;
	max-height: 28rem;
	object-fit: cover;
	object-position: center 62%;
	border-radius: var(--shop4u-radius-lg);
}

.information-section-title {
	margin-bottom: var(--shop4u-space-6);
	font-size: var(--shop4u-heading-sm);
	text-align: center;
}

.information-steps {
	display: grid;
	max-width: 56rem;
	gap: var(--shop4u-space-3);
	padding: 0;
	margin: 0 auto;
	list-style: none;
}

.information-steps li {
	display: grid;
	grid-template-columns: 2.75rem minmax(0, 1fr);
	gap: var(--shop4u-space-4);
	align-items: start;
	padding: var(--shop4u-space-4);
	background: var(--shop4u-color-primary-pale);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-md);
}

.information-steps li > span,
.contact-panel__icon {
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	background: var(--shop4u-color-primary);
	border-radius: 50%;
	color: var(--shop4u-color-surface);
	font-weight: 800;
}

.information-steps h3,
.contact-panel h2 {
	margin-bottom: var(--shop4u-space-2);
	font-size: var(--shop4u-text-lg);
}

.information-steps p,
.contact-panel p,
.about-values p {
	margin: 0;
	color: var(--shop4u-color-text-muted);
}

.faq-list {
	display: grid;
	max-width: 52rem;
	gap: var(--shop4u-space-3);
}

.faq-list details {
	background: var(--shop4u-color-surface);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-md);
}

.faq-list summary {
	min-height: 3.5rem;
	padding: var(--shop4u-space-4) var(--shop4u-space-5);
	cursor: pointer;
	font-weight: 750;
}

.faq-list details[open] summary {
	color: var(--shop4u-color-primary-strong);
}

.faq-list details p {
	padding: 0 var(--shop4u-space-5) var(--shop4u-space-5);
	margin: 0;
	color: var(--shop4u-color-text-muted);
}

.about-values {
	display: grid;
	gap: var(--shop4u-space-4);
}

.about-values > div {
	padding: var(--shop4u-space-5);
	background: var(--shop4u-color-primary-pale);
	border-radius: var(--shop4u-radius-md);
}

.about-values h2 {
	margin-bottom: var(--shop4u-space-3);
	font-size: var(--shop4u-heading-sm);
}

.contact-panel {
	display: grid;
	gap: var(--shop4u-space-4);
	align-items: center;
	padding: clamp(var(--shop4u-space-5), 6vw, var(--shop4u-space-7));
	background: var(--shop4u-color-primary-pale);
	border: 0.0625rem solid var(--shop4u-color-border);
	border-radius: var(--shop4u-radius-lg);
}

@media (min-width: 43rem) {
	.ps-editorial__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.9fr);
	}

	.ps-editorial__image--primary {
		grid-row: span 2;
	}

	.ps-editorial__image--primary img {
		min-height: 31rem;
	}

	.ps-editorial__image--secondary img {
		min-height: 14rem;
	}

	.information-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.information-steps li:last-child {
		grid-column: 1 / -1;
		width: calc(50% - (var(--shop4u-space-3) / 2));
		justify-self: center;
	}

	.about-values {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact-panel {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}
}

@media (min-width: 48rem) {
	.information-hero__split {
		grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
		padding-block: var(--shop4u-space-7);
	}
}

@media (min-width: 72rem) {
	.primary-navigation__menu > .menu-item {
		position: relative;
	}

	.primary-navigation__menu {
		gap: clamp(var(--shop4u-space-3), 1.8vw, var(--shop4u-space-5));
	}

	.primary-navigation .menu-item-has-children > a::before {
		margin: 0 0 0 var(--shop4u-space-1);
	}

	.primary-navigation .sub-menu {
		visibility: hidden;
		position: absolute;
		top: calc(100% - 0.1rem);
		left: 50%;
		z-index: var(--shop4u-z-menu);
		width: 16rem;
		padding: var(--shop4u-space-2);
		transform: translate(-50%, 0.4rem);
		opacity: 0;
		background: var(--shop4u-color-surface);
		border: 0.0625rem solid var(--shop4u-color-border);
		border-radius: var(--shop4u-radius-md);
		box-shadow: var(--shop4u-shadow-menu);
		transition: visibility var(--shop4u-transition-fast), opacity var(--shop4u-transition-fast), transform var(--shop4u-transition-fast);
	}

	.primary-navigation .menu-item-has-children:hover > .sub-menu,
	.primary-navigation .menu-item-has-children:focus-within > .sub-menu {
		visibility: visible;
		transform: translate(-50%, 0);
		opacity: 1;
	}

	.primary-navigation .sub-menu a {
		padding-inline: var(--shop4u-space-3);
		border-radius: var(--shop4u-radius-sm);
		font-size: var(--shop4u-text-sm);
	}

	.primary-navigation .sub-menu a::after {
		display: none;
	}

	.primary-navigation .sub-menu a:hover,
	.primary-navigation .sub-menu a:focus-visible,
	.primary-navigation .sub-menu .current-menu-item > a {
		background: var(--shop4u-color-primary-pale);
	}

	.site-footer__inner {
		grid-template-columns: minmax(15rem, 1.25fr) repeat(3, minmax(9rem, 0.75fr));
		gap: var(--shop4u-space-7);
	}

	.footer-navigation__menu {
		grid-template-columns: minmax(0, 1fr);
	}
}
