:root {
	--ds-color-bg: #ffffff;
	--ds-color-text: #121212;
	--ds-color-border: rgba(18, 18, 18, 0.12);
	--ds-color-accent: #b85c38;
	--ds-color-olive: #6f7552;
	--ds-color-surface: #fcfaf6;
	--ds-color-surface-strong: #ece3d3;
	--ds-container: 1200px;
	--ds-gutter: 24px;
	--ds-radius: 18px;
}


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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ds-color-bg);
	color: var(--ds-color-text);
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1.5;
}

/* Account */
section.account-page {
	padding: 0;
}

.account-page > .container {
	width: min(100%, 1920px);
}

.account-page article,
.account-page .entry-content,
.account-page .woocommerce {
	width: 100%;
}

.account-page__title {
	width: min(100% - 48px, 1200px);
	margin: 56px auto 40px;
	font-size: clamp(2.15rem, 4vw, 4.5rem);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: -0.045em;
}

.account-auth {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #fff;
}

.account-auth__forms {
	display: flex;
	min-width: 0;
	min-height: 720px;
	align-items: center;
	flex-direction: column;
	padding: 34px 32px 64px;
}

.account-auth__notices {
	width: min(100%, 425px);
	margin: 0 auto 30px;
}

.account-auth__notices > :last-child {
	margin-bottom: 0 !important;
}

.account-auth__tabs {
	display: flex;
	width: min(100%, 425px);
	margin: 0 auto;
}

.account-auth__tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 52px;
	padding: 6px 12px;
	border: 0;
	border-bottom: 2px solid #e5e5e5;
	border-radius: 0;
	background: transparent;
	color: #171717;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	cursor: pointer;
}

.account-auth__tab::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: #171717;
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.account-auth__tab.is-active::after {
	transform: scaleX(1);
}

.account-auth__tab:focus-visible {
	outline: 2px solid transparent;
}

.account-auth__panel {
	width: min(100%, 425px);
	margin: 0 auto;
	padding: 38px 0 0;
}

.account-auth__panel[hidden] {
	display: none;
}

.account-auth__panel h1,
.account-auth__panel h2 {
	margin: 0 0 38px;
	font-size: 1.55rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
}

.account-auth__form {
	display: grid;
	gap: 0;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

.woocommerce .account-auth__form .form-row {
	margin: 0 0 26px;
	padding: 0;
}

.account-auth__name-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.woocommerce .account-auth__name-grid .form-row {
	float: none;
	width: 100% !important;
}

.account-auth__form .form-row > label {
	display: block;
	margin: 0;
	padding: 0 24px 8px;
	font-size: 0.69rem;
	font-weight: 600;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.account-auth__form .input-text {
	width: 100% !important;
	height: 49px !important;
	padding: 0 22px !important;
	border: 1px solid #a7a7a7 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #171717;
	font: inherit;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.account-auth__form .input-text:focus {
	border-color: #171717;
	box-shadow: 0 0 0 1px #171717;
	outline: 0;
}

.account-auth__password-field {
	position: relative;
	display: block;
}

.account-auth__password-field .input-text {
	padding-right: 62px;
}

.account-auth__password-field .show-password-input {
	position: absolute;
	top: 50%;
	right: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #171717;
	transform: translateY(-50%);
}

.account-auth__password-field .show-password-input::after {
	margin: 0;
}

.account-auth__remember {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	width: fit-content;
	margin: -5px 0 22px 22px;
	font-size: 0.75rem;
	cursor: pointer;
}

.account-auth__remember input {
	width: 15px;
	height: 15px;
	margin: 0;
	accent-color: #171717;
}

.account-auth__submit {
	width: 100%;
	min-height: 54px;
	margin: 4px 0 0 !important;
	padding: 14px 22px !important;
	border: 2px solid #171717 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #171717 !important;
	font-size: 0.8rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.055em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.account-auth__submit:hover,
.account-auth__submit:focus-visible {
	background: #171717 !important;
	color: #fff !important;
}

.account-auth__forgot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 28px 0 0;
	padding: 0 0 28px;
	border-bottom: 1px solid #e6e6e6;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.account-auth__forgot span {
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1;
}

.account-auth__password-note {
	margin: -10px 20px 26px;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: left;
	opacity: 0.7;
}

.account-auth__consent {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin: -2px 20px 24px;
	color: #454545;
	font-size: 0.72rem;
	line-height: 1.55;
	cursor: pointer;
}

.account-auth__consent input {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: #171717;
}

.account-auth__consent a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.account-auth .woocommerce-privacy-policy-text {
	margin: 0 20px 25px;
	font-size: 0.72rem;
	line-height: 1.55;
	text-align: left;
	color: #565656;
}

.account-auth .woocommerce-privacy-policy-text p {
	margin: 0;
}

.account-auth .woocommerce-privacy-policy-text a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.account-auth__visual {
	position: relative;
	min-width: 0;
	min-height: 720px;
	aspect-ratio: 2041 / 3121;
	margin: 0;
	overflow: hidden;
	background: #dbe7eb;
}

.account-auth__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.password-recovery {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 620px;
	padding: 88px 24px 104px;
}

.password-recovery__card {
	width: min(100%, 425px);
}

.password-recovery__title {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: left;
}

.password-recovery__instructions {
	margin: 0;
	padding: 38px 0 44px;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	text-align: left;
}

.password-recovery__form {
	display: grid;
	gap: 0;
}

.woocommerce .password-recovery__form .form-row {
	width: 100%;
	margin: 0 0 34px;
	padding: 0;
}

.password-recovery__form .form-row > label {
	display: block;
	margin: 0;
	padding: 0 24px 8px;
	font-size: 0.69rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.password-recovery__form .input-text {
	width: 100% !important;
	height: 49px !important;
	padding: 0 22px !important;
	border: 1px solid #a7a7a7 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #171717;
	font: inherit;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.password-recovery__form .account-auth__password-field .input-text {
	padding-right: 62px !important;
}

.password-recovery__form .input-text:focus {
	border-color: #171717 !important;
	box-shadow: 0 0 0 1px #171717;
	outline: 0;
}

.woocommerce .password-recovery__form .password-recovery__actions {
	margin: 2px 0 0;
}

.password-recovery__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 14px 22px !important;
	border: 2px solid #171717 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #171717 !important;
	font-size: 0.8rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.055em;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.password-recovery__submit:hover,
.password-recovery__submit:focus-visible {
	background: #171717 !important;
	color: #fff !important;
}

.password-recovery__confirmation .password-recovery__instructions {
	padding-bottom: 38px;
}

.account-page .woocommerce-error,
.account-page .woocommerce-message,
.account-page .woocommerce-info {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 0 30px !important;
	padding: 20px 24px 20px 62px !important;
	border: 0 !important;
	border-top: 1px solid #171717 !important;
	border-bottom: 1px solid #d8d8d8 !important;
	border-radius: 0 !important;
	background: #f6f6f4 !important;
	box-shadow: none !important;
	color: #171717;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	list-style: none;
	overflow-wrap: anywhere;
}

.account-page .woocommerce-error::before,
.account-page .woocommerce-message::before,
.account-page .woocommerce-info::before {
	position: absolute;
	top: 50%;
	left: 20px;
	display: grid;
	width: 24px;
	height: 24px;
	margin: 0;
	transform: translateY(-50%);
	place-items: center;
	border: 1px solid #171717;
	border-radius: 50%;
	background: transparent;
	color: #171717;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.account-page .woocommerce-error::before {
	content: "!";
}

.account-page .woocommerce-message::before {
	content: "✓";
}

.account-page .woocommerce-info::before {
	content: "i";
}

.account-page .woocommerce-error li,
.account-page .woocommerce-message li,
.account-page .woocommerce-info li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.account-page .woocommerce-error a,
.account-page .woocommerce-message a,
.account-page .woocommerce-info a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.account-page .woocommerce-error:focus,
.account-page .woocommerce-message:focus,
.account-page .woocommerce-info:focus {
	outline: 1px solid #171717;
	outline-offset: -1px;
}

.logged-in .account-page__title {
	display: none;
}

.account-shell {
	width: 100%;
	min-height: 480px;
	margin: 0 auto;
	padding: 32px 0 80px;
}

.account-shell__breadcrumb {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 20px 11.111111%;
	color: #777;
	font-size: 10px;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0;
}

.account-shell__breadcrumb a:hover,
.account-shell__breadcrumb a:focus-visible {
	color: #171717;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.account-shell__breadcrumb strong {
	color: #292929;
	font-weight: 600;
}

.account-shell__layout {
	display: grid;
	grid-template-columns: 1fr 2fr minmax(10rem, 5fr) 1fr;
	gap: 0;
}

.account-sidebar {
	grid-column: 2;
	min-width: 0;
}

.account-sidebar__eyebrow {
	display: none;
}

.account-sidebar__name {
	margin: 0 0 22px;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0;
}

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

.account-page .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.account-page .woocommerce-MyAccount-navigation li {
	margin: 0 0 3px;
	border: 0;
}

.account-page .woocommerce-MyAccount-navigation a {
	display: block;
	min-height: 28px;
	padding: 0;
	color: #121212;
	font-size: 14px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: 0.04em;
	transition: color 150ms ease;
}

.account-page .woocommerce-MyAccount-navigation .is-active a {
	color: #121212;
	font-weight: 500;
}

.account-page .woocommerce-MyAccount-navigation a:hover,
.account-page .woocommerce-MyAccount-navigation a:focus-visible {
	color: #121212;
}

.account-page .woocommerce-MyAccount-navigation-link--customer-logout {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.account-page .woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #ed2626;
	font-weight: 500;
}

.account-page .woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.account-page .woocommerce-MyAccount-navigation-link--customer-logout a:focus-visible {
	color: #b91c1c;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.account-page .woocommerce-MyAccount-content {
	grid-column: 3;
	float: none;
	width: 100%;
	min-width: 0;
	min-height: 420px;
	transition: opacity 140ms ease;
}

.account-page .woocommerce-MyAccount-content > :first-child {
	margin-top: 0;
}

.account-shell.is-loading .account-shell__content {
	opacity: 0.34;
	pointer-events: none;
}

.account-section__header {
	margin: 0 0 30px;
}

.account-section__header--inline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.account-section__kicker {
	display: none;
}

.account-section h1 {
	margin: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0;
}

.account-section h1[tabindex="-1"]:focus {
	outline: 0;
}

.account-section__description {
	max-width: 680px;
	margin: -22px 0 34px;
	color: #666;
	font-size: 0.84rem;
	line-height: 1.7;
}

.account-section__back {
	display: inline-block;
	margin: 0 0 18px;
	color: #686868;
	font-size: 0.75rem;
}

.account-section__back:hover,
.account-section__back:focus-visible {
	color: #111;
}

.account-form {
	width: 100%;
	max-width: none;
}

.account-page .woocommerce .account-form .form-row,
.account-page .woocommerce .account-address-form .form-row {
	float: none;
	width: 100%;
	max-width: none !important;
	margin: 0 0 24px;
	padding: 0;
}

.account-form__grid,
.woocommerce-address-fields__field-wrapper {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 24px;
}

.account-form__grid > .form-row,
.woocommerce-address-fields__field-wrapper > .form-row {
	min-width: 0;
}

.account-form__field--wide,
.woocommerce-address-fields__field-wrapper .form-row-wide {
	grid-column: 1 / -1;
}

.account-page .woocommerce .account-form label,
.account-page .woocommerce .account-address-form label {
	display: block;
	margin: 0;
	padding: 6px 24px;
	color: #222;
	font-size: 10px;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.account-form .required,
.account-address-form .required {
	color: #171717;
}

.account-page .woocommerce .account-form .input-text,
.account-page .woocommerce .account-address-form .input-text,
.account-page .woocommerce .account-address-form select {
	width: 100% !important;
	height: 49px !important;
	padding: 0 21px !important;
	border: 1px solid #aaa !important;
	border-radius: 999px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: #171717;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 22.4px;
	letter-spacing: 0.04em;
}

.account-page .woocommerce .account-form .input-text:focus,
.account-page .woocommerce .account-address-form .input-text:focus,
.account-page .woocommerce .account-address-form select:focus {
	border-color: #171717 !important;
	box-shadow: 0 0 0 1px #171717 !important;
	outline: 0;
}

.account-page .woocommerce .account-address-form .select2-container {
	width: 100% !important;
}

.account-page .woocommerce .account-address-form .select2-selection {
	display: flex;
	align-items: center;
	height: 49px;
	padding: 0 20px;
	border: 1px solid #aaa;
	border-radius: 999px;
}

.account-page .woocommerce .account-address-form .select2-selection__arrow {
	top: 11px;
	right: 17px;
}

.account-form__actions {
	width: 100%;
	margin-top: 10px;
	padding-top: 30px;
	border-top: 1px solid #e7e7e7;
}

.account-button,
.account-page .woocommerce .account-button,
.account-page .woocommerce a.account-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 14px 24px !important;
	border: 2px solid #171717 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #171717 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 19.6px;
	letter-spacing: 0;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 150ms ease, background-color 150ms ease;
}

.account-button:hover,
.account-button:focus-visible,
.account-page .woocommerce .account-button:hover,
.account-page .woocommerce .account-button:focus-visible {
	background: #171717 !important;
	color: #fff !important;
}

.account-button--compact,
.account-page .woocommerce a.account-button--compact {
	width: auto;
	min-width: 220px;
}

.account-password-field__control {
	position: relative;
	display: block;
	width: 100%;
}

.account-page .woocommerce .account-password-field .input-text {
	padding-right: 64px !important;
}

.account-password-toggle {
	position: absolute;
	top: 50%;
	right: 16px;
	display: grid;
	width: 36px;
	height: 36px;
	padding: 0;
	transform: translateY(-50%);
	place-items: center;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.account-password-toggle span {
	position: relative;
	display: block;
	width: 21px;
	height: 14px;
	border: 2px solid #171717;
	border-radius: 50% / 65%;
}

.account-password-toggle span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #171717;
	content: "";
}

.account-password-toggle[aria-pressed="false"] span::before {
	position: absolute;
	top: 5px;
	left: -3px;
	width: 27px;
	height: 2px;
	transform: rotate(-42deg);
	background: #171717;
	box-shadow: 0 0 0 2px #fff;
	content: "";
	z-index: 2;
}

.account-section--password .show-password-input {
	display: none !important;
}

.account-addresses {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 22px;
}

.account-address-card {
	min-height: 250px;
	padding: 26px;
	border: 1px solid #dedede;
	border-radius: 2px;
}

.account-address-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 22px;
	border-bottom: 1px solid #e5e5e5;
}

.account-address-card h2 {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
}

.account-address-card__action {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.account-address-card__action span {
	font-size: 1.35rem;
	font-weight: 300;
	line-height: 1;
}

.account-address-card address {
	display: flex;
	min-height: 150px;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	margin: 0;
	color: #535353;
	font-size: 0.82rem;
	font-style: normal;
	line-height: 1.8;
}

.account-address-card.is-empty address {
	align-items: center;
	color: #777;
}

.account-address-card__empty-icon,
.account-empty-state__icon {
	position: relative;
	display: block;
	width: 23px;
	height: 26px;
	margin: 0 0 15px;
	border: 1.5px solid #222;
	border-radius: 12px 12px 12px 0;
}

.account-address-card__empty-icon::after,
.account-empty-state__icon::after {
	position: absolute;
	top: 7px;
	left: 7px;
	width: 6px;
	height: 6px;
	border: 1.5px solid #222;
	border-radius: 50%;
	content: "";
}

.account-orders-table-wrap {
	overflow-x: auto;
}

.account-page .woocommerce table.account-orders-table {
	border: 0;
	border-collapse: collapse;
	border-radius: 0;
}

.account-page .woocommerce table.account-orders-table th,
.account-page .woocommerce table.account-orders-table td {
	padding: 18px 14px;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
	font-size: 0.78rem;
	text-align: left;
}

.account-page .woocommerce table.account-orders-table th {
	color: #696969;
	font-size: 0.65rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.account-page .woocommerce table.account-orders-table .button {
	padding: 8px 14px;
	border: 1px solid #171717;
	border-radius: 999px;
	background: #fff;
	font-size: 0.65rem;
}

.account-empty-state {
	display: flex;
	min-height: 360px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 55px 24px;
	text-align: center;
}

.account-empty-state__icon {
	width: 29px;
	height: 33px;
	margin-bottom: 22px;
}

.account-empty-state h2 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 500;
}

.account-empty-state p {
	margin: 0 0 30px;
	color: #707070;
	font-size: 0.8rem;
}

.account-orders-pagination {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 24px;
}

@media (max-width: 900px) {
	.account-auth {
		display: block;
	}

	.account-auth__forms {
		min-height: 0;
		padding: 24px 20px 64px;
	}

	.account-auth__visual {
		display: none;
	}

	.password-recovery {
		min-height: 500px;
		padding-top: 64px;
		padding-bottom: 80px;
	}

	.account-shell {
		width: min(100% - 40px, 1480px);
		padding-top: 26px;
	}

	.account-shell__breadcrumb {
		margin-left: 0;
	}

	.account-shell__layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.account-sidebar,
	.account-page .woocommerce-MyAccount-content {
		grid-column: 1;
	}

	.account-sidebar__eyebrow,
	.account-sidebar__name {
		display: none;
	}

	.account-page .woocommerce-MyAccount-navigation {
		overflow-x: auto;
		padding-bottom: 7px;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.account-page .woocommerce-MyAccount-navigation::-webkit-scrollbar {
		display: none;
	}

	.account-page .woocommerce-MyAccount-navigation ul {
		display: flex;
		width: max-content;
		gap: 28px;
		border-bottom: 1px solid #ddd;
	}

	.account-page .woocommerce-MyAccount-navigation li {
		position: relative;
	}

	.account-page .woocommerce-MyAccount-navigation .is-active::after {
		position: absolute;
		right: 0;
		bottom: -1px;
		left: 0;
		height: 2px;
		background: #171717;
		content: "";
	}

	.account-page .woocommerce-MyAccount-navigation-link--customer-logout {
		margin: 0;
		padding: 0;
		border: 0;
	}

	.account-page .woocommerce-MyAccount-navigation a:hover,
	.account-page .woocommerce-MyAccount-navigation a:focus-visible {
		transform: none;
	}
}

@media (max-width: 480px) {
	.account-page__title {
		font-size: 2.35rem;
	}

	.account-shell {
		width: min(100% - 28px, 1480px);
		padding-bottom: 64px;
	}

	.account-shell__breadcrumb {
		margin-bottom: 24px;
	}

	.account-section__header {
		margin-bottom: 32px;
	}

	.account-form__grid,
	.woocommerce-address-fields__field-wrapper,
	.account-addresses {
		grid-template-columns: 1fr;
	}

	.account-form__grid,
	.woocommerce-address-fields__field-wrapper {
		gap: 0;
	}

	.account-address-card {
		min-height: 220px;
		padding: 20px;
	}

	.account-address-card header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.account-button--compact,
	.account-page .woocommerce a.account-button--compact {
		width: 100%;
		min-width: 0;
	}

	.account-auth__forms {
		padding-right: 16px;
		padding-left: 16px;
	}

	.account-auth__tab {
		font-size: 0.76rem;
	}

	.account-auth__panel {
		padding-top: 32px;
	}

	.account-auth__panel h1,
	.account-auth__panel h2 {
		margin-bottom: 30px;
	}

	.password-recovery {
		padding: 52px 16px 68px;
	}

	.password-recovery__instructions {
		padding-top: 30px;
		padding-bottom: 36px;
	}

	.account-auth__name-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	width: min(100% - (var(--ds-gutter) * 2), var(--ds-container));
	margin: 0 auto;
}

.site-footer {
	border-bottom: 1px solid var(--ds-color-border);
}

.site-topbar {
	background: #fff;
	color: #121212;
	border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.site-topbar__inner {
	width: min(100% - (var(--ds-gutter) * 2), var(--ds-container));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 16px 0;
}

.site-topbar__message,
.site-topbar__link {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-footer {
	border-top: 1px solid var(--ds-color-border);
	border-bottom: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #fff;
}

.product-navigation.hero-reference__nav {
	position: sticky;
	top: var(--site-header-height, 0px);
	z-index: 35;
}

.site-header__inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px 24px 22px;
}

.site-footer__inner {
	width: min(100% - 32px, 1920px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px 24px 22px;
}

.site-branding {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.site-branding--reference .site-logo img {
	width: 190px;
	max-width: 100%;
}

.site-logo {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-tagline,
.site-footer__copy {
	margin: 0;
	font-size: 0.84rem;
	opacity: 0.72;
}

.site-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-action-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	font-weight: 600;
}

.site-actions--icons {
	gap: 20px;
}

.site-icon-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}

.site-icon-link svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
}

@media (min-width: 721px) {
	.site-header__inner {
		padding-right: 16px;
		padding-left: 16px;
		padding-top: 18px;
		padding-bottom: 16px;
	}

	.hero-reference__menu #mega-menu-home_mega_primary,
	.hero-reference__menu .mega-menu-wrap .mega-menu,
	.hero-reference__menu-list {
		padding-right: 16px;
		padding-left: 16px;
	}
}

.site-search-trigger {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.site-search-trigger:focus-visible {
	outline: 1.5px solid #111;
	outline-offset: 4px;
}

.search-overlay-is-open {
	overflow: hidden;
}

.search-overlay.catalog-shell {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: block;
	padding: 0;
	background: transparent;
}

.search-overlay[hidden] {
	display: none !important;
}

.search-overlay__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: rgba(0, 0, 0, .52);
	cursor: default;
}

.search-overlay__panel {
	position: relative;
	z-index: 1;
	display: flex;
	width: 100%;
	max-height: min(850px, 100dvh);
	min-height: 420px;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 46px rgba(0, 0, 0, .14);
	animation: search-overlay-enter .2s ease-out both;
}

@keyframes search-overlay-enter {
	from { opacity: .85; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

.search-overlay__top {
	display: grid;
	grid-template-columns: minmax(220px, 300px) minmax(280px, 1fr) 48px;
	gap: clamp(22px, 4vw, 70px);
	align-items: center;
	min-height: 112px;
	padding: 24px 28px;
}

.search-overlay__logo img {
	width: min(100%, 240px);
}

.search-overlay__form {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	height: 54px;
	border-bottom: 1px solid #d8d8d8;
}

.search-overlay__input-icon {
	flex: 0 0 auto;
	width: 25px;
	height: 25px;
	margin-right: 14px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.7;
}

.search-overlay__form input[type="search"] {
	width: 100%;
	min-width: 0;
	height: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	box-shadow: none;
	color: #111;
	font: inherit;
	font-size: clamp(18px, 1.5vw, 25px);
	font-weight: 400;
}

.search-overlay__form input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

.search-overlay__form input[type="search"]::placeholder {
	color: #c7c7c7;
	opacity: 1;
}

.search-overlay__form:focus-within {
	border-bottom-color: #111;
}

.search-overlay__clear {
	flex: 0 0 auto;
	margin: 0 0 0 16px;
	padding: 7px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #111;
	font: inherit;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
}

.search-overlay__clear[hidden] {
	display: none;
}

.search-overlay__close {
	display: grid;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #111;
	place-items: center;
	cursor: pointer;
}

.search-overlay__close svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.45;
}

.search-overlay__close:focus-visible,
.search-overlay__clear:focus-visible,
.search-suggestions__chips button:focus-visible,
.search-recent button:focus-visible,
.search-overlay__all:focus-visible {
	outline: 1.5px solid #111;
	outline-offset: 3px;
}

.search-overlay__content {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-color: #c7c7c7 transparent;
	scrollbar-width: thin;
}

.search-overlay__default[hidden],
.search-overlay__live[hidden],
.search-overlay__loading[hidden],
.search-overlay__empty[hidden],
.search-overlay__results[hidden],
.search-recent[hidden] {
	display: none;
}

.search-suggestions {
	display: grid;
	grid-template-columns: minmax(220px, 300px) 1fr;
	gap: clamp(22px, 4vw, 70px);
	align-items: center;
	min-height: 150px;
	padding: 28px;
}

.search-suggestions h3,
.search-recent h3,
.search-overlay__results-heading h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.35;
}

.search-suggestions__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.search-suggestions__chips button {
	min-height: 44px;
	margin: 0;
	padding: 10px 22px;
	border: 1px solid #dedede;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font: inherit;
	font-size: 15px;
	cursor: pointer;
	transition: border-color .16s ease, background-color .16s ease;
}

.search-recent {
	padding: 26px 28px 38px;
	border-top: 1px solid #e4e4e4;
}

.search-recent__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
}

.search-recent__heading > button {
	margin: 0;
	padding: 7px 0;
	border: 0;
	background: transparent;
	color: #777;
	font: inherit;
	font-size: 12px;
	cursor: pointer;
}

.search-recent__list {
	display: grid;
	width: min(100%, 520px);
}

.search-recent__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 38px;
	align-items: center;
	min-height: 46px;
}

.search-recent__query,
.search-recent__remove {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	font: inherit;
	cursor: pointer;
}

.search-recent__query {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	text-align: left;
}

.search-recent__query span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-recent__query svg {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.45;
}

.search-recent__remove {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
}

.search-recent__remove svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.4;
}

.search-overlay__loading,
.search-overlay__empty {
	display: grid;
	min-height: 330px;
	padding: 54px 24px;
	place-content: center;
	justify-items: center;
	text-align: center;
}

.search-overlay__loading span {
	width: 38px;
	height: 38px;
	border: 2px solid #dedede;
	border-top-color: #111;
	border-radius: 50%;
	animation: search-loading-spin .7s linear infinite;
}

@keyframes search-loading-spin { to { transform: rotate(360deg); } }

.search-overlay__loading p,
.search-overlay__empty p {
	margin: 14px 0 0;
	color: #777;
	font-size: 14px;
}

.search-overlay__empty svg,
.catalog-empty-state svg {
	width: 48px;
	height: 48px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.search-overlay__empty h3 {
	margin: 18px 0 0;
	font-size: 20px;
	font-weight: 500;
}

.search-overlay__results {
	padding: 10px 28px 42px;
}

.search-overlay__results-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.search-overlay__results-heading span {
	color: #777;
	font-size: 13px;
}

.search-overlay.catalog-shell ul.products {
	column-gap: clamp(20px, 2.4vw, 46px);
	row-gap: 40px;
}

.search-overlay.catalog-shell .product-card__image-link {
	aspect-ratio: 4 / 5;
}

.search-overlay__all {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 230px;
	min-height: 48px;
	margin: 38px auto 0;
	padding: 10px 24px;
	border: 1px solid #111;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font: inherit;
	font-size: 13px;
	cursor: pointer;
}

@media (any-hover: hover) {
	.search-suggestions__chips button:hover { border-color: #111; background: #f7f7f7; }
	.search-overlay__close:hover { background: #f2f2f2; }
	.search-overlay__clear:hover,
	.search-recent__heading > button:hover { color: #777; }
	.search-overlay__all:hover { background: #fff; color: #111; }
}

@media (max-width: 720px) {
	.search-overlay__panel { height: 100dvh; min-height: 100dvh; }
	.search-overlay__top {
		grid-template-columns: minmax(0, 1fr) 44px;
		gap: 12px;
		min-height: 0;
		padding: 18px 16px 12px;
	}
	.search-overlay__logo { grid-column: 1; grid-row: 1; }
	.search-overlay__logo img { width: 142px; }
	.search-overlay__close { grid-column: 2; grid-row: 1; width: 42px; height: 42px; }
	.search-overlay__form { grid-column: 1 / -1; grid-row: 2; height: 50px; }
	.search-overlay__form input[type="search"] { height: 48px; font-size: 18px; }
	.search-overlay__input-icon { width: 22px; height: 22px; margin-right: 10px; }
	.search-suggestions { grid-template-columns: 1fr; gap: 18px; min-height: 0; padding: 28px 16px; }
	.search-suggestions__chips { gap: 9px; }
	.search-suggestions__chips button { min-height: 40px; padding: 8px 16px; font-size: 13px; }
	.search-recent { padding: 24px 16px 34px; }
	.search-overlay__results { padding: 18px 16px 34px; }
	.search-overlay__results-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
	.search-overlay__loading,
	.search-overlay__empty { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
	.search-overlay__panel { animation: none; }
	.search-overlay__loading span { animation-duration: 1.4s; }
}

.site-cart-count,
.site-wishlist-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--ds-color-text);
	color: #fff;
	font-size: 0.72rem;
	position: absolute;
	top: -4px;
	right: -10px;
}

.site-cart-count[hidden],
.site-wishlist-count[hidden] {
	display: none;
}

.site-main {
	min-height: 70vh;
}

/* 404: a full-bleed campaign image keeps a broken link in the shop's visual language. */
body.error404 .site-main {
	min-height: 0;
}

.diverse-error-page {
	display: grid;
	align-content: center;
	min-height: 950px;
	padding: 24px;
	background-color: #31535e;
	background-image: url('../images/reference/error-background-desktop.webp');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

.diverse-error-page__content {
	display: grid;
	justify-items: center;
	gap: 24px;
	width: min(100%, 860px);
	margin: 0 auto;
	text-align: center;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.diverse-error-page h1,
.diverse-error-page__message {
	margin: 0;
}

.diverse-error-page h1 {
	font-size: clamp(3.15rem, 5.2vw, 5.35rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.diverse-error-page__message {
	max-width: 760px;
	font-size: clamp(1.05rem, 1.75vw, 1.72rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.01em;
}

.diverse-error-page__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 282px;
	min-height: 88px;
	margin-top: 20px;
	padding: 17px 42px;
	border: 2px solid currentColor;
	border-radius: 999px;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.diverse-error-page__action:hover,
.diverse-error-page__action:focus-visible {
	background: #fff;
	color: #151515;
	transform: translateY(-2px);
	outline: 0;
}

@media (max-width: 720px) {
	.diverse-error-page {
		min-height: max(560px, calc(100svh - 150px));
		padding: 20px 16px;
		background-image: url('../images/reference/error-background-mobile.webp');
		background-position: center top;
	}

	.diverse-error-page__content {
		gap: 18px;
	}

	.diverse-error-page__message {
		max-width: 460px;
	}

	.diverse-error-page__action {
		min-width: 248px;
		min-height: 64px;
		margin-top: 10px;
		padding: 13px 30px;
		font-size: 0.92rem;
	}
}

.hero,
.page-section {
	padding: 64px 0;
}

.page-section--surface {
	background: #fff;
}

/* Privacy policy */
.privacy-policy {
	padding: 20px 0 96px;
	background: #fff;
}

.privacy-policy__container {
	width: min(100% - 48px, 1540px);
	margin: 0 auto;
}

.privacy-policy__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 36px;
	color: #777;
	font-size: 0.625rem;
	line-height: 1.4;
}

.privacy-policy__breadcrumbs span {
	width: 6px;
	height: 6px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.privacy-policy__breadcrumbs strong {
	color: #151515;
	font-weight: 600;
}

.privacy-policy__layout {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 90px;
}

.privacy-policy__aside {
	align-self: start;
}

.privacy-policy__aside-title {
	margin: 0 0 34px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.032em;
}

.privacy-policy__aside nav {
	display: grid;
	gap: 0;
}

.privacy-policy__aside a {
	padding: 0 0 24px;
	color: #343434;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 2;
	letter-spacing: 0.04em;
	transition: color 160ms ease;
}

.privacy-policy__aside a:hover,
.privacy-policy__aside a:focus-visible {
	color: #111;
}

.privacy-policy__header {
	padding-bottom: 40px;
	border-bottom: 1px solid #dedede;
}

.privacy-policy__eyebrow,
.privacy-policy__date {
	margin: 0;
	color: #707070;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.privacy-policy__header h1 {
	max-width: none;
	margin: 0 0 48px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.privacy-policy__lead {
	max-width: none;
	margin: 0;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.privacy-policy__date {
	margin-top: 18px;
}

.privacy-policy__content section {
	padding: 48px 0 0;
	scroll-margin-top: 28px;
}

.privacy-policy__content h2 {
	margin: 0 0 24px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.031em;
}

.privacy-policy__content p,
.privacy-policy__content li {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.025em;
}

.privacy-policy__content p {
	margin: 0 0 18px;
}

.privacy-policy__content ul {
	margin: 20px 0 24px;
	padding-left: 22px;
}

.privacy-policy__content li + li {
	margin-top: 10px;
}

.privacy-policy__content a {
	border-bottom: 1px solid currentColor;
}

.privacy-policy__note {
	margin-top: 28px;
	padding: 22px 24px;
	background: #f4f4f2;
	font-size: 0.92rem;
	line-height: 1.65;
}

.privacy-policy__missing {
	padding: 1px 4px;
	background: #fff0b8;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.privacy-policy__table-wrap {
	overflow-x: auto;
	margin: 26px 0;
}

.privacy-policy table {
	width: 100%;
	min-width: 700px;
	border-collapse: collapse;
	font-size: 0.88rem;
	line-height: 1.55;
}

.privacy-policy th,
.privacy-policy td {
	padding: 17px 18px;
	border: 1px solid #dedede;
	vertical-align: top;
	text-align: left;
}

.privacy-policy th {
	background: #f4f4f2;
	font-weight: 600;
}

.privacy-policy__contacts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 28px 0;
	background: #dedede;
	border: 1px solid #dedede;
}

.privacy-policy__contacts p {
	min-width: 0;
	margin: 0;
	padding: 20px;
	background: #fff;
	overflow-wrap: anywhere;
}

.privacy-policy__contacts span:first-child {
	display: block;
	margin-bottom: 10px;
	color: #777;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

@media (min-width: 981px) {
	.privacy-policy__container {
		width: min(100% - 48px, 1000px);
	}

	.privacy-policy__content {
		width: 100%;
	}
}

@media (max-width: 980px) {
	.privacy-policy__layout {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 50px;
	}

	.privacy-policy__contacts {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.privacy-policy {
		padding: 24px 0 64px;
	}

	.privacy-policy__container {
		width: min(100% - 32px, 1540px);
	}

	.privacy-policy__breadcrumbs {
		margin-bottom: 34px;
	}

	.privacy-policy__layout {
		display: block;
	}

	.privacy-policy__aside {
		position: static;
		margin-bottom: 46px;
		padding-bottom: 30px;
		border-bottom: 1px solid #dedede;
	}

	.privacy-policy__aside-title {
		font-size: 1.25rem;
	}

	.privacy-policy__aside nav {
		display: flex;
		flex-wrap: wrap;
		gap: 14px 24px;
	}

	.privacy-policy__aside a {
		padding-bottom: 0;
		font-size: 0.82rem;
	}

	.privacy-policy__header {
		padding-bottom: 38px;
	}

	.privacy-policy__content section {
		padding-top: 42px;
	}

	.privacy-policy__content p,
	.privacy-policy__content li {
		font-size: 0.92rem;
	}
}

.hero-reference__topline {
	border-top: 0;
	border-bottom: 1px solid rgba(18, 18, 18, 0.08);
	background: #fff;
	position: relative;
	z-index: 3;
	overflow: visible;
	height: 44px;
}

.hero-reference__nav {
	position: relative;
	background: #fff;
	z-index: 10;
}

.hero-reference__menu {
	width: 100%;
	margin: 0 auto;
	height: 100%;
}

.hero-reference__menu .mega-menu-toggle {
	display: none;
}

.hero-reference__menu #mega-menu-wrap-home_mega_primary,
.hero-reference__menu .mega-menu-wrap,
.hero-reference__menu [id^="mega-menu-wrap-"] {
	position: static;
	height: 100%;
	background: transparent;
	width: 100%;
}

.hero-reference__menu #mega-menu-home_mega_primary,
.hero-reference__menu .mega-menu-wrap .mega-menu {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: clamp(14px, 1.2vw, 24px);
	height: 100%;
	margin: 0;
	padding: 0 24px;
	list-style: none;
	overflow: visible;
	white-space: nowrap;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item {
	position: static;
	display: flex;
	align-items: stretch;
	height: 100%;
	margin: 0;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-menu-link {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	color: #121212;
	font-size: clamp(0.8rem, 0.9vw, 0.94rem);
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	transition: color 180ms ease;
	box-shadow: none !important;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item > .mega-menu-link::after,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-menu-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background: #000;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 220ms ease;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-current-menu-item > .mega-menu-link,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-current-menu-ancestor > .mega-menu-link,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.current-menu-item > .mega-menu-link,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.current-menu-ancestor > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.mega-current-menu-item > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.mega-current-menu-ancestor > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.current-menu-item > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.current-menu-ancestor > .mega-menu-link {
	font-weight: 700;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item:hover > .mega-menu-link::after,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item:focus-within > .mega-menu-link::after,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-current-menu-item > .mega-menu-link::after,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-current-menu-ancestor > .mega-menu-link::after,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.current-menu-item > .mega-menu-link::after,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.current-menu-ancestor > .mega-menu-link::after,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item:hover > .mega-menu-link::after,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item:focus-within > .mega-menu-link::after,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.mega-current-menu-item > .mega-menu-link::after,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.mega-current-menu-ancestor > .mega-menu-link::after,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.current-menu-item > .mega-menu-link::after,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.current-menu-ancestor > .mega-menu-link::after {
	transform: scaleX(1);
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.menu-sale > .mega-menu-link,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.sale > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.menu-sale > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.sale > .mega-menu-link {
	color: #d91d1d;
	font-weight: 700;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-toggle-on > .mega-sub-menu,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item:focus-within > .mega-sub-menu,
.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item:hover > .mega-sub-menu,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item.mega-toggle-on > .mega-sub-menu,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item:focus-within > .mega-sub-menu,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item:hover > .mega-sub-menu {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-menu-megamenu > .mega-sub-menu,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	display: block;
	width: 100vw;
	margin: 0;
	padding: 34px 24px 28px !important;
	padding-left: max(24px, calc((100vw - min(100% - 32px, 1920px)) / 2 + 24px));
	padding-right: max(24px, calc((100vw - min(100% - 32px, 1920px)) / 2 + 24px));
	background: #fff !important;
	border-top: 1px solid rgba(18, 18, 18, 0.08) !important;
	box-shadow: 0 20px 40px rgba(18, 18, 18, 0.08) !important;
	transform: translate(-50%, -12px);
	transform-origin: top center;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition:
		transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
		opacity 220ms ease,
		visibility 220ms ease;
	z-index: 20;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-menu-megamenu > .mega-sub-menu > .mega-menu-row,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-sub-menu > .mega-menu-row,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-sub-menu > .mega-menu-column {
	min-width: 0;
	width: 100%;
	float: none;
}

.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-menu-megamenu > .mega-sub-menu > .mega-menu-row > .mega-sub-menu,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-sub-menu > .mega-menu-column > .mega-sub-menu,
.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-sub-menu > .mega-menu-row > .mega-sub-menu {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 44px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-menu-row > .mega-sub-menu > .mega-menu-column,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu > .mega-menu-item.mega-menu-column-standard,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item {
	margin: 0;
	float: none;
	width: 100% !important;
	padding: 0 !important;
	min-width: 0;
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .mega-menu-item > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item > .mega-menu-link {
	display: block;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	color: rgba(18, 18, 18, 0.84);
	font-size: 0.97rem;
	line-height: 1.45;
	font-weight: 400;
	letter-spacing: -0.01em;
	white-space: normal;
	transition: color 180ms ease, transform 180ms ease;
	box-shadow: none !important;
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .mega-menu-item > .mega-menu-link:hover,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .mega-menu-item > .mega-menu-link:focus-visible,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item > .mega-menu-link:hover,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item > .mega-menu-link:focus-visible {
	color: #121212;
	transform: translateX(4px);
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-menu-row > .mega-sub-menu > .mega-menu-column > .mega-sub-menu > .mega-menu-item > .mega-menu-link,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu > .mega-menu-item.mega-menu-column-standard > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item.mega-menu-item-has-children > .mega-menu-link,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item.mega-hide-text > .mega-menu-link {
	margin-bottom: 18px;
	color: #121212;
	font-size: 1.06rem;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-transform: none;
	pointer-events: none;
	cursor: default;
	transform: none;
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-menu-row > .mega-sub-menu > .mega-menu-column > .mega-sub-menu > .mega-menu-item > .mega-sub-menu,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu > .mega-menu-item.mega-menu-column-standard > .mega-sub-menu,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item.mega-menu-item-has-children > .mega-sub-menu {
	display: grid;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .mega-menu-item.widget_media_image,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .mega-menu-item.widget_custom_html,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .mega-menu-item.widget_text,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item.widget_media_image,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item.widget_custom_html,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-item.widget_text {
	align-self: start;
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .widget,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .textwidget,
.hero-reference__menu #mega-menu-home_mega_primary .mega-sub-menu .custom-html-widget,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .widget,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .textwidget,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .custom-html-widget {
	color: #121212;
	font-size: 0.95rem;
	line-height: 1.5;
}

.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .widget_media_image img,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .custom-html-widget img,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .textwidget img {
	width: 100%;
	aspect-ratio: 1.16;
	object-fit: cover;
}

.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .custom-html-widget a,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .textwidget a {
	display: block;
	overflow: hidden;
	background: #f3f3f3;
}

.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .custom-html-widget p,
.hero-reference__menu .mega-menu-wrap .mega-menu .mega-sub-menu .textwidget p {
	margin: 12px 0 0;
	font-size: 0.95rem;
	font-weight: 500;
}

.hero-reference__menu #mega-menu-home_mega_primary .mega-indicator {
	display: none !important;
}

@media (min-width: 769px) {
	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item > a.mega-menu-link {
		display: flex !important;
		align-items: center !important;
		height: 100% !important;
		line-height: 1.4 !important;
		padding: 0 !important;
		color: #121212 !important;
		background: transparent !important;
		font-size: clamp(0.8rem, 0.9vw, 0.94rem) !important;
		font-weight: 500 !important;
		letter-spacing: 0.025em !important;
		text-transform: uppercase !important;
	}

	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item.menu-sale > a.mega-menu-link,
	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item.sale > a.mega-menu-link {
		color: #d91d1d !important;
		font-weight: 700 !important;
	}

	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item:hover > a.mega-menu-link,
	.hero-reference__menu #mega-menu-wrap-home_mega_primary #mega-menu-home_mega_primary > li.mega-menu-item > a.mega-menu-link:focus {
		color: #121212 !important;
		background: transparent !important;
	}

	.hero-reference__menu #mega-menu-home_mega_primary,
	.hero-reference__menu #mega-menu-wrap-home_mega_primary .mega-menu-toggle + #mega-menu-home_mega_primary {
		display: flex !important;
		visibility: visible !important;
	}
}

.hero-reference__menu-list {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: clamp(14px, 1.2vw, 24px);
	height: 100%;
	margin: 0;
	padding: 0 24px;
	list-style: none;
	overflow: visible;
	white-space: nowrap;
}

.hero-reference__menu-list > li {
	position: relative;
	display: flex;
	align-items: stretch;
	flex: 0 1 auto;
	height: 100%;
}

.hero-reference__menu-list > li > a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	font-size: clamp(0.8rem, 0.9vw, 0.94rem);
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	padding: 0;
	transition: color 180ms ease;
}

.hero-reference__menu-list > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background: #000;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 220ms ease;
}

.hero-reference__menu-list > li > a:hover::after,
.hero-reference__menu-list > li > a:focus-visible::after,
.hero-reference__menu-list > li.is-current > a::after,
.hero-reference__menu-list > li.current-menu-item > a::after,
.hero-reference__menu-list > li.current_page_item > a::after,
.hero-reference__menu-list > li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.hero-reference__menu-list > li.is-sale > a {
	color: #d91d1d;
	font-weight: 700;
}

.hero-reference__menu-shell {
	height: 100%;
}

.hero-reference__menu-list {
	justify-content: space-between;
	column-gap: 12px;
}

.hero-reference__menu-item {
	position: static;
	display: flex;
	align-items: stretch;
	height: 100%;
}

.hero-reference__menu-link {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0;
	color: #121212;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.hero-reference__menu-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background: #121212;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 220ms ease;
}

.hero-reference__menu-item.is-current > .hero-reference__menu-link,
.hero-reference__menu-item:hover > .hero-reference__menu-link,
.hero-reference__menu-item:focus-within > .hero-reference__menu-link,
.hero-reference__menu-item.is-open > .hero-reference__menu-link {
	font-weight: 700;
}

.hero-reference__menu-item.is-current > .hero-reference__menu-link::after,
.hero-reference__menu-item:hover > .hero-reference__menu-link::after,
.hero-reference__menu-item:focus-within > .hero-reference__menu-link::after,
.hero-reference__menu-item.is-open > .hero-reference__menu-link::after {
	transform: scaleX(1);
}

.hero-reference__menu-item.is-sale > .hero-reference__menu-link {
	color: #d91d1d;
	font-weight: 700;
}

.hero-reference__menu-toggle {
	display: none;
}

.hero-reference__mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: auto;
	padding: 0;
	padding-left: max(16px, calc((100vw - min(100% - 32px, 1920px)) / 2));
	padding-right: max(16px, calc((100vw - min(100% - 32px, 1920px)) / 2));
	background: #fff;
	border-top: 1px solid rgba(18, 18, 18, 0.08);
	box-shadow: 0 20px 40px rgba(18, 18, 18, 0.08);
	transform: translateY(-12px);
	transform-origin: top center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
		opacity 220ms ease,
		visibility 220ms ease;
	z-index: 20;
}

.hero-reference__menu-item:hover > .hero-reference__mega-menu,
.hero-reference__menu-item:focus-within > .hero-reference__mega-menu,
.hero-reference__menu-item.is-open > .hero-reference__mega-menu {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hero-reference__mega-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 1fr) minmax(320px, 0.95fr);
	column-gap: 12px;
	align-items: start;
	padding: 32px 0;
}

.hero-reference__mega-column {
	min-width: 0;
	padding-top: 8px;
	padding-bottom: 32px;
}

.hero-reference__mega-column + .hero-reference__mega-column {
	border-left: 1px solid #ebebeb;
	padding-left: 56px;
}

.hero-reference__mega-column h3 {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.hero-reference__mega-heading-link {
	font: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: #121212;
	text-transform: none;
	display: inline;
	width: auto;
	height: auto;
	font-family: "Inter", sans-serif;
	text-align: left;
	vertical-align: baseline;
}

.hero-reference__mega-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0;
}

.hero-reference__mega-column li {
	margin: 0;
}

.hero-reference__mega-column li.has-children > a {
	display: inline-block;
	margin-bottom: 12px;
	color: #121212;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: 0.04em;
	font-family: "Inter", sans-serif;
	text-align: left;
	text-transform: none;
	vertical-align: baseline;
	width: auto;
	height: auto;
}

.hero-reference__mega-column li.has-children > ul {
	gap: 0;
	padding-left: 0;
}

.hero-reference__mega-column li.has-children > ul a {
	font-size: 14px;
}

.hero-reference__mega-column ul a {
	font-size: 14px;
	line-height: 1.6;
	font-weight: 300;
	letter-spacing: 0.04em;
	color: rgb(8, 8, 8);
	transition: color 180ms ease, transform 180ms ease;
	text-transform: none;
	font-family: "Inter", sans-serif;
	text-align: left;
	display: block;
	width: 279px;
	height: 22.4px;
	vertical-align: baseline;
	margin-top: 14px;
}

.hero-reference__mega-column ul a:hover,
.hero-reference__mega-column ul a:focus-visible {
	color: #999999;
	transform: none;
}

.hero-reference__mega-column h3 + ul > li > a {
	font-weight: 300;
	padding-bottom: 0;
}

.hero-reference__mega-promo {
	min-width: 0;
	padding-left: 56px;
	border-left: 1px solid #ebebeb;
}

.hero-reference__mega-promo span {
	left: 16px;
	bottom: 8px;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	font-weight: 500;
}

/* Desktop mega menu — proportions and behaviour taken from the saved Diverse
 * storefront. The submenu is deliberately viewport-wide, not constrained by
 * the header's 1920px content wrapper. */
@media (min-width: 721px) {
	.hero-reference__gallery::after {
		content: "";
		position: absolute;
		z-index: 4;
		inset: 0;
		background: rgba(0, 0, 0, 0);
		pointer-events: none;
		transition: background-color 356ms ease;
	}

	.hero-reference__nav:has(.hero-reference__menu-item[data-menu-item]:hover) + .hero-reference__gallery::after,
	.hero-reference__nav:has(.hero-reference__menu-item[data-menu-item]:focus-within) + .hero-reference__gallery::after,
	.hero-reference__nav:has(.hero-reference__menu-item[data-menu-item].is-open) + .hero-reference__gallery::after {
		background: rgba(0, 0, 0, 0.6);
	}

	.hero-reference__menu-list {
		width: 100%;
		justify-content: space-between;
		gap: 0;
		padding: 0 24px;
	}

	.hero-reference__menu-list > .hero-reference__menu-item {
		position: static;
		flex: 0 0 auto;
	}

	.hero-reference__menu-link {
		font-size: clamp(14px, 1.05vw, 18px);
		letter-spacing: 0.04em;
	}

	.hero-reference__mega-menu {
		left: 50%;
		right: auto;
		width: 100vw;
		padding: 0;
		border-top: 1px solid rgba(18, 18, 18, 0.12);
		box-shadow: none;
		transform: translate(-50%, -12px);
		z-index: 20;
	}

	.hero-reference__menu-item:hover > .hero-reference__mega-menu,
	.hero-reference__menu-item:focus-within > .hero-reference__mega-menu,
	.hero-reference__menu-item.is-open > .hero-reference__mega-menu {
		transform: translate(-50%, 0);
	}

	.hero-reference__mega-grid {
		display: flex;
		align-items: stretch;
		gap: 0;
		width: min(100% - 32px, 1920px);
		min-height: 420px;
		margin: 0 auto;
		padding: 32px 0;
		max-height: calc(100vh - 250px);
		overflow-y: auto;
	}

	.hero-reference__mega-column {
		flex: 1 1 0;
		padding: 8px 56px 32px 0;
	}

	.hero-reference__mega-column + .hero-reference__mega-column {
		border-left: 1px solid #ebebeb;
		padding: 8px 56px 32px;
	}

	.hero-reference__mega-column h3,
	.hero-reference__mega-column li.has-children > a {
		margin-bottom: 14px;
		font-size: 16px;
		line-height: 1.8;
		font-weight: 500;
		letter-spacing: 0.04em;
	}

	.hero-reference__mega-column ul a {
		width: auto;
		height: auto;
		margin-top: 14px;
		font-size: 14px;
		line-height: 1.6;
		font-weight: 300;
		letter-spacing: 0.04em;
	}

	.hero-reference__mega-promo {
		position: relative;
		flex: 0 0 min(22vw, 435px);
		align-self: center;
		margin-left: auto;
		padding-left: 0;
		border-left: 0;
		overflow: hidden;
	}

	.hero-reference__mega-promo img {
		width: 100%;
		aspect-ratio: 1.34;
		object-fit: cover;
		transition: transform 256ms ease;
	}

	.hero-reference__mega-promo:hover img,
	.hero-reference__mega-promo:focus-visible img {
		transform: scale(1.025);
	}

	.hero-reference__mega-promo span {
		position: absolute;
		left: 16px;
		bottom: 8px;
		color: #fff;
	}
}

.hero-reference__gallery {
	position: relative;
	height: var(--hero-carousel-height, calc(100svh - 200px));
	min-height: 0;
	overflow: hidden;
	background: #050505;
	isolation: isolate;
}

.hero-carousel__slide {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 520ms ease, visibility 0s linear 520ms;
}

.hero-carousel__slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity 520ms ease;
}

.hero-carousel__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-carousel__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 45%, rgba(0, 0, 0, 0.08));
	pointer-events: none;
}

.hero-carousel__copy {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	gap: 8px;
	text-align: center;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-carousel__copy p,
.hero-carousel__copy strong {
	margin: 0;
	font-size: clamp(0.9rem, 1.3vw, 1.25rem);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero-carousel__copy strong {
	font-size: clamp(2.4rem, 5vw, 5.5rem);
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: -0.04em;
}

.hero-carousel__side {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	width: 50%;
	display: flex;
	align-items: center;
	border: 0;
	border-radius: 0 !important;
	appearance: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	padding: 0 clamp(28px, 5vw, 100px);
	opacity: 0;
	transition: opacity 220ms ease, background-color 220ms ease;
}

.hero-carousel__side:hover,
.hero-carousel__side:focus-visible {
	opacity: 1;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 38%, rgba(0, 0, 0, 0) 100%);
	outline: 0;
}

.hero-carousel__side span {
	font-size: clamp(1.5rem, 2.1vw, 2.6rem);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.hero-carousel__side--previous {
	left: 0;
	justify-content: flex-start;
}

.hero-carousel__side--next {
	right: 0;
	justify-content: flex-end;
}

.hero-carousel__side--next:hover,
.hero-carousel__side--next:focus-visible {
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 38%, rgba(0, 0, 0, 0) 100%);
}

.hero-reference__gallery-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 78px 34px;
	color: #fff;
	pointer-events: none;
}

.hero-reference__gallery-bar::after {
	content: "";
	position: absolute;
	left: 25%;
	right: 7%;
	bottom: 28px;
	height: 1px;
	background: rgba(255, 255, 255, 0.86);
}

.hero-reference__count {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 1.125rem;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.hero-reference__count button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	pointer-events: auto;
	transition: opacity 180ms ease;
}

.hero-reference__count button svg,
.hero-reference__more svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.25;
}

.hero-reference__count button:hover,
.hero-reference__count button:focus-visible {
	opacity: 0.65;
	outline: 0;
}

.hero-reference__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	pointer-events: auto;
}

.reference-editorial {
	padding: 24px 0 0;
}

.reference-editorial__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	width: min(100% - 32px, 1920px);
	margin: 0 auto;
}

.reference-editorial__card {
	position: relative;
	overflow: hidden;
	background: #f2f2f2;
}

.reference-editorial__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 0.95;
}

.reference-editorial__overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 28px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
	color: #fff;
}

.reference-editorial__overlay p {
	margin: 0 0 12px;
	font-size: 0.75rem;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.reference-editorial__overlay h2 {
	max-width: 18ch;
	font-size: clamp(2rem, 2.9vw, 3.15rem);
	line-height: 0.98;
	font-weight: 500;
	letter-spacing: -0.03em;
}

.reference-split-cards {
	padding: 32px 0 0;
}

.reference-split-cards__grid,
.reference-campaign-grid__full {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	width: min(100% - 32px, 1920px);
	margin: 0 auto;
}

.reference-split-cards__item,
.reference-campaign-grid__feature {
	position: relative;
	display: block;
	overflow: hidden;
}

.reference-split-cards__item img,
.reference-campaign-grid__feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reference-split-cards__item img {
	aspect-ratio: 1.16;
}

.reference-split-cards__overlay,
.reference-campaign-grid__feature-copy {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 28px 18px;
	color: #fff;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
}

.reference-split-cards__overlay h2,
.reference-campaign-grid__feature-copy h2 {
	margin: 0;
	font-size: clamp(2.3rem, 3.8vw, 4.15rem);
	font-weight: 400;
	line-height: 0.92;
	letter-spacing: -0.04em;
}

.reference-split-cards__overlay span,
.reference-campaign-grid__feature-copy span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 10px;
	white-space: nowrap;
	font-size: 0.86rem;
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.reference-split-cards__grid {
	gap: clamp(16px, 2vw, 40px);
	width: 100%;
}

.reference-split-cards__overlay {
	min-height: 180px;
	padding: 28px clamp(24px, 3vw, 60px) 30px;
	background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.22));
}

.reference-split-cards__overlay h2 {
	font-size: clamp(2rem, 3.1vw, 4rem);
}

.reference-split-cards__overlay span {
	align-self: flex-end;
	min-width: min(44%, 420px);
	justify-content: flex-end;
	padding: 0 0 12px;
}

.reference-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 34px;
}

.reference-section-head h2 {
	margin: 0;
	font-size: clamp(2rem, 2.6vw, 2.75rem);
	line-height: 1.02;
	font-weight: 500;
	letter-spacing: -0.03em;
}

.reference-section-head__arrows {
	display: flex;
	align-items: center;
	gap: 38px;
}

.reference-campaign-grid {
	padding: 32px 0 0;
}

.reference-campaign-grid__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.reference-campaign-grid__item {
	background: #fff;
}

.reference-campaign-grid__item img {
	width: 100%;
	aspect-ratio: 1.34;
	object-fit: cover;
}

.reference-campaign-grid__copy {
	padding: 18px 4px 0;
}

.reference-campaign-grid__copy p {
	margin: 0 0 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--ds-color-accent);
}

.eyebrow {
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ds-color-accent);
	font-size: 0.75rem;
	line-height: 1.4;
	font-weight: 700;
}

h1 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

h2,
h3 {
	margin: 0 0 14px;
	line-height: 1;
}

h2 {
	font-size: clamp(1.8rem, 3.2vw, 3rem);
	letter-spacing: -0.03em;
}

h3 {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	letter-spacing: -0.02em;
}

p {
	max-width: 60ch;
}

button,
.button,
input[type="submit"] {
	border: 0;
	border-radius: 999px;
	background: var(--ds-color-text);
	color: #fff;
	padding: 14px 22px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--ds-color-border);
	border-radius: 12px;
	background: #fff;
	padding: 12px 14px;
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.shop-shell .woocommerce-result-count,
.shop-shell .woocommerce-ordering {
	margin-bottom: 24px;
}

.shop-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
	gap: 24px;
	margin-bottom: 28px;
	padding: 28px;
	border: 1px solid var(--ds-color-border);
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(236, 227, 211, 0.92));
}

.shop-intro__title {
	margin-bottom: 12px;
}

.shop-intro__text {
	margin: 0;
	max-width: 46ch;
}

.shop-intro__stats {
	display: grid;
	gap: 14px;
}

.shop-intro__stat {
	padding: 18px;
	border-radius: 20px;
	background: rgba(252, 250, 246, 0.85);
	border: 1px solid var(--ds-color-border);
}

.shop-intro__stat span {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ds-color-accent);
}

.shop-shell .woocommerce-result-count {
	font-size: 0.92rem;
	opacity: 0.72;
}

.shop-shell .woocommerce-ordering select {
	min-width: 240px;
}

.shop-shell .products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.shop-shell .product {
	display: flex;
	flex-direction: column;
	background: var(--ds-color-surface);
	border: 1px solid var(--ds-color-border);
	border-radius: var(--ds-radius);
	overflow: hidden;
}

.shop-shell .product img {
	background: #fff;
}

.product-card__media {
	position: relative;
	background: linear-gradient(180deg, #fff, #f1ecdf);
}

.product-card__image-link {
	display: block;
	aspect-ratio: 0.92;
	padding: 14px;
}

.product-card__image-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: calc(var(--ds-radius) - 8px);
}

.product-card__body {
	display: grid;
	gap: 14px;
	padding: 18px 18px 20px;
}

.product-card__eyebrow {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--ds-color-accent);
}

.product-card__title {
	margin: 0;
	font-size: 1.1rem;
}

.product-card__title a {
	display: inline-block;
}

.product-card__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.shop-shell .woocommerce-loop-product__title {
	font-size: 1rem;
	margin: 0 0 10px;
}

.shop-shell .price {
	display: block;
	margin-bottom: 18px;
	font-weight: 700;
}

.shop-shell .price del {
	opacity: 0.45;
	margin-right: 8px;
}

.shop-shell .onsale {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--ds-color-accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
}

.product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.product-card__actions .button,
.product-card__actions .added_to_cart {
	padding: 12px 16px;
	font-size: 0.92rem;
}

.product-card__actions .add_to_cart_button,
.product-card__actions .product_type_simple,
.product-card__actions .product_type_external,
.product-card__actions .product_type_variable {
	background: var(--ds-color-text);
	color: #fff;
	border-radius: 999px;
}

.product-card__view {
	background: transparent;
}

/* Catalogue — product-list proportions and controls adapted from the saved
 * Diverse storefront, while keeping WooCommerce products and URLs dynamic. */
.catalog-shell {
	padding: 28px 16px 96px;
	background: #fff;
}

.catalog-shell__inner {
	width: min(100%, 1920px);
	margin: 0 auto;
}

.catalog-breadcrumbs {
	display: flex;
	align-items: center;
	min-height: 18px;
	margin: 0 0 28px;
	overflow: hidden;
	color: #777;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.035em;
	white-space: nowrap;
}

.catalog-breadcrumbs a,
.catalog-breadcrumbs strong {
	color: inherit;
	font-weight: inherit;
}

.catalog-breadcrumbs__divider {
	flex: 0 0 auto;
	width: 6px;
	height: 6px;
	margin: 0 12px 0 11px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.catalog-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 23px;
}

.catalog-header__title-wrap {
	display: flex;
	align-items: center;
	min-width: 0;
}

.catalog-header__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 400;
	letter-spacing: 0.005em;
}

.catalog-header__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 26px;
	margin-left: 8px;
	padding: 0 7px;
	border: 1px solid #e5e5e5;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 500;
}

.catalog-toolbar {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	gap: 18px;
	min-height: 38px;
}

.catalog-filter-toggle,
.catalog-density-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	color: #121212;
	cursor: pointer;
}

.catalog-filter-toggle {
	gap: 8px;
	min-width: 82px;
	padding: 0 10px;
	background: transparent;
	color: #121212;
	font: inherit;
	font-size: 12px;
	font-weight: 500;
}

.catalog-filter-toggle svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.catalog-view-controls {
	--catalog-menu-bridge-height: 19px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: stretch;
	width: 289px;
	min-height: 38px;
	border: 1px solid #e5e5e5;
	border-radius: 999px;
	background: #fff;
}

.catalog-density-dropdown,
.catalog-sort-dropdown {
	position: static;
	display: flex;
	margin: 0;
}

.catalog-density-dropdown {
	flex: 0 0 86px;
}

.catalog-sort-dropdown {
	flex: 1 1 auto;
	min-width: 0;
}

.catalog-density-toggle {
	position: relative;
	z-index: 32;
	gap: 14px;
	width: 100%;
	border: 0;
	border-right: 1px solid #e5e5e5;
	border-radius: 999px 0 0 999px !important;
	background: #fff;
}

.catalog-density-toggle svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
}

.catalog-density-toggle__grid {
	display: none;
	width: 18px;
	height: 18px;
}

.catalog-density-toggle[data-current-density="3"] [data-density-trigger-icon="3"],
.catalog-density-toggle[data-current-density="2"] [data-density-trigger-icon="2"],
.catalog-density-toggle[data-current-density="1"] [data-density-trigger-icon="1"] {
	display: block;
}

.catalog-control-chevron {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.catalog-density-toggle[aria-expanded="true"] .catalog-control-chevron,
.catalog-sort-toggle[aria-expanded="true"] .catalog-control-chevron {
	transform: rotate(180deg);
}

.catalog-sort-toggle {
	position: relative;
	z-index: 32;
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
	gap: 6px;
	margin: 0;
	padding: 0 12px 0 15px;
	border: 0;
	border-radius: 0 999px 999px 0 !important;
	background: #fff;
	color: #121212;
	font: inherit;
	cursor: pointer;
}

.catalog-density-toggle:hover,
.catalog-density-toggle:active,
.catalog-sort-toggle:hover,
.catalog-sort-toggle:active {
	background: #fff;
	color: #121212;
	opacity: 1;
}

.catalog-sort-toggle__label {
	display: none;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 400;
}

.catalog-sort-icon {
	display: none;
}

.catalog-sort-toggle strong {
	min-width: 0;
	margin-right: auto;
	overflow: hidden;
	font-size: 12px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.catalog-density-toggle:focus-visible,
.catalog-sort-toggle:focus-visible {
	position: relative;
	z-index: 2;
	outline: 2px solid #0568d8;
	outline-offset: -1px;
}

.catalog-control-menu {
	position: absolute;
	z-index: 30;
	top: calc(100% + 1px);
	left: 0;
	right: 0;
	border: 1px solid #e1e1e1;
	border-top: 0;
	background: #fff;
	box-shadow: 0 8px 18px rgba(18, 18, 18, 0.06);
}

.catalog-control-menu::before {
	content: "";
	position: absolute;
	top: calc(-1 * var(--catalog-menu-bridge-height));
	left: -1px;
	right: -1px;
	height: var(--catalog-menu-bridge-height);
	border-right: 1px solid #e1e1e1;
	border-left: 1px solid #e1e1e1;
	pointer-events: none;
}

.catalog-control-menu[hidden] {
	display: none;
}

.catalog-control-menu > button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 56px;
	margin: 0;
	padding: 13px 30px;
	border: 0;
	border-radius: 0 !important;
	background: #fff;
	color: #121212;
	font: inherit;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	cursor: pointer;
}

.catalog-control-menu > button + button {
	border-top: 1px solid #e1e1e1;
}

.catalog-control-menu > button:hover,
.catalog-control-menu > button:focus-visible {
	background: #fafafa;
	outline: 0;
}

.catalog-control-menu > button.is-selected {
	font-weight: 600;
}

.catalog-sort-menu > button {
	color: #9b9b9b;
}

.catalog-sort-menu > button:hover,
.catalog-sort-menu > button:focus-visible {
	background: #ededed;
	color: #121212;
}

.catalog-sort-backdrop,
.catalog-sort-menu__heading {
	display: none;
}

.catalog-control-check {
	display: none;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.catalog-control-menu > button.is-selected .catalog-control-check {
	display: block;
}

.catalog-density-menu > button {
	padding-right: 30px;
	padding-left: 30px;
}

.catalog-density-menu__icon {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
}

.catalog-filter-panel {
	margin: -12px 0 38px;
	padding: 26px 0 30px;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
}

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

.catalog-filter-panel > p {
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.catalog-filter-panel__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.catalog-filter-panel__links a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 40px;
	padding: 8px 15px;
	border: 1px solid #dfdfdf;
	border-radius: 999px;
	font-size: 13px;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.catalog-filter-panel__links a:hover,
.catalog-filter-panel__links a:focus-visible,
.catalog-filter-panel__links a.is-active {
	border-color: #111;
	background: #111;
	color: #fff;
}

.catalog-filter-panel__links span {
	opacity: 0.6;
}

.catalog-filter-is-open {
	overflow: hidden;
}

.catalog-filter-drawer {
	position: fixed;
	z-index: 1000;
	inset: 0;
}

.catalog-filter-drawer[hidden] {
	display: none;
}

.catalog-filter-drawer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: rgba(0, 0, 0, .42);
	cursor: default;
}

.catalog-filter-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(100%, 336px);
	height: 100%;
	background: #f4f4f4;
	box-shadow: -12px 0 36px rgba(0, 0, 0, .12);
	animation: catalog-filter-enter .22s ease-out both;
}

@keyframes catalog-filter-enter {
	from { transform: translateX(18px); opacity: .96; }
	to { transform: translateX(0); opacity: 1; }
}

.catalog-filter-drawer__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	padding: 0 20px 0 22px;
	border-bottom: 0;
}

.catalog-filter-drawer__heading h2 {
	margin: 0;
	font-size: 19px;
	font-weight: 500;
	line-height: 24px;
}

.catalog-filter-drawer__reset {
	margin-left: auto;
	color: #111;
	font-size: 12px;
	line-height: 18px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.catalog-filter-drawer__reset:focus-visible {
	outline: 1.5px solid #111;
	outline-offset: 3px;
}

.catalog-filter-close {
	display: grid;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #151515;
	place-items: center;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease;
}

.catalog-filter-close svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.55;
}

.catalog-filter-close:focus { outline: 0; }
.catalog-filter-close:focus-visible { outline: 1.5px solid #111; outline-offset: 2px; }

.catalog-filter-form {
	display: flex;
	flex: 1;
	flex-direction: column;
	overflow-y: auto;
	padding-bottom: 0;
	scrollbar-color: #c7c7c7 transparent;
	scrollbar-width: thin;
}

.catalog-filter-group {
	border-bottom: 0;
}

.catalog-filter-group__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	padding: 0 22px;
	gap: 18px;
}

.catalog-filter-group__heading h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}

.catalog-filter-group__heading a {
	color: #999;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
	transition: color .18s ease;
}

.catalog-filter-group__heading a:focus-visible { outline: 1.5px solid #111; outline-offset: 3px; }

.catalog-filter-group__content {
	display: grid;
	gap: 12px;
	padding: 2px 22px 26px;
}

.catalog-filter-option {
	display: flex;
	align-items: center;
	min-height: 24px;
	gap: 12px;
	color: #111;
	font-size: 15px;
	line-height: 20px;
	cursor: pointer;
}

.catalog-filter-option input {
	position: static;
	flex: 0 0 16px;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	min-width: 16px;
	max-width: 16px;
	min-height: 16px;
	max-height: 16px;
	margin: 0;
	padding: 0;
	clip: auto;
	clip-path: none;
	aspect-ratio: 1;
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	border-radius: 4px;
	background-color: #e6e6e6;
	cursor: pointer;
	transition: background-color .18s ease, box-shadow .18s ease;
}
.catalog-filter-option input:checked {
	background-color: #e3e3e3;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3.2 8.2 3 3.1 6.7-7' fill='none' stroke='%23111' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px;
}
.catalog-filter-option input:focus { outline: 0; }
.catalog-filter-option input:focus-visible { box-shadow: 0 0 0 2px #f4f4f4, 0 0 0 3.5px #111; }
.catalog-filter-option:has(input:checked) span { font-weight: 400; }
.catalog-filter-option small { display: none; }
.catalog-filter-colour-section,
.catalog-filter-size,
.catalog-filter-brand { gap: 12px; }
.catalog-filter-search { position: relative; display: flex; align-items: center; min-height: 40px; color: #9b9b9b; }
.catalog-filter-search__icon { position: absolute; left: 0; flex: 0 0 auto; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.55; pointer-events: none; transition: color .18s ease; }
.catalog-filter-search input { width: 100%; min-width: 0; height: 40px; padding: 0 32px 0 28px; border: 0; border-radius: 4px; outline: 0; background: transparent; color: #111; font: inherit; font-size: 15px; line-height: 20px; }
.catalog-filter-search input::-webkit-search-cancel-button { display: none; }
.catalog-filter-search input::placeholder { color: #999; opacity: 1; }
.catalog-filter-search:focus-within,
.catalog-filter-search:has(input:not(:placeholder-shown)) { color: #111; }
.catalog-filter-search__clear { position: absolute; right: 3px; display: grid; width: 24px; height: 24px; margin: 0; padding: 0; border: 0; border-radius: 50%; background: #a4a4a4; color: #fff; place-items: center; cursor: pointer; transition: background-color .18s ease; }
.catalog-filter-search__clear[hidden] { display: none; }
.catalog-filter-search__clear svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.catalog-filter-search__clear:focus { outline: 0; }
.catalog-filter-search__clear:focus-visible { outline: 1.5px solid #111; outline-offset: 2px; }
.catalog-filter-size__options,
.catalog-filter-brand__options { display: grid; grid-template-columns: 1fr; gap: 10px; max-height: 208px; padding: 2px 5px 2px 0; overflow-y: auto; scrollbar-color: #c7c7c7 transparent; scrollbar-width: thin; }
.catalog-filter-size__options .catalog-filter-option span,
.catalog-filter-brand__options .catalog-filter-option span { margin: 0; color: #111; font-weight: 400; }
.catalog-filter-size__options .catalog-filter-option[hidden] { display: none; }
.catalog-filter-brand__options .catalog-filter-option[hidden] { display: none; }
.catalog-filter-colours .catalog-filter-colour[hidden] { display: none; }
.catalog-filter-search__empty { margin: 4px 8px 0; color: #999; font-size: 14px; line-height: 19px; text-align: center; }
.catalog-filter-search__empty[hidden] { display: none; }
.catalog-filter-price { gap: 20px; padding-top: 3px; }

.catalog-price-slider {
	position: relative;
	height: 22px;
	margin: 0 8px;
}

.catalog-price-slider::before,
.catalog-price-slider__active {
	position: absolute;
	top: 10px;
	height: 2px;
	border-radius: 999px;
	content: '';
}

.catalog-price-slider::before { right: 0; left: 0; background: #d4d6dc; }
.catalog-price-slider__active { left: var(--price-left, 0%); right: calc(100% - var(--price-right, 100%)); background: #111; }

.catalog-price-slider__range {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 22px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	box-shadow: none;
	pointer-events: none;
}

.catalog-price-slider__range:focus,
.catalog-price-slider__range:focus-visible { border: 0; outline: 0; box-shadow: none; }
.catalog-price-slider__range::-webkit-slider-runnable-track { border: 0; background: transparent; box-shadow: none; }
.catalog-price-slider__range::-webkit-slider-thumb { width: 18px; height: 18px; border: 0; border-radius: 50%; appearance: none; -webkit-appearance: none; background: #111; box-shadow: none; cursor: grab; pointer-events: auto; }
.catalog-price-slider__range::-moz-range-thumb { width: 18px; height: 18px; border: 0; border-radius: 50%; background: #111; box-shadow: none; cursor: grab; pointer-events: auto; }
.catalog-price-slider__range::-moz-range-track { background: transparent; }

.catalog-price-inputs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.catalog-price-inputs label { display: grid; gap: 9px; color: #999; font-size: 14px; font-weight: 400; line-height: 1.2; }
.catalog-price-inputs label > span { display: flex; align-items: baseline; min-width: 0; color: #999; font-weight: 400; }
.catalog-price-inputs input { width: 100%; min-width: 0; margin: 0; padding: 0; border: 0; border-radius: 0; outline: 0; appearance: textfield; -moz-appearance: textfield; background: transparent; box-shadow: none; color: inherit; font: inherit; font-size: 16px; font-weight: 400; line-height: 1.25; }
.catalog-price-inputs input::-webkit-inner-spin-button,
.catalog-price-inputs input::-webkit-outer-spin-button { margin: 0; appearance: none; -webkit-appearance: none; }
.catalog-price-inputs input:focus { border: 0; outline: 0; box-shadow: none; }
.catalog-price-inputs i { margin-right: 3px; color: inherit; font-size: 16px; font-style: normal; font-weight: 400; line-height: 1.25; }
.catalog-filter-price[data-price-min-active="true"] .catalog-price-inputs label:first-child > span,
.catalog-filter-price[data-price-max-active="true"] .catalog-price-inputs label:last-child > span,
.catalog-price-inputs label:focus-within > span { color: #111; }

.catalog-filter-colours {
	display: grid;
	grid-template-columns: repeat(6, 20px);
	gap: 15px 19px;
	align-items: center;
	justify-content: start;
}

.catalog-filter-colour { position: relative; display: grid; width: 20px; height: 20px; place-items: center; cursor: pointer; }
.catalog-filter-colour input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); }
.catalog-filter-colour span { display: block; width: 16px; height: 16px; border: 1px solid #d2d2d2; border-radius: 50%; background: var(--catalog-colour); transition: transform .18s ease, box-shadow .18s ease; }
.catalog-filter-colour:has(input:checked) { width: 25px; height: 25px; margin: -3px; border: 1px solid #cfcfcf; border-radius: 50%; }
.catalog-filter-colour:has(input:checked) span { width: 17px; height: 17px; }
.catalog-filter-colour:has(input:focus-visible) { outline: 1.5px solid #111; outline-offset: 2px; }

.catalog-filter-form__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding: 18px 22px;
	border-top: 0;
	background: #f4f4f4;
}

.catalog-filter-form__actions a { color: #111; font-size: 12px; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.catalog-filter-form__actions button { min-height: 40px; margin: 0; padding: 0 16px; border: 1px solid #111; border-radius: 0; background: #111; color: #fff; font: inherit; font-size: 12px; cursor: pointer; transition: background-color .18s ease, color .18s ease; }
.catalog-filter-form__status { min-height: 18px; margin-left: auto; color: #888; font-size: 12px; line-height: 18px; }
.catalog-filter-form.is-ajax-ready .catalog-filter-form__actions button { display: none; }
.catalog-filter-form__actions a:focus-visible,
.catalog-filter-form__actions button:focus-visible { outline: 1.5px solid #111; outline-offset: 3px; }

.catalog-results { transition: opacity .18s ease; }
.catalog-shell.is-filter-loading .catalog-results { opacity: .45; pointer-events: none; }

.catalog-empty-state {
	display: grid;
	min-height: 360px;
	padding: 64px 24px;
	place-content: center;
	justify-items: center;
	text-align: center;
}

.catalog-empty-state h2 {
	margin: 18px 0 0;
	font-size: 22px;
	font-weight: 500;
}

.catalog-empty-state p {
	margin: 10px 0 0;
	color: #777;
	font-size: 14px;
}

@media (min-width: 1041px) {
	.catalog-shell--search .catalog-breadcrumbs {
		margin-left: 332px;
	}

	.catalog-shell--search .catalog-content {
		display: grid;
		grid-template-columns: 296px minmax(0, 1fr);
		grid-template-rows: auto minmax(0, 1fr);
		column-gap: 36px;
		row-gap: 24px;
		align-items: start;
	}

	.catalog-shell--search .catalog-header {
		grid-column: 2;
		grid-row: 1;
		margin: 0;
	}

	.catalog-shell--search .catalog-filter-toggle {
		display: none;
	}

	.catalog-shell--search .catalog-filter-drawer,
	.catalog-shell--search .catalog-filter-drawer[hidden] {
		position: relative;
		z-index: 1;
		inset: auto;
		top: auto;
		display: block;
		grid-column: 1;
		grid-row: 1 / span 2;
		width: 100%;
		height: auto;
		max-height: none;
		margin-top: -62px;
		border: 0;
		background: #fff;
	}

	.catalog-shell--search .catalog-filter-drawer__backdrop {
		display: none;
	}

	.catalog-shell--search .catalog-filter-drawer__panel {
		position: relative;
		top: auto;
		right: auto;
		display: block;
		width: 100%;
		height: auto;
		max-height: none;
		background: #fff;
		box-shadow: none;
		animation: none;
	}

	.catalog-shell--search .catalog-filter-drawer__heading {
		min-height: 56px;
		padding: 0 24px 0 0;
		border: 0;
	}

	.catalog-shell--search .catalog-filter-drawer__heading h2 {
		font-size: 18px;
	}

	.catalog-shell--search .catalog-filter-close {
		display: none;
	}

	.catalog-shell--search .catalog-filter-form {
		display: block;
		height: auto;
		max-height: none;
		overflow: visible;
		padding-right: 16px;
	}

	.catalog-shell--search .catalog-filter-group {
		border: 0;
	}

	.catalog-shell--search .catalog-filter-group__heading {
		padding-right: 8px;
		padding-left: 0;
	}

	.catalog-shell--search .catalog-filter-group__content {
		padding-right: 8px;
		padding-left: 0;
	}

	.catalog-shell--search .catalog-filter-form__actions {
		position: static;
		padding-right: 8px;
		padding-left: 0;
		border: 0;
		background: #fff;
	}

	.catalog-shell--search .catalog-filter-size__options,
	.catalog-shell--search .catalog-filter-brand__options {
		max-height: none;
		overflow: visible;
	}

	.catalog-shell--search .catalog-results {
		grid-column: 2;
		grid-row: 2;
		min-width: 0;
	}

	.catalog-shell--search ul.products {
		column-gap: clamp(18px, 2vw, 38px);
	}
}

@media (any-hover: hover) {
	.catalog-filter-close:hover { background: #e7e7e7; color: #111; }
	.catalog-filter-search__clear:hover { background: #111; }
	.catalog-filter-search:not(:focus-within):not(:has(input:not(:placeholder-shown))):hover { color: #737373; }
	.catalog-filter-group__heading a:hover { color: #111; }
	.catalog-filter-option:hover input { background-color: #dcdcdc; }
	.catalog-filter-option:hover input:checked { background-color: #dcdcdc; }
	.catalog-filter-colour:hover span { transform: scale(1.1); }
	.catalog-filter-form__actions button:hover { background: #f4f4f4; color: #111; }
}

@media (prefers-reduced-motion: reduce) {
	.catalog-filter-drawer__panel { animation: none; }
	.catalog-filter-close,
	.catalog-filter-group__heading a,
	.catalog-filter-option input,
	.catalog-filter-search__icon,
	.catalog-filter-search__clear,
	.catalog-filter-colour span,
	.catalog-filter-form__actions button { transition: none; }
}

.catalog-shell .woocommerce-notices-wrapper:not(:empty) {
	margin: 0 0 32px;
}

.catalog-shell .woocommerce-message,
.catalog-shell .woocommerce-info,
.catalog-shell .woocommerce-error {
	margin: 0;
	border: 0;
	border-radius: 0;
	background: #f4f4f4;
}

.catalog-shell ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: clamp(24px, 2.4vw, 48px);
	row-gap: 52px;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.catalog-shell ul.products::before,
.catalog-shell ul.products::after {
	display: none !important;
}

.catalog-shell ul.products.is-roomy {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-shell ul.products.is-list {
	grid-template-columns: minmax(0, 1fr);
}

.catalog-shell ul.products li.product.product-card {
	position: relative;
	display: block;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 0 8px;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.product-card__gallery {
	position: relative;
	overflow: hidden;
	background: #f3f3f3;
}

.product-card__media {
	position: relative;
	overflow: hidden;
}

.product-card__options-toggle {
	display: none;
}

.product-card__image-link {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 5 / 7;
	overflow: hidden;
	padding: 0;
	background: #f3f3f3;
}

.catalog-shell .product-card__image,
.catalog-shell .product-card__image-link img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	border-radius: 0;
	background: #f3f3f3;
	object-fit: contain;
	opacity: 0;
	visibility: hidden;
	transition: opacity 420ms ease, visibility 0s linear 420ms, transform 360ms ease;
}

.catalog-shell .product-card__image.is-active,
.catalog-shell .product-card__image-link img:only-child {
	opacity: 1;
	visibility: visible;
	transition: opacity 420ms ease, transform 360ms ease;
}

.product-card__gallery:hover .product-card__image.is-active {
	transform: scale(1.012);
}

.product-card__label {
	position: absolute;
	z-index: 3;
	right: 10px;
	bottom: 10px;
	padding: 7px 11px;
	border: 1px solid #ebebeb;
	background: rgba(255, 255, 255, 0.94);
	color: #111;
	font-size: 11px;
	font-weight: 500;
}

.product-card__gallery-arrow {
	position: absolute;
	z-index: 4;
	top: 50%;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(18, 18, 18, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.86);
	color: #111;
	opacity: 0;
	transform: translateY(-50%);
	cursor: pointer;
	transition: opacity 180ms ease, background-color 180ms ease;
}

.product-card__gallery:hover .product-card__gallery-arrow,
.product-card__gallery:focus-within .product-card__gallery-arrow {
	opacity: 1;
}

.product-card__gallery-arrow:hover,
.product-card__gallery-arrow:focus-visible {
	background: #fff;
}

.product-card__gallery-arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-card__gallery-arrow--prev {
	left: 18px;
}

.product-card__gallery-arrow--next {
	right: 18px;
}

.product-card__quick-options {
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 62px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.98);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.product-card:hover .product-card__quick-options,
.product-card:focus-within .product-card__quick-options {
	transform: translateY(0);
	opacity: 1;
}

.product-card__swatches,
.product-card__sizes {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.product-card__sizes {
	justify-content: flex-end;
	font-size: 12px;
	font-weight: 400;
}

.product-card__size {
	position: relative;
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	min-height: 24px;
	margin: 0;
	padding: 3px 1px;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: 1;
	cursor: pointer;
}

.product-card__size-label,
.product-card__size-spinner,
.product-card__size-check {
	grid-area: 1 / 1;
	transition: opacity 180ms ease;
}

.product-card__size-label {
	opacity: 1;
}

.product-card__size-spinner,
.product-card__size-check {
	opacity: 0;
	pointer-events: none;
}

.product-card__size-spinner {
	box-sizing: border-box;
	width: 15px;
	height: 15px;
	border: 1.5px solid #c9c9c9;
	border-top-color: #111;
	border-radius: 50%;
}

.product-card__size-check {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-card__size:hover .product-card__size-label,
.product-card__size:focus-visible .product-card__size-label {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.product-card__size:focus-visible {
	outline: 1px solid #111;
	outline-offset: 3px;
}

.product-card__size.is-loading,
.product-card__size.is-added {
	pointer-events: none;
}

.product-card__size.is-stock-limit {
	color: #8a8a8a;
	cursor: not-allowed;
}

.product-card__size.is-stock-limit .product-card__size-label {
	text-decoration: line-through;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.product-card__stock-status {
	display: none;
	width: 100%;
	margin: 0;
	color: #6d2929;
	font-size: 11px;
	line-height: 1.35;
}

.product-card__stock-status[hidden] {
	display: none;
}

.product-card__size.is-loading .product-card__size-label,
.product-card__size.is-added .product-card__size-label {
	opacity: 0;
}

.product-card__size.is-loading .product-card__size-spinner {
	opacity: 1;
	animation: product-card-size-spin 650ms linear infinite;
}

.product-card__size.is-added .product-card__size-check {
	opacity: 1;
}

.product-card__size:disabled {
	color: #aaa;
	cursor: not-allowed;
	text-decoration: line-through;
}

@keyframes product-card-size-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.product-card__size-label,
	.product-card__size-spinner,
	.product-card__size-check {
		transition-duration: 0.01ms;
	}
}

.product-card__swatch {
	display: block;
	width: 22px;
	height: 22px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--product-card-colour, #777);
	box-shadow: 0 0 0 1px #d0d0d0;
	cursor: pointer;
	text-decoration: none;
	transition: transform .16s ease, box-shadow .16s ease;
}

.product-card__swatch.is-selected {
	box-shadow: 0 0 0 1.5px #111;
}

.product-card__swatch:hover,
.product-card__swatch:focus-visible { transform: scale(1.08); }
.product-card__swatch:focus-visible { outline: 1.5px solid #111; outline-offset: 3px; }

.catalog-shell .product-card__body {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px;
	gap: 7px 14px;
	padding: 18px 0 0;
}

.catalog-shell .product-card__title,
.catalog-shell .woocommerce-loop-product__title.product-card__title {
	grid-column: 1;
	margin: 0;
	padding: 0;
	font-size: 14px !important;
	line-height: 1.45;
	font-weight: 300;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.product-card__title a {
	display: block;
}

.product-card__wishlist {
	display: grid;
	grid-column: 2;
	grid-row: 1;
	place-items: center;
	width: 28px;
	height: 28px;
	margin: -5px -4px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}

.product-card__wishlist svg {
	width: 20px;
	height: 20px;
	fill: transparent;
	stroke: currentColor;
	stroke-width: 1.4;
	transition: fill 160ms ease, transform 160ms ease;
}

.product-card__wishlist:hover svg,
.product-card__wishlist:focus-visible svg {
	transform: scale(1.08);
}

.product-card__wishlist[aria-pressed="true"] svg {
	fill: currentColor;
}

/* Wishlist — the page keeps the compact, editorial layout of the supplied
 * Diverse reference and deliberately does not alter the global header. */
body.diverse-wishlist-page {
	background: #fff;
}

.wishlist-page {
	padding: 0 0 96px;
	background: #fff;
}

.wishlist-page__container {
	width: min(calc(100% - 120px), 1664px);
	margin: 0 auto;
}

.wishlist-page__breadcrumb {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 36px;
	padding-top: 34px;
	color: #6a6a6a;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .025em;
}

.wishlist-page__breadcrumb span {
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.wishlist-page__breadcrumb strong {
	color: #171717;
	font-weight: 500;
}

.wishlist__header {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	gap: 12px;
	align-items: center;
	min-height: 50px;
	border-bottom: 1px solid #d9d9d9;
}

.wishlist__header h1 {
	margin: 0;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: .01em;
}

.wishlist__count {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid #e4e4e4;
	border-radius: 50%;
	font-size: 11px;
	line-height: 1;
}

.wishlist__collapse {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	margin: 0 -2px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}

.wishlist__collapse svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	transition: transform 180ms ease;
}

.wishlist__collapse[aria-expanded="false"] svg {
	transform: rotate(180deg);
}

.wishlist__collapse:focus-visible,
.wishlist-item__delete:focus-visible,
.wishlist-item__add:focus-visible {
	outline: 1.5px solid #111;
	outline-offset: 3px;
}

.wishlist__content {
	min-height: 365px;
}

.wishlist__content[hidden] {
	display: none;
}

.wishlist__empty {
	margin: 0;
	padding-top: 46px;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: .035em;
	line-height: 1.35;
	text-align: center;
}

.wishlist__empty[hidden] {
	display: none;
}

.wishlist__items {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 48px 32px;
	padding-top: 32px;
}

.wishlist-item {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.wishlist-item__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 392 / 550;
	background: #f8f8f8;
}

.wishlist-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wishlist-item--unavailable .wishlist-item__image {
	display: grid;
	place-items: center;
	background: #f5f5f5;
	color: #777;
	font-size: 13px;
	line-height: 1.45;
	text-align: center;
}

.wishlist-item--unavailable .wishlist-item__name,
.wishlist-item--unavailable .wishlist-item__price {
	color: #777;
}

.wishlist-item__details {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding-top: 11px;
}

.wishlist-item__colour-row {
	display: flex;
	min-height: 21px;
	align-items: center;
	gap: 9px;
	font-size: 9px;
	font-weight: 400;
	letter-spacing: .075em;
	line-height: 1.25;
	text-transform: uppercase;
}

.wishlist-item__colour {
	display: inline-block;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	border: 4px solid #fff;
	border-radius: 50%;
	background: var(--wishlist-colour, #111);
	box-shadow: 0 0 0 1px #d8d8d8;
}

.wishlist-item__line {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 26px;
	gap: 10px;
	align-items: start;
	margin-top: 11px;
}

.wishlist-item__name {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .045em;
	line-height: 1.4;
	text-transform: uppercase;
}

.wishlist-item__name:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wishlist-item__delete {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin: -5px -3px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}

.wishlist-item__delete svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.wishlist-item__price {
	margin: auto 0 10px;
	padding-top: 6px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
}

.wishlist-item__add {
	display: inline-flex;
	box-sizing: border-box;
	width: 100%;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	border: 2px solid #111;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .025em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.wishlist-item__add:hover,
.wishlist-item__add:focus-visible,
.wishlist-item__add.is-added {
	background: #111;
	color: #fff;
}

.wishlist-item__add:disabled {
	opacity: .6;
	cursor: progress;
}

.wishlist__error {
	margin: 0;
	padding-top: 46px;
	color: #6a6a6a;
	font-size: 14px;
	text-align: center;
}

.ds-product__heart[aria-pressed="true"] svg {
	fill: currentColor;
}

@media (max-width: 1180px) {
	.wishlist-page__container {
		width: min(calc(100% - 64px), 1664px);
	}

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

}

@media (max-width: 800px) {
	.wishlist-page__container {
		width: min(calc(100% - 32px), 1664px);
	}

	.wishlist-page__breadcrumb {
		margin-bottom: 22px;
		padding-top: 22px;
	}

	.wishlist__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 16px;
		padding-top: 22px;
	}

	.wishlist__content {
		min-height: 250px;
	}

	.wishlist__empty {
		padding: 36px 16px 0;
		font-size: 17px;
	}

}

@media (max-width: 480px) {
	.wishlist__header h1 {
		font-size: 20px;
	}

	.wishlist-item__name {
		font-size: 10px;
	}

	.wishlist-item__add {
		min-height: 36px;
		padding-right: 8px;
		padding-left: 8px;
		font-size: 9px;
	}

	.wishlist-item__colour-row {
		font-size: 8px;
	}
}

.catalog-shell .product-card__price {
	grid-column: 1 / -1;
	display: block;
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
}

.catalog-shell .product-card__price .price {
	display: block;
	margin: 0;
	font-weight: inherit;
}

.catalog-shell .product-card__price del {
	margin-right: 7px;
	opacity: 0.45;
}

.catalog-shell .woocommerce-pagination {
	display: flex;
	justify-content: center;
	margin-top: 64px;
}

.catalog-shell .woocommerce-pagination ul.page-numbers {
	margin: 0;
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 10px;
	padding: 0;
	margin: 32px 0 0;
	list-style: none;
	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: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ds-color-surface);
	border: 1px solid var(--ds-color-border);
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 40px;
}

.single-product div.product .images img,
.single-product div.product .woocommerce-product-gallery__image img {
	border-radius: var(--ds-radius);
}

.single-product div.product .summary {
	padding: 28px;
	background: var(--ds-color-surface);
	border: 1px solid var(--ds-color-border);
	border-radius: var(--ds-radius);
}

.single-product div.product .product_title {
	font-size: clamp(2rem, 3vw, 3rem);
	margin-bottom: 16px;
}

.product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.product-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(184, 92, 56, 0.08);
	color: var(--ds-color-text);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.product-badge--accent {
	background: var(--ds-color-accent);
	color: #fff;
}

.single-product div.product .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.single-product div.product .price .amount {
	font-weight: 700;
}

.single-product div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0;
}

.single-product div.product .quantity {
	max-width: 110px;
}

.product-trust {
	display: grid;
	gap: 12px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--ds-color-border);
}

.product-trust__item {
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(18, 18, 18, 0.08);
}

.product-trust__item strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.95rem;
}

.product-trust__item p {
	margin: 0;
	font-size: 0.92rem;
	max-width: none;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 12px;
	padding: 0;
	margin: 40px 0 16px;
	list-style: none;
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}

.single-product .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--ds-color-surface);
	border: 1px solid var(--ds-color-border);
}

.single-product .related.products {
	margin-top: 56px;
}

.single-product .related.products > h2 {
	margin-bottom: 24px;
}

/* Product page — follows the airy editorial layout used by Diverse. */
.site-topbar--product .site-topbar__inner { min-height: 56px; padding: 15px 24px; }
.site-topbar--product .site-topbar__message { font-size: 1rem; }
.site-sale-strip { display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 55px; border-bottom: 1px solid #e5e5e5; color: #ed2626; font-size: .95rem; font-weight: 700; }
.site-sale-strip span { width: 18px; height: 18px; border-radius: 50%; background: #ff6c67; }
.site-sale-strip b { margin-left: 6px; color: #111; font-size: 1.6rem; font-weight: 400; line-height: 1; }
.product-navigation .hero-reference__topline { height: 54px; }
.product-navigation .hero-reference__menu-list { justify-content: space-between; gap: 20px; }
.product-navigation .hero-reference__menu-link { font-size: clamp(.72rem, .82vw, .94rem); text-align: center; white-space: normal; }
.ds-product { max-width: 1920px; margin: 0 auto; padding: 26px 24px 90px; }
.ds-product__grid { display: grid; grid-template-areas: "thumb visual breadcrumbs" "thumb visual summary"; grid-template-columns: 104px minmax(300px, 420px) minmax(390px, 1fr); grid-template-rows: min-content 1fr; gap: 0 18px; align-items: start; }
.ds-product__breadcrumbs { grid-area: breadcrumbs; min-width: 0; padding: 22px clamp(28px, 5vw, 115px) 18px 82px; overflow: hidden; color: #777; font-size: .625rem; font-weight: 500; line-height: 1.8; letter-spacing: .04em; text-overflow: ellipsis; white-space: nowrap; }
.ds-product__breadcrumbs a, .ds-product__breadcrumbs strong { color: inherit; font-weight: inherit; text-decoration: none; }
.ds-product__breadcrumb-home-mobile { display: none; }
.ds-product__breadcrumbs a:hover { color: #111; }
.ds-product__breadcrumbs > span { display: inline-block; width: 7px; height: 7px; margin: 0 12px 1px 9px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.ds-product__thumbs { grid-area: thumb; grid-row: 1 / span 2; position: relative; display: grid; grid-template-rows: minmax(0, 540px) auto; gap: 14px; min-height: 0; }
.ds-product__thumb-viewport { position: relative; display: grid; align-content: start; gap: 12px; max-height: 540px; overflow: auto; scrollbar-width: none; scroll-behavior: smooth; }
.ds-product__thumb-viewport::-webkit-scrollbar { display: none; }
.ds-product__thumb-viewport button { position: relative; z-index: 1; display: block; width: 100%; height: 168px; padding: 0; overflow: hidden; background: #f2efec; border: 0; cursor: pointer; }
.ds-product__thumb-viewport img { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.ds-product__thumb-scrollbar { position: absolute; top: 0; right: -13px; width: 1.25px; height: 540px; background: #d6d6d6; pointer-events: none; }
.ds-product__thumb-indicator { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; background: #000; pointer-events: none; transition: height .18s ease, transform .18s ease; }
.ds-product__gallery-arrows { display: flex; justify-content: space-between; padding: 0 8px; }
.ds-product__gallery-arrows button, .ds-gallery-modal__arrows button { display: grid; place-items: center; width: 36px; height: 30px; padding: 0; border: 0; background: transparent; color: #111; cursor: pointer; }
.ds-product__gallery-arrows svg, .ds-gallery-modal__arrows svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-linecap: square; stroke-linejoin: miter; stroke-width: 1.25; }
.ds-product__visual { grid-area: visual; grid-row: 1 / span 2; display: block; width: calc(100% - 32px); margin-left: 32px; min-height: 540px; padding: 0; overflow: hidden; background: #f5f1ee; border: 0; cursor: zoom-in; }
.ds-product__visual img { display: block; width: 100%; height: min(60vw, 580px); min-height: 540px; object-fit: cover; object-position: center top; }
.ds-product__gallery-pagination, .ds-gallery-modal__pagination { display: none; }
.ds-product__thumbs, .ds-product__thumbs *, .ds-product__visual, .ds-product__visual *, .ds-gallery-modal, .ds-gallery-modal * { border-radius: 0 !important; }
.ds-product__thumb-viewport button:focus:not(:focus-visible), .ds-product__visual:focus:not(:focus-visible), .ds-gallery-modal button:focus:not(:focus-visible) { outline: 0; }
.ds-product__thumb-viewport button:focus-visible, .ds-product__visual:focus-visible, .ds-gallery-modal button:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
.ds-gallery-is-open { overflow: hidden; }
.ds-gallery-modal { position: fixed; z-index: 99999; inset: 0; padding: 28px 44px; overflow: hidden; background: #fff !important; opacity: 1 !important; }
.ds-gallery-modal__layout { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: clamp(28px, 10vw, 210px); height: 100%; }
.ds-gallery-modal__close { position: absolute; z-index: 2; top: 24px; right: 40px; width: 42px; height: 42px; border: 0; background: transparent; color: #111; font-size: 2.7rem; font-weight: 200; line-height: 1; cursor: pointer; }
.ds-gallery-modal__thumbs { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 14px; min-height: 0; padding-top: 4px; }
.ds-gallery-modal__viewport { display: grid; align-content: start; gap: 24px; overflow: auto; scrollbar-width: none; }
.ds-gallery-modal__viewport::-webkit-scrollbar { display: none; }
.ds-gallery-modal__scrollbar { position: absolute; top: 4px; right: -13px; bottom: 48px; width: 1.25px; background: #d6d6d6; pointer-events: none; }
.ds-gallery-modal__indicator { position: absolute; top: 0; left: 0; width: 100%; background: #000; transition: height .18s ease, transform .18s ease; }
.ds-gallery-modal__viewport button { display: block; width: 100%; padding: 0; border: 0; background: #f2efec; cursor: pointer; }
.ds-gallery-modal .ds-gallery-modal__viewport button.is-active { outline: 2px solid #111; outline-offset: -2px; }
.ds-gallery-modal__viewport img { display: block; width: 100%; height: auto; object-fit: cover; pointer-events: none; }
.ds-gallery-modal__arrows { display: flex; justify-content: space-between; padding: 0 8px; }
.ds-gallery-modal__arrows button { height: 34px; }
.ds-gallery-modal__image { position: relative; left: -32px; align-self: center; justify-self: center; display: block; max-width: min(72vw, 760px); max-height: calc(100vh - 56px); padding: 0; overflow: hidden; border: 0; background: #f3f1ef; cursor: zoom-in; }
.ds-gallery-modal__image img { display: block; max-width: min(72vw, 760px); max-height: calc(100vh - 56px); width: auto; height: auto; object-fit: contain; }
.ds-gallery-modal__lens { position: absolute; z-index: 1; display: none; width: min(20vw, 260px); aspect-ratio: 1; pointer-events: none; background-repeat: no-repeat; box-shadow: 0 2px 10px rgb(0 0 0 / .16); }
.ds-gallery-modal.is-lens-active .ds-gallery-modal__image { cursor: zoom-out; }
.ds-gallery-modal.is-lens-active .ds-gallery-modal__lens { display: block; }
.ds-product__summary { grid-area: summary; width: 100%; min-width: 0; padding: 0 clamp(28px, 5vw, 115px) 0 82px; }
.ds-product__labels { display: flex; flex-wrap: wrap; gap: 8px; min-height: 29px; }
.ds-product__label { display: inline-flex; align-items: center; min-height: 29px; padding: 5px 12px; border: 1px solid #dedede; border-radius: 999px; background: #fff; color: #111; font-size: .7rem; font-weight: 500; line-height: 1; }
.ds-product__label--accent { border-color: #ed2626; background: #ed2626; color: #fff; }
.ds-product__title-row { display: grid; grid-template-columns: minmax(0, 1fr) 90px; gap: 24px; align-items: center; margin-top: 16px; }
.ds-product__title-copy { min-width: 0; }
.ds-product__title-row h1 { margin: 0; font-size: 1.125rem; font-weight: 500; line-height: 1.4; text-transform: uppercase; }
.ds-product__title-row p { margin: 2px 0 0; overflow-wrap: anywhere; color: #999; font-size: .625rem; line-height: 1.8; letter-spacing: .04em; }
.ds-product__actions { box-sizing: border-box; display: grid; grid-template-columns: 1fr 1fr; width: 90px; height: 42px; padding: 0 4px; border: 1px solid #dedede; border-radius: 999px; background: #fff; }
.ds-product__actions button { display: grid; place-items: center; min-width: 0; padding: 0; border: 0; background: transparent; color: #111; cursor: pointer; }
.ds-product__actions button + button { border-left: 1px solid #dedede; }
.ds-product__actions svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.ds-product__actions button:hover { color: #888; }
.ds-product__actions button:focus-visible { outline: 2px solid #111; outline-offset: 4px; border-radius: 999px; }
.ds-share-is-open { overflow: hidden; }
.ds-share-dialog { box-sizing: border-box; width: min(560px, calc(100% - 32px)); max-width: none; margin: auto; padding: 0; overflow: visible; border: 0; background: transparent; color: #111; }
.ds-share-dialog::backdrop { background: rgb(17 17 17 / .48); }
.ds-share-dialog__panel { box-sizing: border-box; width: 100%; padding: 42px 48px 44px; background: #fff; box-shadow: 0 18px 60px rgb(0 0 0 / .16); }
.ds-share-dialog__header { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ds-share-dialog__header h2 { margin: 0; font-size: 1.65rem; font-weight: 400; line-height: 1.25; }
.ds-share-dialog__close { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; margin: -10px -10px 0 0; padding: 0; border: 0; background: transparent; color: #111; cursor: pointer; }
.ds-share-dialog__close svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.ds-share-dialog__body { margin-top: 38px; }
.ds-share-dialog__label, .ds-share-dialog__channels-title { display: block; margin: 0 0 10px; font-size: .69rem; font-weight: 500; line-height: 1.3; letter-spacing: .08em; text-transform: uppercase; }
.ds-share-dialog__copy-row { box-sizing: border-box; display: grid; grid-template-columns: minmax(0, 1fr) 54px; height: 58px; border: 1px solid #d8d8d8; border-radius: 999px; background: #fff; }
.ds-share-dialog__copy-row input { min-width: 0; height: 100%; padding: 0 4px 0 20px; overflow: hidden; border: 0; border-radius: 999px 0 0 999px; outline: 0; background: transparent; color: #777; font: inherit; font-size: .82rem; text-overflow: ellipsis; }
.ds-share-dialog__copy-row button { display: grid; place-items: center; width: 54px; height: 100%; padding: 0; border: 0; border-radius: 0 999px 999px 0; background: transparent; color: #111; cursor: pointer; }
.ds-share-dialog__copy-row button:hover { background: #f5f5f5; }
.ds-share-dialog__copy-row button svg { grid-area: 1 / 1; width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; transition: opacity .16s ease, transform .16s ease; }
.ds-share-dialog__check-icon { opacity: 0; transform: scale(.72); }
.ds-share-dialog__copy-row button.is-copied { color: #187b3f; }
.ds-share-dialog__copy-row button.is-copied .ds-share-dialog__copy-icon { opacity: 0; transform: scale(.72); }
.ds-share-dialog__copy-row button.is-copied .ds-share-dialog__check-icon { opacity: 1; transform: scale(1); }
.ds-share-dialog__copy-row button.has-error { color: #b42318; }
.ds-share-dialog__status { min-height: 19px; margin: 8px 18px 0; color: #187b3f; font-size: .72rem; line-height: 1.5; }
.ds-share-dialog__copy-row:has(button.has-error) + .ds-share-dialog__status { color: #b42318; }
.ds-share-dialog__divider { height: 1px; margin: 22px 0 28px; background: #e7e7e7; }
.ds-share-dialog__channels-title { margin-bottom: 16px; }
.ds-share-dialog__channels { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ds-share-dialog__channels a { display: grid; justify-items: center; gap: 8px; min-width: 0; color: #111; font-size: .68rem; line-height: 1.25; text-align: center; text-decoration: none; }
.ds-share-dialog__channel-icon { box-sizing: border-box; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid #d8d8d8; border-radius: 50%; background: #fff; transition: border-color .18s ease, background-color .18s ease, color .18s ease; }
.ds-share-dialog__channel-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.ds-share-dialog__channel-icon img { display: block; width: 28px; height: 28px; object-fit: contain; transition: transform .18s ease; }
.ds-share-dialog__channels a[data-share-channel="whatsapp"] .ds-share-dialog__channel-icon img { width: 32px; height: 32px; }
.ds-share-dialog__channels a:hover .ds-share-dialog__channel-icon { border-color: #111; background: #f7f7f7; }
.ds-share-dialog__channels a:hover .ds-share-dialog__channel-icon img { transform: scale(1.08); }
.ds-share-dialog button:focus-visible, .ds-share-dialog a:focus-visible, .ds-share-dialog input:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
.ds-product__price { margin: 16px 0 38px; font-size: 1.125rem; font-weight: 500; line-height: 1.8; letter-spacing: .04em; }
.ds-product__price del { color: #999; font-size: .72rem; font-weight: 400; }
.ds-product__price ins { color: #ed2626; text-decoration: none; }
.ds-product__field { display: flex; align-items: center; gap: 11px; font-size: .94rem; font-weight: 300; }
.ds-product__field strong { padding: 5px 11px; border: 1px solid #e5e5e5; border-radius: 12px; font-size: .78rem; font-weight: 400; }
.ds-product__field strong:empty { display: none; }
.ds-product__swatches { display: flex; gap: 12px; margin: 18px 0 30px; }
.ds-product__swatches button { width: 82px; height: 112px; padding: 5px; border: 1px solid #e0e0e0; background: #f7f7f7; cursor: pointer; }
.ds-product__swatches button.is-selected { border-color: #111; }
.ds-product__swatches button:last-child { background: #252525; background-clip: content-box; }
.ds-product__swatches img { height: 100%; width: 100%; object-fit: cover; }
.ds-product__select { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.ds-product__attribute { margin-bottom: 36px; }
.ds-product__attribute--size { margin-bottom: 0; }
.ds-product__attribute:not(.ds-product__attribute--color) .ds-product__field { margin-bottom: 17px; }
.ds-product__choices button.is-selected { background: #111; border-color: #111; color: #fff; }
.ds-product__swatches button { display: flex; align-items: center; justify-content: center; font-size: .76rem; text-transform: uppercase; }
.ds-product__swatches button:nth-child(n+3) { background: #eee; }
.ds-product__swatches button,
.ds-product__swatches button:last-child { padding: 5px; background: #f4f4f4 !important; background-clip: padding-box; }
.ds-product__swatches button.has-image { color: transparent; }
.ds-product__swatches button.has-image img { width: 100%; height: 100%; object-fit: contain; }
.ds-product__swatches button { border-radius: 0; }
.ds-product__model-colors { margin-top: 16px; }
.ds-product__model-colors a { box-sizing: border-box; display: flex; align-items: center; justify-content: center; width: 82px; height: 112px; padding: 0; border: 2px solid transparent; background: transparent; }
.ds-product__model-colors a.is-selected { padding: 6px; border-width: 1px; border-color: #d1d1d1; }
.ds-product__model-colors img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.ds-product__model-colors span { padding: 8px; font-size: .75rem; text-align: center; }
.ds-product__swatches button.has-image { box-sizing: border-box; padding: 0 !important; border: 2px solid transparent; background: transparent !important; }
.ds-product__swatches button.has-image.is-selected { padding: 6px !important; border-width: 1px; border-color: #d1d1d1; background: transparent !important; }
.ds-product__form .quantity { margin: 18px 0; }
.ds-product__form .quantity input { max-width: 72px; min-height: 42px; border: 1px solid #ddd; text-align: center; }
.ds-product__form .woocommerce-variation-price { display: none; }
.ds-product__form .stock.in-stock { display: none; }
.ds-product__size-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 15px; margin-bottom: 17px; font-size: 1rem; }
.ds-product__size-heading a { font-size: .68rem; letter-spacing: .06em; text-decoration: underline; }
.ds-product__sizes { display: flex; align-items: center; flex-wrap: wrap; column-gap: 16px; row-gap: 8px; }
.ds-product__sizes button { display: inline-flex; align-items: center; justify-content: center; min-width: 32px; height: 32px; padding: 0 8px; border: 0; background: transparent; color: #111; font-size: .875rem; font-weight: 500; line-height: 1; letter-spacing: .02em; cursor: pointer; }
.ds-product__sizes button.is-selected { box-sizing: border-box; width: auto; min-width: 32px; height: 32px; padding: 0 8px; border: 1px solid #d1d1d1; border-radius: 10px; background: #fff; color: #111; }
.ds-product__size-details { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; margin: -74px 0 28px; color: #aaa; font-size: .73rem; font-weight: 300; line-height: 1.2; letter-spacing: .04em; text-align: right; }
.ds-product__size-table { display: inline-flex; align-items: center; gap: 12px; margin-top: 27px; padding: 0; border: 0; background: transparent; color: #111; font: inherit; font-size: .78rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; cursor: default; }
.ds-product__size-table span { font-size: 1.5rem; font-weight: 300; line-height: .6; }
@media (min-width: 901px) {
	.ds-product__size-details:not(:has(> span)) { margin-bottom: 70px; }
}
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button { box-sizing: border-box; float: none; display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; height: 60px; min-height: 60px; margin: 24px 0 32px; padding: 0 18px; border: 2px solid #111; border-radius: 999px; background: #fff; color: #111; font-size: .78rem; font-weight: 500; line-height: 1.2; letter-spacing: .03em; text-decoration: none; cursor: pointer; transition: border-color .2s ease, color .2s ease; }
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button:hover:not(:disabled):not(.disabled) { border-color: #aaa; background: #fff; color: #aaa; text-decoration: none; }
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button:disabled,
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button.disabled { border-color: #aaa; background: #fff; color: #aaa; cursor: not-allowed; }
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button.is-loading { color: transparent; cursor: wait; pointer-events: none; position: relative; }
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button.is-loading::after { content: ''; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -10px 0 0 -10px; border: 2px solid #d1d1d1; border-top-color: #111; border-radius: 50%; animation: ds-cart-spinner .65s linear infinite; }
.ds-product__cart-arrow { display: block; flex: 0 0 auto; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: square; stroke-linejoin: miter; stroke-width: 1.25; transition: transform 180ms ease; }
.ds-product__cart-arrow[hidden] { display: none; }
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button.is-in-cart:hover .ds-product__cart-arrow,
.woocommerce .ds-product__form button.ds-product__add.single_add_to_cart_button.is-in-cart:focus-visible .ds-product__cart-arrow { transform: translateX(5px); }
@keyframes ds-cart-spinner { to { transform: rotate(360deg); } }
.ds-product__cart-message { margin: -16px 0 32px; color: #a10000; font-size: .82rem; line-height: 1.45; }
.ds-product__accordions { width: min(70%, 1100px); margin-top: clamp(72px, 8vw, 128px); }
.ds-product__accordions details { border-bottom: 1px solid #e5e5e5; }
.ds-product__accordions summary { display: flex; justify-content: space-between; padding: 16px 0; list-style: none; cursor: pointer; font-size: 20px; line-height: 1.4; }
.ds-product__accordions summary::-webkit-details-marker { display: none; }
.ds-product__accordions summary span { transition: transform .2s ease; }
.ds-product__accordions details[open] summary span { transform: rotate(180deg); }
.ds-product__accordion-content { padding: 0 0 30px; color: #171717; font-size: .92rem; line-height: 1.55; }
.ds-product__accordion-content > :first-child { margin-top: 0; }
.ds-product__accordion-content > :last-child { margin-bottom: 0; }
.ds-product__accordions p { max-width: 100%; margin: 0 0 20px; font-size: .92rem; line-height: 1.6; }
.ds-product__description { padding-bottom: 24px; font-size: 16px; line-height: 1.5; }
.ds-product__description p { margin: 0; font-size: 16px; line-height: 1.5; }
.ds-product__composition small,
.ds-product__delivery-grid small { display: block; margin-bottom: 6px; color: #999; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.ds-product__composition-section + .ds-product__composition-section { margin-top: 24px; }
.ds-product__composition p { font-size: 1rem; text-transform: uppercase; }
.ds-product__care-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 22px; padding-top: 8px; }
.ds-product__care-item { display: grid; align-content: start; gap: 12px; min-width: 0; }
.ds-product__care-icon { display: block; width: 30px; height: 42px; object-fit: contain; background: transparent; filter: none; mix-blend-mode: normal; opacity: 1; }
.ds-product__care-item span { max-width: 150px; font-size: .82rem; line-height: 1.45; }
.ds-product__delivery-grid { display: grid; grid-template-columns: minmax(150px, .75fr) minmax(220px, 1.25fr); gap: 32px; }
.ds-product__delivery-grid ul { margin: 0; padding-left: 18px; font-size: .78rem; line-height: 1.45; }
.ds-product__delivery-note { margin-top: 18px !important; color: #555; font-size: .78rem !important; }
.ds-product__returns p { max-width: 100%; }

@media (max-width: 980px) {
	.ds-product { padding: 20px 16px 60px; }
	.ds-product__grid { grid-template-columns: 92px minmax(280px, 1fr) minmax(330px, .9fr); gap: 0 12px; }
	.ds-product__breadcrumbs { padding: 18px 12px 14px 24px; }
	.ds-product__thumbs { grid-template-rows: minmax(0, 520px) auto; gap: 10px; }
	.ds-product__thumb-viewport { max-height: 520px; gap: 10px; }
	.ds-product__thumb-scrollbar { height: 520px; }
	.ds-product__thumb-viewport button { height: 160px; }
	.ds-product__visual, .ds-product__visual img { min-height: 520px; }
	.ds-product__visual { width: 100%; margin-left: 0; }
	.ds-product__summary { padding: 0 12px 0 24px; }
	.ds-product__accordions { width: 75%; margin-top: 72px; }
}

@media (max-width: 720px) {
	.product-navigation { display: none; }
	.site-topbar--product .site-topbar__inner { min-height: 46px; padding: 11px 16px; }
	.site-topbar--product .site-topbar__message { font-size: .78rem; }
	.site-sale-strip { min-height: 42px; gap: 8px; font-size: .65rem; }
	.site-sale-strip span { width: 11px; height: 11px; }
	.ds-product { padding-right: 16px; padding-left: 16px; }
	.ds-product__grid { position: relative; grid-template-areas: "breadcrumbs" "visual" "summary"; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto auto; gap: 0; }
	.ds-product__breadcrumbs { padding: 0 0 12px; font-size: .65rem; }
	.ds-product__breadcrumb-home-full,
	.ds-product__breadcrumbs > .ds-product__breadcrumb-product-divider,
	.ds-product__breadcrumbs > strong[aria-current="page"] { display: none; }
	.ds-product__breadcrumb-home-mobile { display: inline; }
	.ds-product__breadcrumbs > span { width: 6px; height: 6px; margin-right: 7px; margin-left: 5px; }
	.ds-product__thumbs { display: none; }
	.ds-product__visual { position: relative; grid-row: auto; width: calc(100% + 32px); margin-left: -16px; touch-action: pan-y; }
	.ds-product__visual, .ds-product__visual img { min-height: 430px; height: 130vw; max-height: 720px; }
	.ds-product__visual > [data-product-main-image],
	.ds-gallery-modal__image > img:not(.ds-gallery-transition-image) { position: relative; z-index: 1; will-change: transform; }
	.ds-gallery-transition-image { position: absolute !important; z-index: 1; inset: 0; margin: 0; pointer-events: none; will-change: transform; }
	.ds-product__gallery-pagination,
	.ds-gallery-modal__pagination { position: absolute; z-index: 2; right: 20px; bottom: 22px; left: 20px; display: flex; align-items: center; gap: 8px; pointer-events: none; }
	.ds-product__gallery-pagination > span,
	.ds-gallery-modal__pagination > span { flex: 1 1 0; height: 2px; background: rgb(255 255 255 / .58); transition: background-color .18s ease; }
	.ds-product__gallery-pagination > span.is-active,
	.ds-gallery-modal__pagination > span.is-active { height: 3px; background: #fff; }
	.ds-product__summary { grid-column: 1 / -1; padding: 22px 0 0; }
	.ds-product__title-row { display: block; }
	.ds-product__actions { position: absolute; z-index: 3; top: 40px; right: -16px; width: 90px; box-shadow: 0 1px 4px rgb(0 0 0 / .06); }
	.ds-product__accordions { width: 100%; margin-top: 48px; }
	.ds-product__care-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ds-product__delivery-grid { grid-template-columns: 1fr; gap: 28px; }
	.ds-product__price { margin: 16px 0 32px; }
	.ds-product__sizes { gap: 6px; }
	.ds-product__size-details { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 6px 18px; align-items: center; margin: 22px 0 28px; text-align: right; }
	.ds-product__size-details > span { grid-column: 2; }
	.ds-product__size-table { grid-column: 1; grid-row: 1 / span 2; justify-self: start; margin-top: 0; text-align: left; }
}

@media (max-width: 720px) {
	.ds-share-dialog { width: 100%; max-height: calc(100% - 36px); margin: auto 0 0; overflow: auto; }
	.ds-share-dialog__panel { padding: 28px 22px max(30px, env(safe-area-inset-bottom)); }
	.ds-share-dialog__header h2 { font-size: 1.35rem; }
	.ds-share-dialog__body { margin-top: 26px; }
	.ds-share-dialog__copy-row { height: 54px; }
	.ds-share-dialog__channels { gap: 8px; }
	.ds-share-dialog__channel-icon { width: 46px; height: 46px; }
	.ds-gallery-modal { padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom)); }
	.ds-gallery-modal__layout { display: grid; grid-template-columns: 1fr; place-items: center; height: 100%; }
	.ds-gallery-modal__thumbs { display: none; }
	.ds-gallery-modal__close { top: max(22px, calc(env(safe-area-inset-top) + 6px)); right: 22px; width: 44px; height: 44px; font-size: 2.2rem; }
	.ds-gallery-modal__image { left: 0; display: block; width: 100%; height: 100%; max-width: none; max-height: none; touch-action: pan-y; cursor: zoom-out; }
	.ds-gallery-modal__image img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; object-position: center top; }
	.ds-gallery-modal__lens { display: none !important; }
	.ds-gallery-modal__pagination { right: 20px; bottom: 22px; left: 20px; }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	margin-bottom: 24px;
	padding: 16px 18px;
	border-radius: 14px;
	border-top: 0;
	background: var(--ds-color-surface);
}

.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce-checkout .col2-set {
	padding: 24px;
	background: var(--ds-color-surface);
	border: 1px solid var(--ds-color-border);
	border-radius: var(--ds-radius);
}

/* Cart — rebuilt around the supplied Diverse reference. */
body.woocommerce-cart {
	--ds-cart-border: #e1e1e1;
	--ds-cart-muted: #b6b6b6;
	background: #fff;
}

body.woocommerce-cart .site-topbar,
body.woocommerce-cart .site-sale-strip {
	display: none;
}

body.woocommerce-cart .product-navigation .hero-reference__topline {
	height: 46px;
}

body.woocommerce-cart .product-navigation .hero-reference__menu-list,
body.woocommerce-cart .product-navigation .hero-reference__menu .mega-menu-wrap .mega-menu {
	justify-content: flex-start;
	gap: 48px;
}

@media (min-width: 721px) {
	body.woocommerce-cart .product-navigation .hero-reference__menu-list,
	body.woocommerce-cart .product-navigation .hero-reference__menu .mega-menu-wrap .mega-menu {
		padding-right: 16px;
		padding-left: 16px;
	}
}

body.woocommerce-cart .cart-page {
	padding: 0 0 96px;
}

body.woocommerce-cart .cart-page > .container {
	width: min(calc(100% - 32px), 1920px);
	max-width: none;
}

body.woocommerce-cart .cart-page article,
body.woocommerce-cart .cart-page .entry-content {
	width: 100%;
	max-width: none;
}

body.woocommerce-cart .cart-page .woocommerce-message {
	display: flex;
	width: max-content;
	max-width: 100%;
	align-items: center;
	gap: 16px;
	margin: 0 0 22px;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none !important;
	background: transparent;
	color: #4f4f4f;
	font-size: 0.68rem;
	line-height: 1.4;
}

body.woocommerce-cart .cart-page .woocommerce-message:focus,
body.woocommerce-cart .cart-page .woocommerce-message:focus-visible {
	outline: none !important;
}

body.woocommerce-cart .cart-page .woocommerce-message::before,
body.woocommerce-cart .cart-page .woocommerce-message::after {
	display: none !important;
	content: none !important;
}

body.woocommerce-cart .cart-page .woocommerce-message .restore-item {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	justify-content: center;
	padding: 5px 13px;
	border: 1px solid #171717;
	border-radius: 999px;
	color: #171717;
	font-size: 0.62rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

body.woocommerce-cart .cart-page .woocommerce-message .restore-item:hover,
body.woocommerce-cart .cart-page .woocommerce-message .restore-item:focus-visible {
	background: #171717;
	color: #fff;
}

.cart-page__breadcrumb {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-top: 27px;
	margin-bottom: 24px;
	color: #656565;
	font-size: 0.68rem;
	letter-spacing: 0.045em;
}

.cart-page__breadcrumb span {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.cart-page__breadcrumb strong {
	color: #171717;
	font-weight: 500;
}

.cart-page__title {
	margin: 0 0 13px;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0;
}

.diverse-cart {
	width: 100%;
}

.diverse-cart__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.95fr) minmax(340px, 1fr);
	gap: clamp(58px, 5.6vw, 92px);
	align-items: start;
}

.diverse-cart__columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 224px 300px;
	align-items: center;
	min-height: 27px;
	color: #d0d0d0;
	font-size: 0.57rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.diverse-cart__columns span:nth-child(2) {
	text-align: center;
}

.diverse-cart__columns span:last-child {
	text-align: right;
}

.diverse-cart__items {
	display: grid;
	gap: 14px;
}

.diverse-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 224px 300px;
	grid-template-rows: auto min-content;
	align-items: center;
	min-height: 203px;
	column-gap: 0;
}

.diverse-cart-item__product {
	display: grid;
	grid-template-columns: 145px minmax(185px, 1fr);
	align-self: stretch;
	gap: 30px;
	min-width: 0;
}

.diverse-cart-item__image {
	display: block;
	width: 145px;
	height: 203px;
	overflow: hidden;
	background: #f3f1ef;
}

.diverse-cart-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.diverse-cart-item__details {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	min-width: 0;
	padding: 0;
}

.diverse-cart-item__name {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.diverse-cart-item__name a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.diverse-cart-item__properties {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	font-size: 0.52rem;
	font-weight: 500;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.diverse-cart-item__size {
	display: inline-flex;
	min-width: 19px;
	height: 24px;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
}

.diverse-cart-item__colour {
	display: inline-block;
	width: 24px;
	height: 24px;
	padding: 4px;
	border: 1px solid #d9d9d9;
	border-radius: 50%;
	background: content-box var(--cart-item-colour);
}

.diverse-cart-item__property {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 24px;
	padding: 0 7px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
}

.diverse-cart-item__property small {
	color: #949494;
	font-size: inherit;
}

.diverse-cart-item__actions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 106px;
	height: 38px;
	margin-top: 20px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	border-radius: 20px;
}

.diverse-cart-item__favourite,
.diverse-cart-item__remove {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	color: #111;
	cursor: pointer;
}

.diverse-cart-item__remove {
	border-left: 1px solid #e5e5e5;
}

.diverse-cart-item__favourite:hover,
.diverse-cart-item__remove:hover,
.diverse-cart-item__favourite:focus-visible,
.diverse-cart-item__remove:focus-visible {
	background: #f6f6f6;
}

.diverse-cart-item__favourite svg,
.diverse-cart-item__remove svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.diverse-cart-item__favourite[aria-pressed="true"] svg {
	fill: #111;
}

.diverse-cart-item__quantity-area {
	display: grid;
	justify-items: center;
	gap: 10px;
	width: 224px;
}

.diverse-cart-item__quantity {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 224px;
	height: 59px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	border-radius: 30px;
}

.diverse-cart-item__stock-message {
	width: 100%;
	margin: 0;
	color: #ff8a4c;
	font-size: 0.7rem;
	line-height: 1.4;
	text-align: center;
}

.diverse-cart-item__stock-message[hidden] {
	display: none;
}

.diverse-cart-item__quantity button,
.diverse-cart-item__quantity input {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	color: #111;
	font: inherit;
	font-size: 1rem;
	text-align: center;
}

.diverse-cart-item__quantity button {
	cursor: pointer;
}

.diverse-cart-item__quantity button:first-child {
	color: #b5b5b5;
}

.diverse-cart-item__quantity button:hover,
.diverse-cart-item__quantity button:focus-visible {
	background: #f6f6f6;
}

.diverse-cart-item__quantity input {
	border-right: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
	appearance: textfield;
	-moz-appearance: textfield;
}

.diverse-cart-item__quantity input::-webkit-inner-spin-button,
.diverse-cart-item__quantity input::-webkit-outer-spin-button {
	margin: 0;
	appearance: none;
}

.diverse-cart-item__price {
	justify-self: end;
	font-size: 0.68rem;
	font-weight: 500;
	white-space: nowrap;
}

.diverse-cart-item__price del,
.diverse-cart-item__price ins {
	display: block;
	text-align: right;
}

.diverse-cart-item__price ins {
	text-decoration: none;
}

.diverse-cart__summary {
	position: sticky;
	top: 18px;
	min-width: 0;
	padding-top: 0;
}

.diverse-cart__summary h2 {
	margin: 5px 0 35px;
	font-size: 1.04rem;
	font-weight: 400;
	line-height: 1.25;
}

.diverse-cart-summary__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	font-size: 0.8rem;
}

.diverse-cart-summary__row strong {
	font-weight: 500;
	white-space: nowrap;
}

.diverse-cart-summary__row--discount {
	margin: -15px 0 22px;
	font-size: 0.8rem;
}

.diverse-cart-summary__row--discount .woocommerce-remove-coupon {
	margin-left: 8px;
	color: #777;
	font-size: 0.68rem;
}

.diverse-cart-summary__row--total {
	min-height: 63px;
	margin-top: 28px;
	border-top: 1px solid var(--ds-cart-border);
	border-bottom: 1px solid var(--ds-cart-border);
	font-size: 0.96rem;
}

.diverse-cart-summary__row--total span,
.diverse-cart-summary__row--total strong {
	font-weight: 500;
}

.diverse-cart-summary__coupon {
	margin: 20px 0 10px;
	border: 1px solid var(--ds-cart-border);
	border-radius: 9px;
}

.diverse-cart-summary__coupon summary,
.diverse-cart-summary__delivery summary {
	display: flex;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 17px;
	list-style: none;
	font-size: 0.8rem;
	cursor: pointer;
}

.diverse-cart-summary__coupon summary::-webkit-details-marker,
.diverse-cart-summary__delivery summary::-webkit-details-marker {
	display: none;
}

.diverse-cart-summary__coupon summary span,
.diverse-cart-summary__delivery summary span {
	width: 11px;
	height: 11px;
	margin-right: 4px;
	border-right: 1.5px solid #111;
	border-bottom: 1.5px solid #111;
	transform: rotate(45deg) translateY(-3px);
	transition: transform 180ms ease;
}

.diverse-cart-summary__coupon[open] summary span,
.diverse-cart-summary__delivery[open] summary span {
	transform: rotate(225deg) translate(-3px, -3px);
}

.diverse-cart-summary__coupon-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	padding: 0 16px 16px;
}

.diverse-cart-summary__coupon-form input,
.diverse-cart-summary__coupon-form button {
	min-height: 38px;
	border: 1px solid #d4d4d4;
	border-radius: 7px;
	background: #fff;
	font: inherit;
}

.diverse-cart-summary__coupon-form input {
	min-width: 0;
	padding: 0 10px;
}

.diverse-cart-summary__coupon-form button {
	padding: 0 12px;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.diverse-cart-summary__checkout,
.diverse-cart-empty__button {
	display: flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 2px solid #111;
	border-radius: 30px;
	background: #fff;
	font-size: 0.8rem;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease;
}

.diverse-cart-summary__checkout:hover,
.diverse-cart-summary__checkout:focus-visible,
.diverse-cart-empty__button:hover,
.diverse-cart-empty__button:focus-visible {
	background: #111;
	color: #fff;
}

.diverse-cart-summary__delivery {
	margin-top: 17px;
	border-bottom: 1px solid var(--ds-cart-border);
}

.diverse-cart-summary__delivery summary {
	min-height: 52px;
	padding-right: 17px;
	padding-left: 17px;
}

.diverse-cart-summary__delivery p {
	margin: 0;
	padding: 4px 17px 18px;
	font-size: 0.7rem;
	line-height: 1.45;
}

.diverse-cart.is-updating,
.diverse-cart-region.is-updating {
	opacity: 0.62;
	pointer-events: none;
}

.diverse-cart-region {
	transition: opacity 140ms ease;
}

.diverse-cart__live-status {
	margin: 0 0 18px;
	padding: 11px 14px;
	border: 1px solid #e5c2c2;
	background: #fff7f7;
	color: #6d2929;
	font-size: 13px;
	line-height: 1.4;
}

.diverse-cart__live-status[hidden] {
	display: none;
}

.diverse-cart-empty {
	display: grid;
	justify-items: center;
	gap: 28px;
	min-height: 340px;
	align-content: start;
	padding-top: 36px;
	text-align: center;
}

.diverse-cart-empty p {
	margin: 0;
	font-size: 1.2rem;
}

.diverse-cart-empty__button {
	width: min(100%, 340px);
	min-height: 66px;
}

@media (max-width: 1440px) {
	.diverse-cart__layout {
		grid-template-columns: minmax(0, 1.82fr) minmax(320px, 1fr);
		gap: 72px;
	}

	.diverse-cart__columns,
	.diverse-cart-item {
		grid-template-columns: minmax(0, 1fr) 175px 250px;
	}

	.diverse-cart-item__product {
		grid-template-columns: 116px minmax(160px, 1fr);
		gap: 24px;
	}

	.diverse-cart-item__image {
		width: 116px;
		height: 163px;
	}

	.diverse-cart-item {
		min-height: 163px;
	}

	.diverse-cart-item__quantity {
		width: 175px;
		height: 46px;
	}

	.diverse-cart-item__quantity-area {
		width: 175px;
	}

}

@media (max-width: 1120px) {
	.diverse-cart__layout {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.diverse-cart__summary {
		position: static;
		width: min(100%, 680px);
		margin-left: auto;
	}
}

@media (max-width: 720px) {
	body.woocommerce-cart .cart-page > .container {
		width: min(calc(100% - 32px), 1920px);
	}

	body.woocommerce-cart .cart-page {
		padding-bottom: 64px;
	}

	.cart-page__title {
		margin-top: 18px;
		font-size: 2rem;
	}

	.diverse-cart__columns {
		display: none;
	}

	.diverse-cart__items {
		gap: 30px;
	}

	.diverse-cart-item {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: auto auto auto;
		gap: 16px 14px;
		min-height: 0;
		padding-bottom: 30px;
		border-bottom: 1px solid var(--ds-cart-border);
	}

	.diverse-cart-item__product {
		grid-column: 1 / -1;
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 18px;
	}

	.diverse-cart-item__image {
		width: 112px;
		height: 156px;
	}

	.diverse-cart-item__details {
		padding: 2px 0 0;
	}

	.diverse-cart-item__name {
		font-size: 0.85rem;
	}

	.diverse-cart-item__properties {
		gap: 8px;
		margin-top: 18px;
	}

	.diverse-cart-item__size,
	.diverse-cart-item__colour,
	.diverse-cart-item__property {
		height: 32px;
		min-height: 32px;
	}

	.diverse-cart-item__colour {
		width: 32px;
	}

	.diverse-cart-item__actions {
		width: 120px;
		height: 44px;
		margin-top: 14px;
	}

	.diverse-cart-item__favourite svg,
	.diverse-cart-item__remove svg {
		width: 21px;
		height: 21px;
	}

	.diverse-cart-item__quantity-area {
		grid-column: 1;
		grid-row: 2;
		width: 176px;
		justify-items: start;
	}

	.diverse-cart-item__quantity {
		width: 176px;
		height: 52px;
	}

	.diverse-cart-item__stock-message {
		width: min(260px, calc(100vw - 32px));
		font-size: 0.78rem;
		text-align: left;
	}

	.diverse-cart-item__quantity button,
	.diverse-cart-item__quantity input {
		font-size: 1rem;
	}

	.diverse-cart-item__price {
		grid-column: 2;
		grid-row: 2;
		font-size: 0.9rem;
	}

	.diverse-cart__summary h2 {
		margin-bottom: 30px;
	}

	.diverse-cart-summary__row--total {
		font-size: 1.05rem;
	}

	.diverse-cart-summary__coupon summary,
	.diverse-cart-summary__delivery summary {
		min-height: 70px;
		padding-right: 18px;
		padding-left: 18px;
	}

	.diverse-cart-summary__coupon-form {
		grid-template-columns: 1fr;
	}

	.diverse-cart-summary__checkout {
		min-height: 68px;
		font-size: 0.85rem;
	}
}

/* Checkout — adapted from the supplied Diverse checkout reference. */
body.woocommerce-checkout:not(.woocommerce-order-received) {
	--ds-checkout-border: #d8d8d8;
	--ds-checkout-muted: #727272;
	--ds-checkout-gutter: clamp(24px, 5vw, 96px);
	background: #fff;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .site-topbar,
body.woocommerce-checkout:not(.woocommerce-order-received) .site-sale-strip,
body.woocommerce-checkout:not(.woocommerce-order-received) .product-navigation,
body.woocommerce-checkout:not(.woocommerce-order-received) .site-actions,
body.woocommerce-checkout:not(.woocommerce-order-received) .site-footer {
	display: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .site-header {
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	background: #fff;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .site-header__inner {
	justify-content: center;
	width: 100%;
	min-height: 92px;
	padding: 24px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .site-branding {
	align-items: center;
	margin: 0 auto;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .site-branding--reference .site-logo img {
	width: 153px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .checkout-page {
	padding: 24px 0 88px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .checkout-page > .container {
	width: min(calc(100% - (var(--ds-checkout-gutter) * 2)), 1800px);
	max-width: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .checkout-page article,
body.woocommerce-checkout:not(.woocommerce-order-received) .checkout-page .entry-content {
	width: 100%;
	max-width: none;
}

.checkout-page__title {
	margin: 0 0 30px;
	font-size: clamp(1.35rem, 1.5vw, 1.7rem);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout > .wc-block-components-sidebar-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 2fr) minmax(350px, 1fr);
	gap: clamp(52px, 6vw, 120px);
	align-items: start;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__main,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__sidebar {
	box-sizing: border-box;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__main {
	padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__sidebar {
	position: sticky !important;
	top: 32px !important;
	align-self: start;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	min-width: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-step {
	margin: 0 0 42px !important;
	padding: 0 !important;
	border: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-step__heading {
	margin: 0 0 24px !important;
	padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-step__title,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-order-summary__title-text {
	margin: 0 !important;
	color: #171717;
	font-size: clamp(1.15rem, 1.25vw, 1.38rem) !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	letter-spacing: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-step__description {
	max-width: 720px;
	margin: -10px 0 24px !important;
	color: #4c4c4c;
	font-size: 0.76rem !important;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.015em;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-step__container {
	padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 24px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form > * {
	min-width: 0;
	margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form__country,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form__address_1,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form__address_2,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form__email {
	grid-column: 1 / -1;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-text-input,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-blocks-components-select__container {
	position: relative;
	padding-top: 27px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-text-input input,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-blocks-components-select__select,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-combobox .wc-block-components-combobox-control input {
	width: 100%;
	height: 56px !important;
	min-height: 56px !important;
	padding: 0 24px !important;
	border: 1px solid #b7b7b7 !important;
	border-radius: 999px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: #171717 !important;
	font-family: inherit !important;
	font-size: 0.9rem !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-text-input input:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-blocks-components-select__select:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-combobox .wc-block-components-combobox-control input:focus {
	border-color: #171717 !important;
	box-shadow: 0 0 0 1px #171717 !important;
	outline: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-text-input label,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-text-input.is-active label,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-blocks-components-select__label,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-combobox .wc-block-components-combobox-control label {
	position: absolute !important;
	top: 0 !important;
	left: 24px !important;
	z-index: 1;
	max-width: calc(100% - 48px);
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
	background: transparent !important;
	color: #272727 !important;
	font-family: inherit !important;
	font-size: 0.63rem !important;
	font-weight: 600 !important;
	line-height: 18px !important;
	letter-spacing: 0.045em !important;
	text-transform: uppercase;
	pointer-events: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form__address_2-toggle {
	min-height: 56px;
	margin-top: 27px !important;
	padding: 0 24px !important;
	border: 1px solid #b7b7b7 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #777 !important;
	font-size: 0.88rem !important;
	text-align: left;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__contact-fields .wc-block-components-address-form {
	display: block;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__contact-fields .wc-block-components-text-input {
	margin-bottom: 16px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkbox {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	margin: 14px 0 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkbox .wc-block-components-checkbox__input {
	position: relative !important;
	display: block !important;
	flex: 0 0 18px !important;
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	min-height: 18px !important;
	margin: 1px 0 0 !important;
	padding: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	border: 1px solid #292929 !important;
	border-radius: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkbox .wc-block-components-checkbox__input:checked {
	background: #171717 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3 8 3 3 7-7' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkbox .wc-block-components-checkbox__input:checked::after {
	display: none;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkbox .wc-block-components-checkbox__mark {
	display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkbox__label,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkbox label {
	color: #353535;
	font-size: 0.78rem !important;
	font-weight: 400 !important;
	line-height: 1.55 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-shipping-rates-control {
	padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option {
	display: grid !important;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: center !important;
	column-gap: 14px;
	min-height: 54px;
	padding: 0 20px !important;
	border: 1px solid #b7b7b7 !important;
	border-radius: 999px !important;
	background: #fff;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option-checked {
	border-color: #171717 !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control--highlight-checked::after,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option::after,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__input:checked::before {
	display: none !important;
	content: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control__option--checked-option-highlighted {
	border-radius: 999px !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__input {
	position: static !important;
	display: block !important;
	flex: 0 0 18px !important;
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	min-height: 18px !important;
	margin: 0 !important;
	padding: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	border: 1px solid #171717 !important;
	border-radius: 50% !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__input:checked {
	background: radial-gradient(circle at center, #171717 0 4px, #fff 4.5px) !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-radio-control__option {
	position: relative !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-radio-control__input {
	position: absolute !important;
	top: 50% !important;
	left: 20px !important;
	transform: translateY(-50%) !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-radio-control__option-layout {
	grid-column: 2;
	align-self: center;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__input:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__input:focus-visible {
	outline: 0 !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option:hover,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option:focus-within,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option:focus-within * {
	border-color: #171717 !important;
	color: #171717 !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__option-layout,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__label-group {
	width: 100% !important;
	min-width: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__label-group {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__label,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__secondary-label {
	position: static !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0.78rem !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-radio-control__secondary-label {
	flex: 0 0 auto;
	text-transform: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-notice-banner {
	padding: 17px 20px !important;
	border: 1px solid #e6b8b8 !important;
	border-radius: 12px !important;
	background: #fff7f7 !important;
	color: #3e2a2a !important;
	font-size: 0.82rem;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-card {
	align-items: center !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-card address {
	flex: 1 1 auto;
	min-width: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-card__edit {
	display: inline-flex !important;
	align-self: center !important;
	align-items: center !important;
	margin: auto 0 auto auto !important;
	padding: 8px 0 8px 20px !important;
	color: #171717 !important;
	line-height: 1.2 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__order-notes {
	margin: -4px 0 28px !important;
	padding: 0 0 28px !important;
	border-bottom: 1px solid #e7e7e7;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__order-notes .wc-block-components-textarea,
body.woocommerce-checkout:not(.woocommerce-order-received) textarea.wc-block-components-textarea {
	height: 96px !important;
	min-height: 96px !important;
	max-height: 96px !important;
	resize: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__terms {
	margin: 0 0 26px !important;
	padding: 0 !important;
	border: 0 !important;
	color: #4a4a4a;
	font-size: 0.78rem;
	line-height: 1.55;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__terms a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__actions {
	margin: 0;
	padding: 0;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__actions_row {
	display: block;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__actions .wc-block-components-button {
	width: 100%;
	min-height: 60px;
	padding: 15px 28px !important;
	border: 2px solid #171717 !important;
	border-radius: 999px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: #171717 !important;
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__actions .wc-block-components-button:hover:not(:disabled) {
	background: #171717 !important;
	color: #fff !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__actions .wc-block-components-button:disabled {
	border-color: #d6d6d6 !important;
	color: #c4c4c4 !important;
	cursor: not-allowed;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-order-summary__title {
	min-height: 0;
	margin: 0;
	padding: 0 0 20px !important;
	border: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-order-summary__title-price,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-order-summary__title-icon {
	display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-order-summary__content {
	border: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout-order-summary-block {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-order-summary {
	margin: 0 !important;
	padding: 8px 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-order-summary-item {
	padding: 16px 0 !important;
	border: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-order-summary-item__image {
	width: 66px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-order-summary-item__image > img {
	width: 66px !important;
	max-width: 66px !important;
	border-radius: 0 !important;
	object-fit: cover;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-order-summary-item__description,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-order-summary-item__total-price {
	font-size: 0.78rem;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-order-summary-item__description .wc-block-components-product-name {
	font-size: 0.82rem !important;
	font-weight: 500 !important;
	line-height: 1.45;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-wrapper {
	padding: 0 !important;
	border: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon {
	margin: 0 !important;
	padding: 18px 0 20px !important;
	border: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon .wc-block-components-panel__button {
	margin-bottom: 8px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon .wc-block-components-panel__content {
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__button {
	width: auto !important;
	min-width: 122px !important;
	min-height: 48px !important;
	margin: 0 !important;
	padding: 0 22px !important;
	border: 1px solid #171717 !important;
	border-radius: 999px !important;
	background: #171717 !important;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-transform: uppercase;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__button:disabled {
	border-color: #e7e7e7 !important;
	background: #e7e7e7 !important;
	color: #9a9a9a !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__form {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-items: end !important;
	gap: 12px !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__input {
	min-width: 0 !important;
	margin: 0 !important;
	padding-top: 18px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__input input {
	height: 48px !important;
	min-height: 48px !important;
	padding: 0 18px !important;
	border: 1px solid #b7b7b7 !important;
	border-radius: 999px !important;
	box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__input label,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__input.is-active label {
	top: 0 !important;
	left: 18px !important;
	font-size: 0.62rem !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-item {
	min-height: 52px;
	padding: 16px 0 !important;
	border: 0 !important;
	font-size: 0.8rem;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-footer-item {
	min-height: 70px;
	margin-top: 8px !important;
	border-top: 1px solid #e7e7e7 !important;
	font-size: 1.25rem !important;
	font-weight: 500 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-item__label,
body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-item__value {
	font-weight: inherit !important;
}

@media (max-width: 1100px) {
	body.woocommerce-checkout:not(.woocommerce-order-received) {
		--ds-checkout-gutter: 28px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout {
		display: block !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout > .wc-block-components-sidebar-layout {
		grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
		gap: 44px;
	}
}

@media (max-width: 860px) {
	body.woocommerce-checkout:not(.woocommerce-order-received) .site-header__inner {
		min-height: 72px;
		padding: 18px 20px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .site-branding--reference .site-logo img {
		width: 132px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .checkout-page {
		padding: 22px 0 64px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout > .wc-block-components-sidebar-layout {
		display: flex !important;
		flex-direction: column;
		gap: 42px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__sidebar {
		position: static !important;
	}
}

@container (max-width: 699px) {
	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__sidebar {
		display: none !important;
	}
}

@media (max-width: 620px) {
	body.woocommerce-checkout:not(.woocommerce-order-received) {
		--ds-checkout-gutter: 16px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .site-menu-trigger {
		display: none !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .site-header__inner {
		display: flex !important;
		justify-content: center !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-radio-control--highlight-checked::after,
	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option::after {
		display: none !important;
		content: none !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option,
	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout-order-summary-block,
	body.woocommerce-checkout:not(.woocommerce-order-received) .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill,
	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-order-summary__content {
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
	}

	.checkout-page__title {
		margin-bottom: 24px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__form {
		grid-template-columns: 1fr !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-totals-coupon__button {
		width: 100% !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-address-form > * {
		grid-column: 1 !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-checkout-step {
		margin-bottom: 34px !important;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-text-input input,
	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-blocks-components-select__select,
	body.woocommerce-checkout:not(.woocommerce-order-received) .wc-block-components-combobox .wc-block-components-combobox-control input {
		height: 52px !important;
		min-height: 52px !important;
	}
}

.shop_table {
	width: 100%;
	border-collapse: collapse;
}

.shop_table th,
.shop_table td {
	padding: 14px 10px;
	border-bottom: 1px solid var(--ds-color-border);
	text-align: left;
}

.woocommerce form .form-row {
	margin-bottom: 16px;
}

.woocommerce-breadcrumb {
	margin-bottom: 24px;
	font-size: 0.92rem;
	opacity: 0.68;
}

.hero--storefront {
	padding-top: 28px;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	gap: 28px;
	align-items: stretch;
}

.hero__content {
	padding: 48px;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 34%),
		linear-gradient(135deg, #e7d6c5 0%, #f7efe5 52%, #dfe3d2 100%);
	border: 1px solid var(--ds-color-border);
	border-radius: 32px;
}

.hero__lead {
	font-size: 1.1rem;
	margin-bottom: 24px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.button--ghost {
	background: transparent;
	color: var(--ds-color-text);
	border: 1px solid var(--ds-color-border);
}

.hero__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.hero-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 200px;
	padding: 26px;
	border-radius: 28px;
	background: var(--ds-color-surface);
	border: 1px solid var(--ds-color-border);
}

.hero-card--tall {
	grid-row: span 2;
	min-height: 420px;
	background: linear-gradient(180deg, rgba(111, 117, 82, 0.2), rgba(18, 18, 18, 0.88));
	color: #fff;
}

.hero-card--accent {
	background: linear-gradient(135deg, #d8c0a8, #efebe2);
}

.hero-card__label,
.collection-card__meta,
.featured-product-card__eyebrow {
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	font-weight: 700;
}

.hero-card__stat {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}

.section-heading {
	display: grid;
	gap: 10px;
	margin-bottom: 28px;
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.collection-card {
	min-height: 280px;
	padding: 28px;
	border-radius: 28px;
	border: 1px solid var(--ds-color-border);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(236, 227, 211, 0.9));
}

.collection-card--dark {
	background: linear-gradient(180deg, rgba(27, 27, 27, 0.88), rgba(95, 103, 74, 0.95));
	color: #fff;
}

.collection-card--image {
	background:
		linear-gradient(180deg, rgba(245, 241, 234, 0.1), rgba(245, 241, 234, 0.2)),
		linear-gradient(140deg, #ede6db 0%, #d7d9cb 100%);
}

.featured-band {
	display: grid;
	gap: 28px;
}

.featured-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.featured-products--reference {
	gap: 48px;
}

.featured-product-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ds-color-border);
	border-radius: 24px;
}

.featured-product-card--reference {
	border: 0;
	border-radius: 0;
}

.featured-product-card__image {
	display: block;
	aspect-ratio: 0.9;
	background: #f0ece4;
}

.featured-product-card--reference .featured-product-card__image {
	background: #f4f0ea;
	aspect-ratio: 0.72;
}

.featured-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-product-card__content {
	padding: 18px;
}

.featured-product-card--reference .featured-product-card__content {
	padding: 18px 0 0;
}

.featured-product-card--reference h3 {
	margin-bottom: 10px;
	font-size: 0.96rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.featured-product-card--reference .featured-product-card__price {
	font-size: 0.95rem;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.featured-product-card__price .amount {
	font-weight: 700;
}

.featured-band--reference {
	padding: clamp(56px, 7vw, 130px) 0;
	overflow: hidden;
}

.reference-product-carousel__head {
	width: min(100% - 64px, 1920px);
	margin: 0 auto clamp(28px, 3vw, 56px);
}

.reference-section-head__arrows button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #121212;
	cursor: pointer;
}

.reference-section-head__arrows svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.25;
}

.reference-section-head__arrows button:hover,
.reference-section-head__arrows button:focus-visible {
	opacity: 0.55;
	outline: 0;
}

.reference-product-carousel__track {
	display: flex;
	gap: clamp(18px, 2.4vw, 48px);
	width: 100%;
	padding: 0 max(32px, calc((100vw - 1920px) / 2));
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
	user-select: none;
}

/* The home-page carousel uses the catalogue card itself, so its gallery,
 * variants, wishlist and typography stay identical to the product list. */
.catalog-shell--carousel {
	padding: 0;
}

.catalog-shell ul.products.reference-product-carousel__track {
	display: flex !important;
	gap: clamp(18px, 2.4vw, 48px);
	width: 100%;
	margin: 0 !important;
	padding: 0 max(32px, calc((100vw - 1920px) / 2)) !important;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}

.catalog-shell ul.products.reference-product-carousel__track li.product.product-card {
	flex: 0 0 clamp(260px, 25vw, 480px);
	scroll-snap-align: start;
}

.reference-product-carousel__track::-webkit-scrollbar {
	display: none;
}

.reference-product-carousel__track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.reference-product-carousel__track .featured-product-card {
	flex: 0 0 clamp(260px, 25vw, 480px);
	scroll-snap-align: start;
}

.featured-product-card__media {
	position: relative;
	overflow: hidden;
}

.reference-product-carousel__track .featured-product-card__image {
	aspect-ratio: 0.77;
	background: #f4f4f4;
}

.reference-product-carousel__track .featured-product-card__content {
	display: grid;
	gap: 6px;
	padding-top: 16px;
}

.reference-product-carousel__track .featured-product-card h3 {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.reference-product-carousel__track .featured-product-card__price {
	font-size: 1rem;
	font-weight: 500;
}

.featured-product-card__quick-options {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 48px;
	padding: 12px 18px;
	background: rgba(255, 255, 255, 0.98);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.featured-product-card:hover .featured-product-card__quick-options,
.featured-product-card:focus-within .featured-product-card__quick-options {
	transform: translateY(0);
	opacity: 1;
}

.featured-product-card__swatches,
.featured-product-card__sizes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.featured-product-card__sizes {
	margin-left: auto;
	justify-content: flex-end;
}

.featured-product-card__swatch {
	display: inline-block;
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	padding: 4px;
	border: 0.75px solid #bfc0bd;
	border-radius: 50%;
	background: var(--featured-product-colour, #777) content-box;
	cursor: pointer;
	appearance: none;
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.featured-product-card__swatch:hover,
.featured-product-card__swatch:focus-visible {
	transform: scale(1.08);
}

.featured-product-card__swatch:focus-visible {
	outline: 2px solid #161616;
	outline-offset: 3px;
}

.featured-product-card__swatch.is-selected {
	box-shadow: 0 0 0 1px #bfc0bd, 0 0 0 4px #fff;
}

.featured-product-card__sizes button {
	padding: 3px 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	min-width: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}

.featured-product-card__sizes button:hover,
.featured-product-card__sizes button:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.featured-product-card__sizes button:disabled {
	color: #a1a19f;
	cursor: not-allowed;
	text-decoration: line-through;
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 28px;
	align-items: start;
}

.story-grid__list {
	display: grid;
	gap: 18px;
}

.story-point {
	padding: 22px;
	border-radius: 20px;
	background: var(--ds-color-surface);
	border: 1px solid var(--ds-color-border);
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(145px, 1fr));
	align-items: flex-start;
	gap: clamp(36px, 5vw, 88px);
}

.site-footer__group {
	display: grid;
	gap: 7px;
}

.site-footer__group p {
	margin: 0 0 4px;
	font-size: 0.82rem;
	font-weight: 700;
}

.site-footer__group a {
	font-size: 0.8rem;
}

.site-footer__group a:hover,
.site-footer__group a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Company pages */
.company-page {
	padding: 38px 0 100px;
	background: #fff;
}

.company-page__breadcrumbs,
.company-page__layout,
.service-page__breadcrumbs,
.service-page__layout,
.privacy-policy__breadcrumbs,
.privacy-policy__layout {
	transition: opacity 160ms ease;
}

.company-page.is-ajax-loading,
.service-page.is-ajax-loading,
.privacy-policy.is-ajax-loading {
	cursor: progress;
}

.company-page.is-ajax-loading .company-page__breadcrumbs,
.company-page.is-ajax-loading .company-page__layout,
.service-page.is-ajax-loading .service-page__breadcrumbs,
.service-page.is-ajax-loading .service-page__layout,
.privacy-policy.is-ajax-loading .privacy-policy__breadcrumbs,
.privacy-policy.is-ajax-loading .privacy-policy__layout {
	opacity: 0.45;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.company-page__breadcrumbs,
	.company-page__layout,
	.service-page__breadcrumbs,
	.service-page__layout,
	.privacy-policy__breadcrumbs,
	.privacy-policy__layout {
		transition: none;
	}
}

.company-page__container {
	width: min(100% - 48px, 1540px);
	margin: 0 auto;
}

.company-page__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 36px;
	color: #777;
	font-size: 0.625rem;
	line-height: 1.4;
}

.company-page__breadcrumbs span {
	width: 6px;
	height: 6px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.company-page__breadcrumbs strong {
	color: #151515;
	font-weight: 600;
}

.company-page__layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1100px);
	justify-content: center;
	gap: clamp(64px, 8vw, 150px);
}

.company-page__aside {
	align-self: start;
}

.company-page__aside > p {
	margin: 0 0 34px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.032em;
}

.company-page__aside nav {
	display: grid;
	gap: 0;
}

.company-page__aside a {
	padding-bottom: 24px;
	color: #343434;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 2;
	letter-spacing: 0.04em;
}

.company-page__aside a.is-active {
	color: #111;
	font-weight: 500;
}

.company-page--about .company-page__content {
	width: min(55.035vw, 1100px);
}

@media (min-width: 981px) {
	.company-page--about .company-page__container,
	.company-page--contact .company-page__container {
		width: min(100% - 48px, 1000px);
	}

	.company-page--about .company-page__layout,
	.company-page--contact .company-page__layout {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 90px;
	}

	.company-page--about .company-page__content,
	.company-page--contact .company-page__content {
		width: 100%;
	}
}

.company-page__content > h1 {
	margin: 0 0 48px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.company-about__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 20px;
	margin-bottom: 48px;
}

.company-about__row img {
	width: 100%;
	aspect-ratio: 31 / 20;
	object-fit: cover;
}

.company-about__row p,
.company-about__closing p,
.company-about__network p,
.company-contact__lead,
.company-contact__details p {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.company-about__row p strong {
	font-weight: 700;
}

.company-about__row p + p {
	margin-top: 18px;
}

.company-about__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 72px 0 50px;
}

.company-about__lead {
	margin-bottom: 0;
}

.company-about__facts div {
	display: grid;
	justify-items: center;
	gap: 12px;
	text-align: center;
}

.company-about__facts strong {
	font-size: 3rem;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.012em;
}

.company-about__facts span {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

.company-about__network {
	margin-top: 0;
}

.company-about__network > p {
	width: 100%;
	max-width: none;
}

.company-about__network h2 {
	margin: 16px 0 8px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.031em;
}

.company-about__brands {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	gap: 0;
	margin-top: 0;
	padding: 0;
}

.company-about__brands img {
	display: block;
	width: 100%;
	height: auto;
	margin: 16px 0;
}

.company-page--about,
.company-page--contact {
	padding-top: 20px;
}

.company-about__closing {
	margin-top: 10px;
	padding: clamp(40px, 6vw, 74px);
	background: #f3f3f1;
}

.company-about__closing h2 {
	margin: 12px 0 22px;
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.045em;
}

.company-about__closing p:not(.company-about__kicker) {
	max-width: 750px;
}

.company-about__kicker {
	font-size: 0.74rem !important;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.company-about__closing a,
.company-contact__operator a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
	border-bottom: 1px solid currentColor;
	font-size: 0.9rem;
	font-weight: 650;
}

.company-contact__sections {
	border-top: 0;
}

.company-contact details {
	border-bottom: 1px solid #e5e5e5;
}

.company-contact summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 64px;
	padding: 16px 0;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.04em;
	cursor: pointer;
	list-style: none;
}

.company-contact summary::-webkit-details-marker {
	display: none;
}

.company-contact summary i {
	width: 12px;
	height: 12px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-3px);
	transition: transform 160ms ease;
}

.company-contact details[open] summary i {
	transform: rotate(225deg) translate(-2px, -2px);
}

.company-contact__details {
	padding: 0 0 30px;
}

.company-contact__details > p {
	max-width: none;
	margin: 0 0 20px;
}

.company-contact__details dl {
	display: grid;
	gap: 4px;
	margin: 0;
}

.company-contact__details dl div {
	display: flex;
	gap: 6px;
}

.company-contact__details dt {
	color: #171717;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.company-contact__details dt::after {
	content: ":";
}

.company-contact__details dd {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.company-contact__details a,
.company-contact__privacy a {
	border-bottom: 1px solid currentColor;
}

.company-contact__missing {
	color: #777;
}

.company-page--contact .company-page__content {
	width: min(55.035vw, 1100px);
}

.company-page--contact .company-page__content > h1 {
	margin-bottom: 48px;
}

.company-contact__form-section {
	margin-top: 24px;
	padding: 24px;
	background: #fafafa;
}

.company-contact__form-section > h2 {
	margin: 14px 0 26px;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
}

.company-contact__form {
	display: grid;
	gap: 20px;
	width: 100%;
	margin: 0;
}

.company-contact__form > label {
	display: grid;
	gap: 6px;
}

.company-contact__form > label > span {
	padding: 0 24px;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.company-contact__form input,
.company-contact__form textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 21px;
	border: 1px solid #999;
	outline: 0;
	background: transparent;
	color: #171717;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.company-contact__form input {
	height: 48px;
	border-radius: 999px;
}

.company-contact__form textarea {
	min-height: 92px;
	resize: vertical;
	border-radius: 24px;
}

.company-contact__form input:focus,
.company-contact__form textarea:focus {
	border-color: #171717;
	box-shadow: 0 0 0 1px #171717;
}

.company-contact__form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	margin-top: 14px;
	padding: 12px 28px;
	border: 2px solid #171717;
	border-radius: 999px;
	background: transparent;
	color: #171717;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease;
}

.company-contact__form button:hover,
.company-contact__form button:focus-visible {
	background: #171717;
	color: #fff;
}

.company-contact__privacy {
	margin-top: 26px;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.55;
	letter-spacing: 0.035em;
}

.company-contact__privacy p {
	max-width: none;
	margin: 8px 0 0;
}

.company-contact__notice {
	max-width: none;
	margin: 0 0 22px;
	padding: 12px 16px;
	font-size: 0.82rem;
	line-height: 1.45;
}

.company-contact__notice--success {
	background: #eef7ee;
}

.company-contact__notice--error {
	background: #fff0f0;
}

.company-contact__honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

/* Customer service pages */
.service-page {
	padding: 20px 0 100px;
	background: #fff;
}

.service-page__container {
	width: min(100% - 48px, 1540px);
	margin: 0 auto;
}

.service-page__breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 36px;
	color: #777;
	font-size: 0.625rem;
	line-height: 1.4;
}

.service-page__breadcrumbs span {
	width: 6px;
	height: 6px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.service-page__breadcrumbs strong {
	color: #151515;
	font-weight: 600;
}

.service-page__layout {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 90px;
}

.service-page__aside {
	align-self: start;
}

.service-page__aside > p {
	margin: 0 0 34px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.032em;
}

.service-page__aside nav {
	display: grid;
	gap: 0;
}

.service-page__aside a {
	padding-bottom: 24px;
	color: #343434;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 2;
	letter-spacing: 0.04em;
}

.service-page__aside a.is-active {
	color: #111;
	font-weight: 500;
}

.service-page__header h1 {
	margin: 0 0 48px;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.service-page__header p,
.service-page__content section > p,
.service-page__steps p {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.025em;
}

.service-page__header p {
	max-width: none;
	font-size: 0.875rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.service-page__summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 48px 0 10px;
	background: #dedede;
	border: 1px solid #dedede;
}

.service-page__summary div {
	display: grid;
	align-content: center;
	min-height: 150px;
	padding: 24px;
	background: #fff;
	text-align: center;
}

.service-page__summary strong {
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	font-weight: 400;
}

.service-page__summary span {
	margin-top: 8px;
	font-size: 0.8rem;
	line-height: 1.4;
}

.service-page__content section {
	padding-top: 58px;
}

.service-page__content section h2 {
	margin: 0 0 24px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.031em;
}

.service-page__content section > p + p {
	margin-top: 18px;
}

.service-page__note {
	margin-top: 26px;
	padding: 22px 24px;
	background: #f3f3f1;
	font-size: 0.9rem;
	line-height: 1.65;
}

.service-page__facts,
.service-page__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin-top: 8px;
	background: #dedede;
	border: 1px solid #dedede;
}

.service-page__facts > div,
.service-page__cards > div {
	padding: 26px;
	background: #fff;
}

.service-page__facts span {
	display: block;
	margin-bottom: 10px;
	color: #777;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.service-page__cards strong {
	display: block;
	margin-bottom: 10px;
	font-size: 0.98rem;
}

.service-page__cards p,
.service-page__facts p,
.service-page__faq p,
.service-page__list {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.7;
}

.service-page__list {
	display: grid;
	gap: 13px;
	padding-left: 20px;
}

.service-page__faq {
	margin-top: 48px;
	border-top: 1px solid #dedede;
}

.service-page__faq details {
	border-bottom: 1px solid #dedede;
}

.service-page__faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 25px 0;
	cursor: pointer;
	font-size: 1.1rem;
	list-style: none;
}

.service-page__faq summary::-webkit-details-marker {
	display: none;
}

.service-page__faq summary i {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.service-page__faq summary i::before,
.service-page__faq summary i::after {
	position: absolute;
	top: 8px;
	left: 2px;
	width: 14px;
	height: 1px;
	background: #111;
	content: "";
}

.service-page__faq summary i::after {
	transform: rotate(90deg);
	transition: transform 160ms ease;
}

.service-page__faq details[open] summary i::after {
	transform: rotate(0);
}

.service-page__faq details > div {
	max-width: 760px;
	padding: 0 42px 27px 0;
}

.privacy-policy__aside a.is-active {
	color: #111;
	font-weight: 500;
}

.legal-page__seller {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin-top: 42px;
	background: #dedede;
	border: 1px solid #dedede;
}

.legal-page__seller p {
	margin: 0;
	padding: 20px;
	background: #fff;
}

.legal-page__seller span:first-child {
	display: block;
	margin-bottom: 7px;
	color: #777;
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.service-page__steps {
	display: grid;
	gap: 0;
	margin: 6px 0 30px;
	padding: 0;
	list-style: none;
}

.service-page__steps li {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 22px;
	padding: 24px 0;
	border-bottom: 1px solid #dedede;
}

.service-page__steps li > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid #161616;
	border-radius: 50%;
	font-size: 0.82rem;
}

.service-page__steps strong {
	display: block;
	margin: 2px 0 7px;
	font-size: 1rem;
}

.service-page__missing {
	padding: 1px 4px;
	background: #fff0b8;
}

.service-page__content a:not(.service-page__button) {
	border-bottom: 1px solid currentColor;
}

.service-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 28px;
	padding: 13px 25px;
	border: 1px solid #111;
	font-size: 0.86rem;
	font-weight: 650;
}

.service-page--returns .service-page__header {
	margin-bottom: 38px;
}

.service-page--returns .service-page__returns-copy section {
	padding-top: 36px;
}

.service-page--returns .service-page__returns-copy section:first-child {
	padding-top: 0;
}

.service-page--returns .service-page__returns-copy h2 {
	margin-bottom: 18px;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.035em;
}

.service-page--returns .service-page__returns-copy h3 {
	margin: 0 0 18px;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.service-page--returns .service-page__returns-copy p,
.service-page--returns .service-page__returns-copy li {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: 0.035em;
}

.service-page--returns .service-page__returns-copy ul {
	display: grid;
	gap: 18px;
	margin: 0;
	padding-left: 18px;
}

.service-page--returns .service-page__returns-copy p {
	margin: 0;
}

.service-page--returns .service-page__returns-copy p + p {
	margin-top: 18px;
}

.service-page--returns .service-page__returns-kicker {
	margin-top: 12px;
	text-transform: uppercase;
}

.service-page__return-action {
	display: flex;
	justify-content: center;
	padding: 42px 0 10px;
}

.service-page__return-action .service-page__button {
	min-width: 240px;
	min-height: 56px;
	margin: 0;
	border: 2px solid #111;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.service-page__return-action .service-page__button:hover,
.service-page__return-action .service-page__button:focus-visible {
	background: #111;
	color: #fff;
}

.service-page__help {
	margin-top: 70px;
	padding: 40px;
	background: #f3f3f1;
}

.service-page__help h2 {
	margin-bottom: 15px !important;
}

.service-page__help a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
	font-size: 0.9rem;
	font-weight: 650;
}

@media (min-width: 981px) {
	.service-page__container {
		width: min(100% - 48px, 1000px);
	}

	.service-page__content {
		width: 100%;
	}
}

@media (max-width: 980px) {
	.company-page__layout {
		grid-template-columns: 210px minmax(0, 1fr);
		gap: 48px;
	}

	.company-page--about .company-page__content,
	.company-page--contact .company-page__content {
		width: 100%;
	}

	.service-page__layout {
		grid-template-columns: 210px minmax(0, 1fr);
		gap: 48px;
	}

	.company-about__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.site-footer__links {
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 12px;
	}

	.company-page {
		padding: 24px 0 64px;
	}

	.company-page__container {
		width: min(100% - 32px, 1540px);
	}

	.company-page__breadcrumbs {
		margin-bottom: 34px;
	}

	.company-page__layout {
		display: block;
	}

	.company-page__aside {
		position: static;
		margin-bottom: 48px;
		padding-bottom: 28px;
		border-bottom: 1px solid #dedede;
	}

	.company-page__aside > p {
		margin-bottom: 22px;
		font-size: 1.25rem;
	}

	.company-page__aside nav {
		display: flex;
		gap: 28px;
		overflow-x: auto;
		padding-bottom: 2px;
		scrollbar-width: none;
	}

	.company-page__aside nav::-webkit-scrollbar {
		display: none;
	}

	.company-page__aside a {
		flex: 0 0 auto;
		padding-bottom: 0;
	}

	.company-page__content > h1 {
		margin-bottom: 44px;
	}

	.company-about__row {
		gap: 26px;
		margin-bottom: 62px;
	}

	.company-about__facts {
		gap: 12px;
		margin-bottom: 72px;
	}

	.company-about__facts span {
		font-size: 0.75rem;
	}

	.company-about__brands {
		gap: 18px;
		padding: 0;
	}

	.company-about__closing {
		padding: 34px 24px;
	}

	.company-page--contact .company-page__content > h1 {
		margin-bottom: 44px;
	}

	.company-contact__details dl div {
		flex-wrap: wrap;
		gap: 3px;
	}

	.company-contact summary {
		font-size: 1rem;
	}

	.company-contact__form-section {
		padding: 20px 16px;
	}

	.service-page {
		padding: 24px 0 64px;
	}

	.service-page__container {
		width: min(100% - 32px, 1540px);
	}

	.service-page__breadcrumbs {
		margin-bottom: 34px;
	}

	.service-page__layout {
		display: block;
	}

	.service-page__aside {
		position: static;
		margin-bottom: 48px;
		padding-bottom: 28px;
		border-bottom: 1px solid #dedede;
	}

	.service-page__aside > p {
		margin-bottom: 22px;
		font-size: 1.25rem;
	}

	.service-page__aside nav {
		display: flex;
		flex-wrap: wrap;
		gap: 14px 24px;
	}

	.service-page__summary {
		grid-template-columns: 1fr;
	}

	.service-page__summary div {
		min-height: 112px;
	}

	.service-page__facts,
	.service-page__cards,
	.legal-page__seller {
		grid-template-columns: 1fr;
	}

	.service-page__help {
		padding: 30px 24px;
	}
}

@media (max-width: 480px) {
	.site-footer__links {
		grid-template-columns: 1fr;
		gap: 26px;
	}
}

.site-footer__logo {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

@media (max-width: 960px) {
	.shop-shell .products,
	.single-product div.product,
	.collection-grid,
	.featured-products,
	.hero__grid,
	.story-grid,
	.shop-intro,
	.reference-editorial__grid,
	.reference-campaign-grid__items,
	.reference-split-cards__grid,
	.reference-campaign-grid__full,
	.hero-reference__gallery {
		grid-template-columns: 1fr 1fr;
	}

	.hero__cards {
		grid-column: 1 / -1;
	}

	.hero-reference__menu .mega-menu-wrap .mega-menu {
		justify-content: flex-start;
	}

	.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-menu-megamenu > .mega-sub-menu > .mega-menu-row > .mega-sub-menu,
	.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-sub-menu > .mega-menu-row > .mega-sub-menu {
		grid-template-columns: 1fr 1fr;
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.hero-reference__mega-grid {
		grid-template-columns: 1fr 1fr;
	}

	.hero-reference__mega-promo {
		grid-column: 1 / -1;
		max-width: 320px;
	}

}

@media (max-width: 720px) {
	.site-topbar__inner,
	.site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.site-header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 18px;
		padding: 18px 16px 14px;
	}

	.site-actions {
		justify-content: flex-end;
	}

	.shop-shell .products,
	.single-product div.product,
	.collection-grid,
	.featured-products,
	.hero__grid,
	.story-grid,
	.hero__cards,
	.shop-intro,
	.reference-editorial__grid,
	.reference-campaign-grid__items {
		grid-template-columns: 1fr;
	}

	.hero__content,
	.hero-card,
	.collection-card {
		padding: 22px;
	}

	.hero-reference__slider {
		padding: 36px 16px 48px;
	}

	.hero-reference__menu {
		width: 100%;
		height: auto;
	}

	.reference-split-cards__grid,
	.reference-campaign-grid__full,
	.hero-reference__gallery {
		grid-template-columns: 1fr;
	}

	.hero-reference__topline {
		height: auto;
	}

	.hero-reference__menu .mega-menu-wrap .mega-menu,
	.hero-reference__menu-list {
		justify-content: flex-start;
		flex-wrap: wrap;
		height: auto;
		padding: 12px 16px;
		gap: 16px;
	}

	.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item,
	.hero-reference__menu-list > li {
		height: auto;
	}

	.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-menu-link,
	.hero-reference__menu-list > li > a {
		padding: 6px 0;
	}

	.hero-reference__menu-list > .hero-reference__menu-item {
		position: relative;
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		width: 100%;
		height: auto;
		border-bottom: 1px solid rgba(18, 18, 18, 0.08);
	}

	.hero-reference__menu-link {
		padding: 12px 0;
	}

	.hero-reference__menu-link::after {
		display: none;
	}

	.hero-reference__menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border: 0;
		background: transparent;
		color: #121212;
		cursor: pointer;
	}

	.hero-reference__menu-toggle::before,
	.hero-reference__menu-toggle::after {
		content: "";
		position: absolute;
		width: 12px;
		height: 1.5px;
		background: currentColor;
	}

	.hero-reference__menu-toggle::after {
		transform: rotate(90deg);
		transition: transform 180ms ease;
	}

	.hero-reference__menu-item.is-open .hero-reference__menu-toggle::after {
		transform: rotate(0deg);
	}

	.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-menu-megamenu > .mega-sub-menu {
		position: static;
		left: auto;
		width: 100%;
		padding: 18px 16px 24px !important;
		border-top: 0;
		box-shadow: none;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.hero-reference__menu #mega-menu-home_mega_primary > .mega-menu-item.mega-menu-megamenu > .mega-sub-menu > .mega-menu-row > .mega-sub-menu,
	.hero-reference__menu .mega-menu-wrap .mega-menu > .mega-menu-item > .mega-sub-menu {
		position: static;
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.hero-reference__mega-menu {
		position: static;
		left: auto;
		width: 100%;
		grid-column: 1 / -1;
		padding: 0 0 20px;
		border-top: 0;
		box-shadow: none;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
	}

	.hero-reference__menu-item.is-open > .hero-reference__mega-menu {
		display: block;
	}

	.hero-reference__mega-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hero-reference__gallery-bar {
		padding: 0 20px 18px;
	}

	.hero-carousel__side {
		padding: 0 24px;
	}

	.hero-carousel__side span {
		font-size: 1.2rem;
	}

	.hero-reference__gallery-bar::after {
		left: 30%;
		right: 20px;
		bottom: 17px;
	}

	.reference-split-cards__grid,
	.reference-campaign-grid__full {
		gap: 20px;
	}

	.reference-split-cards__overlay,
	.reference-campaign-grid__feature-copy {
		padding: 18px 18px 14px;
	}

	.reference-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.reference-section-head__arrows {
		gap: 22px;
	}

	.reference-editorial,
	.reference-campaign-grid,
	.reference-split-cards {
		padding-top: 18px;
	}
}

@media (max-width: 1040px) {
	.catalog-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.catalog-toolbar {
		width: 100%;
		justify-content: flex-end;
	}

	.catalog-filter-toggle {
		margin-right: auto;
	}

}

@media (max-width: 820px) {
	.catalog-shell {
		padding-right: 16px;
		padding-left: 16px;
	}

	.catalog-shell ul.products,
	.catalog-shell ul.products.is-roomy {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 16px;
		row-gap: 38px;
	}

	.catalog-toolbar {
		flex-wrap: wrap;
	}

	.catalog-filter-toggle {
		min-width: auto;
		padding-left: 0;
	}

	.catalog-view-controls {
		width: min(100%, 289px);
	}

	.catalog-density-dropdown {
		flex-basis: 86px;
	}

	.catalog-density-toggle {
		gap: 14px;
	}

	.catalog-sort-toggle {
		padding-right: 12px;
		padding-left: 15px;
	}
}

@media (max-width: 560px) {
	.catalog-shell {
		padding-top: 24px;
		padding-bottom: 64px;
	}

	.catalog-breadcrumbs {
		margin-bottom: 24px;
	}

	.catalog-header {
		gap: 22px;
		margin-bottom: 28px;
	}

	.catalog-header__title {
		font-size: 22px;
	}

	.catalog-shell ul.products,
	.catalog-shell ul.products.is-roomy {
		grid-template-columns: 1fr;
		row-gap: 42px;
	}

	.catalog-density-dropdown {
		display: none;
	}

	.catalog-filter-toggle {
		min-height: 46px;
	}

	.catalog-view-controls {
		--catalog-menu-bridge-height: 26px;
		width: 100%;
		min-height: 52px;
	}

	.catalog-sort-toggle {
		min-height: 50px;
		border-radius: 999px !important;
	}

	.catalog-control-menu > button {
		min-height: 70px;
		padding: 16px 24px;
		font-size: 16px;
	}

	.product-card__quick-options {
		transform: translateY(0);
		opacity: 1;
	}

	.product-card__gallery-arrow {
		opacity: 1;
	}
}

/* Order confirmation and order details. */
body.woocommerce-checkout.woocommerce-order-received {
	background: #fff;
}

/* Mobile catalogue header and off-canvas navigation. */
.site-menu-trigger,
.site-mobile-menu__backdrop,
.site-mobile-menu__heading,
.hero-reference__menu-see-all,
.hero-reference__submenu-toggle {
	display: none;
}

@media (max-width: 720px) {
	body.mobile-menu-is-open {
		overflow: hidden;
	}

	body.catalog-sort-is-open {
		overflow: hidden;
	}

	.site-header {
		position: sticky;
		top: 0;
		z-index: 30;
		border-bottom: 1px solid #ececec;
		background: #fff;
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: 32px minmax(100px, 1fr) auto;
		gap: 12px;
		min-height: 72px;
		padding: 12px 16px;
	}

	.site-menu-trigger {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		width: 32px;
		height: 32px;
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: #121212;
		cursor: pointer;
	}

	.site-menu-trigger span {
		display: block;
		width: 22px;
		height: 1.5px;
		background: currentColor;
	}

	.site-branding--reference {
		align-items: center;
		min-width: 0;
	}

	.site-branding--reference .site-logo img {
		display: block;
		width: min(160px, 100%);
		margin: 0 auto;
	}

	.site-actions--icons {
		gap: 10px;
	}

	.site-icon-link {
		width: 26px;
		height: 30px;
	}

	.site-icon-link svg {
		width: 24px;
		height: 24px;
	}

	.site-cart-count,
	.site-wishlist-count {
		top: auto;
		right: auto;
		bottom: -5px;
		left: -7px;
	}

	.hero-reference__nav {
		position: fixed;
		inset: 0;
		z-index: 100;
		display: block;
		background: transparent;
		visibility: hidden;
		pointer-events: none;
		transition: visibility 280ms ease;
	}

	.product-navigation.hero-reference__nav {
		position: fixed;
		top: 0;
	}

	.hero-reference__nav.is-open {
		visibility: visible;
		pointer-events: auto;
	}

	.site-mobile-menu__backdrop {
		position: absolute;
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: rgba(18, 18, 18, 0.46);
		opacity: 0;
		transition: opacity 280ms ease;
	}

	.hero-reference__nav.is-open .site-mobile-menu__backdrop {
		opacity: 1;
	}

	.hero-reference__nav .hero-reference__topline {
		position: relative;
		z-index: 1;
		width: min(82vw, 520px);
		height: 100dvh;
		border: 0;
		background: #fff;
		overflow-x: hidden;
		overflow-y: auto;
		transform: translateX(-100%);
		transition: transform 280ms cubic-bezier(.2, .8, .2, 1);
	}

	body.woocommerce-cart .product-navigation .hero-reference__topline {
		height: 100dvh;
	}

	.hero-reference__nav.is-open .hero-reference__topline {
		transform: translateX(0);
	}

	.site-mobile-menu__heading {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 76px;
		padding: 18px 24px;
	}

	.site-mobile-menu__logo img {
		display: block;
		width: 160px;
		max-width: 100%;
	}

	.site-mobile-menu__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: #121212;
		cursor: pointer;
	}

	.site-mobile-menu__close svg {
		width: 26px;
		height: 26px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.7;
	}

	.hero-reference__menu,
	.hero-reference__menu-shell {
		width: 100%;
		height: auto;
	}

	.hero-reference__menu-list {
		display: block;
		padding: 0;
	}

	.hero-reference__menu-item {
		position: relative;
		display: grid;
		grid-template-columns: 1fr 56px;
		width: 100%;
		border-bottom: 1px solid #e7e7e7;
	}

	.hero-reference__menu-list > .hero-reference__menu-item > .hero-reference__menu-link {
		min-height: 72px;
		padding: 20px 24px;
		font-size: 18px;
		font-weight: 500;
		letter-spacing: 0;
		text-transform: none;
	}

	.hero-reference__menu-item.is-open > .hero-reference__menu-link {
		font-weight: 700;
	}

	.hero-reference__menu-toggle {
		position: relative;
		width: 56px;
		height: 72px;
	}

	.hero-reference__menu-toggle::before,
	.hero-reference__menu-toggle::after,
	.hero-reference__submenu-toggle::before,
	.hero-reference__submenu-toggle::after {
		width: 14px;
	}

	.hero-reference__mega-menu {
		grid-column: 1 / -1;
		padding: 0;
		background: #fff;
	}

	.hero-reference__menu-see-all {
		display: block;
		min-height: 64px;
		padding: 20px 48px;
		border-top: 1px solid #e7e7e7;
		font-size: 17px;
		letter-spacing: .01em;
	}

	.hero-reference__mega-grid {
		display: block;
		padding: 0;
	}

	.hero-reference__mega-column,
	.hero-reference__mega-column + .hero-reference__mega-column {
		position: relative;
		padding: 0;
		border-top: 1px solid #e7e7e7;
		border-left: 0;
	}

	.hero-reference__mega-column h3 {
		margin: 0;
	}

	.hero-reference__mega-heading-link {
		display: block;
		min-height: 64px;
		padding: 20px 48px;
		font-size: 17px;
		font-weight: 400;
		line-height: 1.35;
	}

	.hero-reference__submenu-toggle {
		position: absolute;
		top: 4px;
		right: 24px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 56px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #121212;
		cursor: pointer;
	}

	.hero-reference__submenu-toggle::before,
	.hero-reference__submenu-toggle::after {
		content: "";
		position: absolute;
		height: 1.5px;
		background: currentColor;
	}

	.hero-reference__submenu-toggle::after {
		transform: rotate(90deg);
		transition: transform 180ms ease;
	}

	.hero-reference__mega-column.is-open .hero-reference__submenu-toggle::after {
		transform: rotate(0deg);
	}

	.hero-reference__mega-column > ul {
		display: none;
		margin: 0;
		padding: 0 48px 20px;
		list-style: none;
	}

	.hero-reference__mega-column.is-open > ul {
		display: grid;
		gap: 14px;
	}

	.hero-reference__mega-column > ul a {
		font-size: 15px;
	}

	.hero-reference__mega-promo {
		display: none;
	}

	.catalog-toolbar {
		flex-wrap: nowrap;
		align-items: center;
		min-height: 30px;
	}

	.catalog-filter-toggle {
		min-height: 30px;
		padding: 0;
		font-size: 14px;
		font-weight: 600;
	}

	.catalog-view-controls {
		width: auto;
		min-height: 30px;
		margin-left: auto;
		border: 0;
		border-radius: 0;
	}

	.catalog-density-dropdown {
		display: none;
	}

	.catalog-sort-dropdown {
		min-width: 0;
	}

	.catalog-sort-toggle {
		min-height: 30px;
		padding: 0;
		border-radius: 0 !important;
		gap: 5px;
	}

	.catalog-sort-icon {
		display: inline-flex;
		flex: 0 0 16px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 3px;
		width: 16px;
		height: 16px;
		margin-right: 2px;
	}

	.catalog-sort-icon i {
		display: block;
		height: 1.2px;
		border-radius: 999px;
		background: currentColor;
	}

	.catalog-sort-icon i:nth-child(1) {
		width: 13px;
	}

	.catalog-sort-icon i:nth-child(2) {
		width: 9px;
	}

	.catalog-sort-icon i:nth-child(3) {
		width: 5px;
	}

	.catalog-sort-toggle__label {
		display: none;
	}

	.catalog-sort-toggle strong {
		font-size: 14px;
		font-weight: 500;
	}

	.catalog-sort-toggle .catalog-control-chevron {
		margin-left: 8px;
	}

	.catalog-sort-menu {
		position: fixed;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 102;
		width: 100%;
		max-height: min(72vh, 560px);
		border: 0;
		background: #fff;
		box-shadow: 0 -12px 30px rgba(18, 18, 18, .12);
		overflow-y: auto;
		transform: translateY(100%);
		transition: transform 180ms cubic-bezier(.22, .75, .25, 1);
		will-change: transform;
	}

	.catalog-sort-dropdown.is-open .catalog-sort-menu {
		transform: translateY(0);
	}

	.catalog-sort-menu::before {
		display: none;
	}

	body.catalog-sort-is-open .catalog-view-controls {
		z-index: 110;
	}

	.catalog-sort-backdrop {
		position: fixed;
		inset: 0;
		z-index: 101;
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: rgba(18, 18, 18, .42);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 140ms ease, visibility 140ms ease;
	}

	.catalog-sort-dropdown.is-open .catalog-sort-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.catalog-sort-menu__heading {
		position: sticky;
		top: 0;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 64px;
		padding: 14px 24px;
		border-bottom: 1px solid #e5e5e5;
		background: #fff;
	}

	.catalog-sort-menu__heading h2 {
		margin: 0;
		font-size: 18px;
		font-weight: 600;
	}

	.catalog-sort-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: #121212;
		cursor: pointer;
	}

	.catalog-sort-close svg {
		width: 22px;
		height: 22px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.6;
	}

	.catalog-sort-menu > button {
		min-height: 60px;
		padding: 16px 24px;
		color: #121212;
		font-size: 15px;
	}

	.catalog-sort-menu > button:hover,
	.catalog-sort-menu > button:focus-visible {
		background: #f7f7f7;
		color: #121212;
	}

	.catalog-sort-menu > button.is-selected {
		font-weight: 600;
	}

	.catalog-shell .product-card__gallery {
		overflow: hidden;
	}

	.catalog-shell .product-card__media {
		overflow: hidden;
	}

	.catalog-shell .product-card__options-toggle {
		position: absolute;
		z-index: 7;
		right: 12px;
		bottom: 12px;
		display: grid;
		place-items: center;
		width: 52px;
		height: 52px;
		margin: 0;
		padding: 0;
		border: 1px solid rgba(18, 18, 18, .14);
		border-radius: 50%;
		background: rgba(255, 255, 255, .72);
		color: #111;
		box-shadow: 0 0 0 5px rgba(255, 255, 255, .28), 0 0 0 6px rgba(18, 18, 18, .2), 0 3px 12px rgba(18, 18, 18, .08);
		backdrop-filter: blur(5px);
		cursor: pointer;
		transition: bottom 180ms cubic-bezier(.22, .75, .25, 1), background-color 140ms ease;
	}

	.catalog-shell .product-card.is-options-open .product-card__options-toggle {
		bottom: calc(var(--card-options-height, 112px) + 12px);
	}

	.product-card__options-toggle svg {
		grid-area: 1 / 1;
		width: 24px;
		height: 24px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.45;
		stroke-linecap: round;
		stroke-linejoin: round;
		transition: opacity 140ms ease, transform 160ms ease;
	}

	.product-card__options-close {
		opacity: 0;
		transform: rotate(-45deg) scale(.75);
	}

	.product-card.is-options-open .product-card__options-cart {
		opacity: 0;
		transform: rotate(35deg) scale(.75);
	}

	.product-card.is-options-open .product-card__options-close {
		opacity: 1;
		transform: rotate(0) scale(1);
	}

	.product-card__media.has-quick-options .product-card__label {
		bottom: 76px;
	}

	.catalog-shell .product-card .product-card__quick-options {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 6;
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: column;
		gap: 14px;
		min-height: 112px;
		padding: 16px 82px 18px 16px;
		overflow: hidden;
		background: rgba(255, 255, 255, .96);
		box-shadow: 0 -8px 22px rgba(18, 18, 18, .08);
		backdrop-filter: blur(5px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(100%);
		transition: opacity 130ms ease, transform 180ms cubic-bezier(.22, .75, .25, 1), visibility 180ms ease;
	}

	.catalog-shell .product-card.is-options-open .product-card__quick-options {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.catalog-shell .product-card__swatches,
	.catalog-shell .product-card__sizes {
		justify-content: flex-start;
		width: 100%;
		gap: 14px;
	}

	.catalog-shell .product-card__swatches:empty,
	.catalog-shell .product-card__sizes:empty {
		display: none;
	}

	.catalog-shell .product-card__swatch {
		width: 24px;
		height: 24px;
	}

	.catalog-shell .product-card__sizes {
		font-size: 14px;
	}

	.catalog-shell .product-card__stock-status {
		display: block;
		padding-right: 4px;
		font-size: 11px;
	}

	.catalog-shell .product-card__stock-status[hidden] {
		display: none;
	}
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
	.catalog-sort-menu,
	.catalog-sort-backdrop,
	.catalog-shell .product-card .product-card__quick-options,
	.catalog-shell .product-card__options-toggle,
	.product-card__options-toggle svg {
		transition: none;
	}
}

@media (max-width: 420px) {
	.site-header__inner {
		grid-template-columns: 30px minmax(90px, 1fr) auto;
		gap: 8px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.site-branding--reference .site-logo img {
		width: min(132px, 100%);
	}

	.site-actions--icons {
		gap: 7px;
	}

	.site-icon-link {
		width: 25px;
	}

}

body.woocommerce-checkout.woocommerce-order-received .page-section {
	padding: 0 0 104px;
}

body.woocommerce-checkout.woocommerce-order-received .page-section > .container {
	width: min(calc(100% - 64px), 1280px);
	max-width: none;
}

body.woocommerce-checkout.woocommerce-order-received article,
body.woocommerce-checkout.woocommerce-order-received .entry-content {
	width: 100%;
	max-width: none;
}

.diverse-order-confirmation {
	width: min(100%, 960px);
	margin: 0 auto;
	padding: clamp(56px, 8vw, 116px) 0 62px;
	text-align: center;
}

.diverse-order-confirmation__header {
	max-width: 720px;
	margin: 0 auto;
}

.diverse-order-confirmation__check {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	place-items: center;
	border: 1px solid #171717;
	border-radius: 50%;
	font-size: 1.2rem;
	line-height: 1;
}

.diverse-order-confirmation__eyebrow,
.diverse-order-access__eyebrow,
.diverse-order-view__eyebrow,
.diverse-order-details__heading > p,
.diverse-order-addresses__heading > p {
	margin: 0 0 10px;
	color: #6e6e6e;
	font-size: 0.63rem;
	font-weight: 500;
	letter-spacing: 0.09em;
	line-height: 1.4;
	text-transform: uppercase;
}

.diverse-order-confirmation h1,
.diverse-order-access h1 {
	margin: 0;
	font-size: clamp(2.2rem, 4.7vw, 4.5rem);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.diverse-order-confirmation__lead {
	max-width: 580px;
	margin: 24px auto 0;
	color: #515151;
	font-size: 0.96rem;
	font-weight: 300;
	line-height: 1.7;
}

.diverse-order-confirmation__summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 56px 0 38px;
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
	text-align: left;
}

.diverse-order-confirmation__summary > div {
	min-width: 0;
	padding: 20px 22px;
}

.diverse-order-confirmation__summary > div + div {
	border-left: 1px solid #e8e8e8;
}

.diverse-order-confirmation__summary dt,
.diverse-order-view__meta dt {
	margin: 0 0 7px;
	color: #777;
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1.2;
	text-transform: uppercase;
}

.diverse-order-confirmation__summary dd,
.diverse-order-view__meta dd {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.diverse-order-confirmation__actions,
.diverse-order-verify__actions,
.diverse-order-details__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.diverse-order-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 13px 25px;
	border: 1px solid #171717;
	border-radius: 999px;
	background: #fff;
	color: #171717;
	font-size: 0.67rem;
	font-weight: 500;
	letter-spacing: 0.065em;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease;
}

.diverse-order-button:hover,
.diverse-order-button:focus-visible {
	background: #171717;
	color: #fff;
}

.diverse-order-button--dark {
	background: #171717;
	color: #fff;
}

.diverse-order-button--dark:hover,
.diverse-order-button--dark:focus-visible {
	background: #fff;
	color: #171717;
}

.diverse-order-payment-instructions {
	width: min(100%, 960px);
	margin: 0 auto 64px;
	padding: 21px 0;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	color: #565656;
	font-size: 0.82rem;
	line-height: 1.65;
}

.diverse-order-payment-instructions h2 {
	margin: 0 0 8px;
	color: #171717;
	font-size: 0.78rem;
	font-weight: 500;
}

.diverse-order-payment-instructions p {
	margin: 0;
}

.diverse-order-details,
.diverse-order-addresses {
	width: min(100%, 1160px);
	margin: 0 auto;
}

.diverse-order-details {
	padding: 60px 0 0;
	border-top: 1px solid #171717;
}

.diverse-order-details__heading,
.diverse-order-addresses__heading {
	margin-bottom: 30px;
}

.diverse-order-details__heading h2,
.diverse-order-addresses__heading h2 {
	margin: 0;
	font-size: clamp(1.6rem, 2.5vw, 2.45rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.diverse-order-details__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	gap: clamp(36px, 7vw, 112px);
	align-items: start;
}

.diverse-order-details__items {
	border-top: 1px solid #e5e5e5;
}

.diverse-order-item {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto;
	gap: 20px;
	align-items: start;
	min-width: 0;
	padding: 18px 0;
	border-bottom: 1px solid #e5e5e5;
}

.diverse-order-item__image,
.diverse-order-item__image a,
.diverse-order-item__image img,
.diverse-order-item__image span {
	display: block;
	width: 96px;
	height: 134px;
}

.diverse-order-item__image {
	overflow: hidden;
	background: #f4f2ef;
}

.diverse-order-item__image img {
	object-fit: cover;
	object-position: center top;
}

.diverse-order-item__content {
	min-width: 0;
	padding: 5px 0;
}

.diverse-order-item h3 {
	margin: 0;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.035em;
	line-height: 1.45;
	text-transform: uppercase;
}

.diverse-order-item h3 a:hover,
.diverse-order-item h3 a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.diverse-order-item__meta:empty {
	display: none;
}

.diverse-order-item__meta .wc-item-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	margin: 16px 0 0;
	padding: 0;
	color: #666;
	font-size: 0.64rem;
	line-height: 1.45;
	list-style: none;
}

.diverse-order-item__meta .wc-item-meta li {
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
}

.diverse-order-item__meta .wc-item-meta p {
	margin: 0;
}

.diverse-order-item__meta .wc-item-meta strong {
	font-weight: 500;
}

.diverse-order-item__quantity {
	margin: 14px 0 0;
	color: #777;
	font-size: 0.62rem;
	line-height: 1.4;
}

.diverse-order-item__quantity ins {
	font-weight: 500;
	text-decoration: none;
}

.diverse-order-item__note {
	margin-top: 14px;
	color: #666;
	font-size: 0.68rem;
	line-height: 1.55;
}

.diverse-order-item__note p {
	margin: 0;
}

.diverse-order-item__price {
	padding-top: 5px;
	font-size: 0.76rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: right;
	white-space: nowrap;
}

.diverse-order-details__summary {
	position: sticky;
	top: 28px;
	padding-top: 1px;
}

.diverse-order-details__summary h3 {
	margin: 0 0 20px;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.35;
}

.diverse-order-details__summary dl {
	margin: 0;
	border-top: 1px solid #e5e5e5;
}

.diverse-order-details__summary dl > div {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	min-height: 48px;
	padding: 14px 0;
	border-bottom: 1px solid #e5e5e5;
	font-size: 0.72rem;
	line-height: 1.4;
}

.diverse-order-details__summary dt,
.diverse-order-details__summary dd {
	margin: 0;
}

.diverse-order-details__summary dd {
	font-weight: 500;
	text-align: right;
}

.diverse-order-details__summary dl > div.is-total {
	min-height: 62px;
	align-items: center;
	font-size: 0.9rem;
}

.diverse-order-details__summary dl > div.is-total dt,
.diverse-order-details__summary dl > div.is-total dd {
	font-weight: 500;
}

.diverse-order-details__customer-note {
	margin-top: 20px;
	padding: 16px;
	background: #f7f7f5;
	color: #616161;
	font-size: 0.68rem;
	line-height: 1.55;
}

.diverse-order-details__customer-note span {
	display: block;
	margin-bottom: 5px;
	color: #171717;
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.diverse-order-details__customer-note p {
	margin: 0;
}

.diverse-order-details__actions {
	justify-content: flex-start;
	margin-top: 20px;
}

.diverse-order-details__actions .diverse-order-button {
	width: 100%;
}

.diverse-order-addresses {
	margin-top: 66px;
	padding-top: 48px;
	border-top: 1px solid #e5e5e5;
}

.diverse-order-addresses__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.diverse-order-address-card {
	min-width: 0;
	min-height: 190px;
	padding: 24px;
	border: 1px solid #e1e1e1;
}

.diverse-order-address-card h3 {
	margin: 0 0 29px;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.diverse-order-address-card address {
	display: flex;
	flex-direction: column;
	margin: 0;
	color: #585858;
	font-size: 0.78rem;
	font-style: normal;
	line-height: 1.75;
}

.diverse-order-address-card address strong {
	margin-bottom: 3px;
	color: #171717;
	font-weight: 500;
}

.diverse-order-address-card address a {
	width: fit-content;
	color: #171717;
	text-decoration: underline;
	text-decoration-color: #c8c8c8;
	text-underline-offset: 3px;
}

.diverse-order-access {
	width: min(100%, 620px);
	margin: 0 auto;
	padding: clamp(58px, 9vw, 118px) 0 28px;
	text-align: center;
}

.diverse-order-access p:not(.diverse-order-access__eyebrow) {
	max-width: 470px;
	margin: 22px auto 0;
	color: #5f5f5f;
	font-size: 0.9rem;
	line-height: 1.65;
}

body.woocommerce-checkout.woocommerce-order-received .entry-content > .woocommerce-info,
body.woocommerce-checkout.woocommerce-order-received .entry-content > .woocommerce-error {
	width: min(100%, 500px);
	margin: 0 auto 24px;
	padding: 15px 18px;
	border: 1px solid #e2e2e2;
	border-radius: 0;
	background: #f7f7f5;
	font-size: 0.76rem;
	line-height: 1.55;
	list-style: none;
}

body.woocommerce-checkout.woocommerce-order-received .woocommerce-info::before,
body.woocommerce-checkout.woocommerce-order-received .woocommerce-error::before {
	display: none !important;
	content: none !important;
}

.diverse-order-verify,
body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login {
	width: min(100%, 500px);
	margin: 0 auto;
	padding: 30px 0 70px;
	border: 0;
}

.diverse-order-verify__copy {
	margin: 0 0 24px;
	color: #5d5d5d;
	font-size: 0.82rem;
	line-height: 1.6;
	text-align: center;
}

.diverse-order-verify__field,
body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login .form-row {
	margin: 0 0 20px;
}

.diverse-order-verify__field label,
body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login label {
	display: block;
	margin-bottom: 8px;
	padding-left: 20px;
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.diverse-order-verify__field .input-text,
body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login .input-text {
	width: 100%;
	height: 51px;
	padding: 0 20px;
	border: 1px solid #a9a9a9;
	border-radius: 999px;
	background: #fff;
	font: inherit;
}

.diverse-order-verify__field .input-text:focus,
body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login .input-text:focus {
	border-color: #171717;
	box-shadow: 0 0 0 1px #171717;
	outline: 0;
}

body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login .woocommerce-button {
	width: 100%;
	min-height: 52px;
	margin: 4px 0 0;
	padding: 13px 25px;
	border: 1px solid #171717;
	border-radius: 999px;
	background: #171717;
	color: #fff;
	font-size: 0.67rem;
	font-weight: 500;
	letter-spacing: 0.065em;
	text-transform: uppercase;
	cursor: pointer;
}

body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login .woocommerce-button:hover,
body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login .woocommerce-button:focus-visible {
	background: #fff;
	color: #171717;
}

body.woocommerce-checkout.woocommerce-order-received .woocommerce-form-login .woocommerce-LostPassword {
	margin: 20px 0 0;
	font-size: 0.72rem;
	text-align: center;
}

.diverse-order-verify__actions .diverse-order-button {
	min-width: 192px;
}

.diverse-order-view .account-section__back {
	margin-bottom: 24px;
	font-size: 0.7rem;
	text-decoration: none;
}

.diverse-order-view__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.diverse-order-view__header h1 {
	font-size: clamp(1.6rem, 2.4vw, 2.35rem);
	letter-spacing: -0.04em;
}

.diverse-order-status {
	display: inline-flex;
	min-height: 29px;
	align-items: center;
	justify-content: center;
	padding: 6px 11px;
	border: 1px solid #d4d4d4;
	border-radius: 999px;
	color: #444;
	font-size: 0.59rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.diverse-order-status--completed {
	border-color: #789172;
	color: #4d6a47;
}

.diverse-order-status--cancelled,
.diverse-order-status--failed,
.diverse-order-status--refunded {
	border-color: #d7aeae;
	color: #9d4c4c;
}

.diverse-order-view__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 0 44px;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
}

.diverse-order-view__meta > div {
	min-width: 0;
	padding: 15px 16px;
}

.diverse-order-view__meta > div + div {
	border-left: 1px solid #e9e9e9;
}

.diverse-order-view__meta > div:first-child {
	padding-left: 0;
}

.diverse-order-view .diverse-order-details,
.diverse-order-view .diverse-order-addresses {
	width: 100%;
}

.diverse-order-view .diverse-order-details {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.diverse-order-view .diverse-order-addresses {
	margin-bottom: 0;
}

.diverse-order-updates {
	margin: -12px 0 42px;
}

.diverse-order-updates h2 {
	margin: 0 0 14px;
	font-size: 0.82rem;
	font-weight: 500;
}

.diverse-order-updates ol {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.diverse-order-updates li {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	gap: 16px;
	padding: 13px 0;
	border-top: 1px solid #e7e7e7;
	color: #555;
	font-size: 0.72rem;
	line-height: 1.55;
}

.diverse-order-updates time {
	color: #777;
	font-size: 0.64rem;
}

.diverse-order-updates p {
	margin: 0;
}

@media (max-width: 820px) {
	body.woocommerce-checkout.woocommerce-order-received .page-section > .container {
		width: min(calc(100% - 40px), 1280px);
	}

	.diverse-order-confirmation__summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.diverse-order-confirmation__summary > div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid #e8e8e8;
	}

	.diverse-order-confirmation__summary > div:nth-child(4) {
		border-top: 1px solid #e8e8e8;
	}

	.diverse-order-details__layout {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.diverse-order-details__summary {
		position: static;
		width: min(100%, 480px);
		margin-left: auto;
	}
}

@media (max-width: 600px) {
	body.woocommerce-checkout.woocommerce-order-received .page-section {
		padding-bottom: 70px;
	}

	body.woocommerce-checkout.woocommerce-order-received .page-section > .container {
		width: min(calc(100% - 32px), 1280px);
	}

	.diverse-order-confirmation {
		padding-top: 58px;
		padding-bottom: 48px;
	}

	.diverse-order-confirmation__check {
		width: 38px;
		height: 38px;
		margin-bottom: 17px;
	}

	.diverse-order-confirmation__lead {
		margin-top: 18px;
		font-size: 0.86rem;
	}

	.diverse-order-confirmation__summary {
		margin: 38px 0 28px;
	}

	.diverse-order-confirmation__summary > div {
		padding: 16px 12px;
	}

	.diverse-order-confirmation__summary > div:nth-child(odd) {
		padding-left: 0;
	}

	.diverse-order-confirmation__summary > div:nth-child(even) {
		padding-right: 0;
	}

	.diverse-order-confirmation__actions,
	.diverse-order-verify__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.diverse-order-button,
	.diverse-order-verify__actions .diverse-order-button {
		width: 100%;
	}

	.diverse-order-payment-instructions {
		margin-bottom: 48px;
	}

	.diverse-order-details {
		padding-top: 42px;
	}

	.diverse-order-details__heading,
	.diverse-order-addresses__heading {
		margin-bottom: 24px;
	}

	.diverse-order-item {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 14px;
	}

	.diverse-order-item__image,
	.diverse-order-item__image a,
	.diverse-order-item__image img,
	.diverse-order-item__image span {
		width: 76px;
		height: 106px;
	}

	.diverse-order-item__content {
		padding-top: 1px;
	}

	.diverse-order-item h3 {
		font-size: 0.68rem;
	}

	.diverse-order-item__meta .wc-item-meta {
		margin-top: 11px;
	}

	.diverse-order-item__quantity {
		margin-top: 10px;
	}

	.diverse-order-item__price {
		grid-column: 2;
		padding-top: 0;
		font-size: 0.72rem;
		text-align: left;
	}

	.diverse-order-addresses {
		margin-top: 48px;
		padding-top: 40px;
	}

	.diverse-order-addresses__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.diverse-order-address-card {
		min-height: 0;
		padding: 20px;
	}

	.diverse-order-address-card h3 {
		margin-bottom: 18px;
	}

	.diverse-order-view__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.diverse-order-view__meta {
		grid-template-columns: 1fr;
		margin-bottom: 34px;
	}

	.diverse-order-view__meta > div,
	.diverse-order-view__meta > div:first-child {
		padding: 13px 0;
	}

	.diverse-order-view__meta > div + div {
		border-top: 1px solid #e9e9e9;
		border-left: 0;
	}

	.diverse-order-updates li {
		grid-template-columns: 1fr;
		gap: 5px;
	}
}


/* Reference footer */
.site-footer {
	border: 0;
	background: #fff;
	color: #171717;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.footer-newsletter,
.site-footer__main,
.site-footer__bottom {
	border-top: 1px solid #222;
}

.footer-club__inner {
	display: grid;
	grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.45fr);
	gap: clamp(64px, 8.5vw, 170px);
	align-items: center;
	width: 100%;
	min-height: 360px;
	padding: 52px clamp(48px, 8.8vw, 176px) 50px;
}

.footer-club__intro {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.footer-club__logo {
	width: min(100%, 580px);
	max-height: 124px;
	object-fit: contain;
	object-position: left center;
}

.footer-club__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(90%, 500px);
	min-height: 56px;
	margin-top: 48px;
	padding: 11px 28px;
	border: 2px solid #171717;
	border-radius: 999px;
	background: #fff;
	font-size: clamp(0.9rem, 1.15vw, 1.35rem);
	font-weight: 400;
	letter-spacing: 0.01em;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease;
}

.footer-club__button:hover,
.footer-club__button:focus-visible {
	background: #171717;
	color: #fff;
}

.footer-club__content {
	display: grid;
	min-width: 0;
	gap: 38px;
}

.footer-club__lead {
	max-width: 910px;
	margin: 0;
	font-size: clamp(1rem, 1.22vw, 1.48rem);
	font-weight: 300;
	line-height: 1.42;
	letter-spacing: 0.03em;
}

.footer-club__lead strong {
	font-weight: 700;
}

.footer-club__benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 5vw, 100px);
}

.footer-club__benefit {
	display: grid;
	justify-items: center;
	gap: 20px;
	text-align: center;
}

.footer-club__benefit img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.footer-club__benefit p {
	margin: 0;
	font-size: clamp(0.9rem, 1.15vw, 1.35rem);
	font-weight: 300;
	line-height: 1.35;
	letter-spacing: 0.025em;
	white-space: nowrap;
}

.footer-newsletter__inner {
	width: min(100% - 48px, 874px);
	margin: 0 auto;
	padding: 64px 0 66px;
}

.footer-newsletter h2 {
	margin: 0 0 36px;
	font-size: clamp(1.35rem, 1.7vw, 2rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-align: center;
}

.footer-newsletter__form {
	display: flex;
	align-items: center;
	width: 100%;
	border-bottom: 2px solid #171717;
}

.footer-newsletter__form input {
	width: 100%;
	height: 62px;
	padding: 8px 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: #171717;
	font: inherit;
	font-size: clamp(0.9rem, 1vw, 1.15rem);
	font-weight: 300;
	letter-spacing: 0.025em;
}

.footer-newsletter__form input::placeholder {
	color: #9b9b9b;
	opacity: 1;
}

.footer-newsletter__form:focus-within {
	border-bottom-color: #000;
	box-shadow: 0 1px 0 #000;
}

.footer-newsletter__form button {
	display: grid;
	flex: 0 0 48px;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #171717;
	cursor: pointer;
}

.footer-newsletter__form button svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.site-footer__main {
	border-top-color: #dcdcdc;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 56px;
	align-items: center;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 64px clamp(48px, 8.8vw, 176px) 60px;
}

.site-footer__links {
	display: grid;
	grid-template-columns: 0.9fr 0.9fr 1.25fr;
	gap: clamp(44px, 6.7vw, 134px);
	align-self: stretch;
}

.site-footer__group {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.site-footer__group h2,
.site-footer__social h2 {
	margin: 0 0 4px;
	color: #666;
	font-size: clamp(1rem, 1.35vw, 1.65rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.025em;
}

.site-footer__group a {
	width: fit-content;
	color: #333;
	font-size: clamp(0.92rem, 1.14vw, 1.4rem);
	font-weight: 300;
	line-height: 1.32;
	letter-spacing: 0.025em;
}

.site-footer__group a:hover,
.site-footer__group a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible,
.site-footer__legal button:hover,
.site-footer__legal button:focus-visible {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.site-footer__social {
	display: grid;
	justify-items: center;
	gap: 30px;
	min-width: 232px;
}

.site-footer__social-links {
	display: flex;
	align-items: center;
	gap: 35px;
}

.site-footer__social-links a {
	display: grid;
	place-items: center;
	color: #666;
}

.site-footer__social-links svg {
	width: 27px;
	height: 27px;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1.8;
}

.site-footer__social-links rect,
.site-footer__social-links circle,
.site-footer__social-links path:not(.is-filled) {
	fill: none;
}

.site-footer__social-links a:first-child path {
	fill: currentColor;
	stroke: none;
}

.site-footer__bottom {
	border-top-color: #ececec;
}

.site-footer__bottom-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
	width: 100%;
	min-height: 0;
	padding: 28px clamp(48px, 8.8vw, 176px) 30px;
}

.site-footer__legal {
	display: flex;
	align-items: center;
	gap: 42px;
}

.site-footer__legal a,
.site-footer__legal button,
.site-footer__copyright {
	font-size: clamp(0.82rem, 1vw, 1.12rem);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.site-footer__legal button {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-family: inherit;
	cursor: pointer;
}

.site-footer__copyright {
	color: #686868;
	font: inherit;
	font-size: clamp(0.76rem, 0.9vw, 1rem);
	text-align: right;
}

@media (max-width: 1100px) {
	.footer-club__inner {
		grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
		gap: 54px;
		padding-inline: 48px;
	}

	.footer-club__benefits {
		gap: 24px;
	}

	.footer-club__benefit p {
		white-space: normal;
	}

	.site-footer__inner,
	.site-footer__bottom-inner {
		padding-inline: 48px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.site-footer__social {
		justify-items: start;
	}
}

@media (max-width: 720px) {
	.footer-club__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		min-height: 0;
		padding: 38px 24px 42px;
	}

	.footer-club__intro {
		display: contents;
	}

	.footer-club__logo {
		order: 1;
		width: min(100%, 290px);
		max-height: none;
		margin: 0 auto;
		object-position: center;
	}

	.footer-club__button {
		order: 3;
		width: min(100%, 172px);
		min-height: 56px;
		margin-top: 24px;
		padding: 10px 18px;
		border-width: 2px;
		font-size: 13px;
	}

	.footer-club__content {
		display: contents;
	}

	.footer-club__lead {
		order: 2;
		max-width: 350px;
		margin-top: 22px;
		font-size: 13px;
		line-height: 1.48;
		letter-spacing: .035em;
		text-align: center;
	}

	.footer-club__benefits {
		display: none;
	}

	.footer-newsletter__inner {
		width: calc(100% - 48px);
		padding: 48px 0 52px;
	}

	.footer-newsletter h2 {
		margin-bottom: 36px;
	}

	.site-footer__inner {
		display: block;
		min-height: 0;
		padding: 42px 24px 46px;
	}

	.site-footer__links {
		grid-template-columns: 1fr;
		gap: 48px;
		margin: 0;
	}

	.site-footer__group {
		gap: 20px;
	}

	.site-footer__group h2,
	.site-footer__social h2 {
		font-size: 1.05rem;
	}

	.site-footer__group a {
		font-size: 0.92rem;
	}

	.site-footer__social {
		gap: 25px;
		margin-top: 38px;
	}

	.site-footer__bottom-inner {
		display: flex;
		min-height: 0;
		flex-direction: column;
		align-items: stretch;
		padding: 26px 24px 30px;
	}

	.site-footer__legal {
		flex-wrap: wrap;
		gap: 18px 28px;
	}

	.site-footer__copyright {
		text-align: left;
	}
}

/* Compact cookie notice and consent centre */
.cookie-banner[hidden] {
	display: none !important;
}

.cookie-banner {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999999;
	width: min(390px, calc(100vw - 48px));
	padding: 20px;
	border: 1px solid #ececec;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
	color: #171717;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-open {
	opacity: 1;
	transform: translateY(0);
}

.cookie-banner__copy h2 {
	margin: 0 0 7px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
}

.cookie-banner__copy p {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 300;
	line-height: 1.42;
}

.cookie-banner__copy a {
	border-bottom: 1px solid #999;
	color: inherit;
}

.cookie-banner__actions {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 14px;
}

.cookie-banner__actions button {
	padding: 8px 7px;
	border: 0;
	background: transparent;
	color: #292929;
	font: inherit;
	font-size: 0.66rem;
	font-weight: 500;
	cursor: pointer;
}

.cookie-banner__actions button.is-primary {
	margin-left: auto;
	padding: 10px 15px;
	border-radius: 3px;
	background: #f0f0f0;
	font-size: 0.82rem;
}

.cookie-banner__actions button:hover,
.cookie-banner__actions button:focus-visible {
	background: #e8e8e8;
	outline: none;
}

html.cookie-consent-open {
	overflow: hidden;
}

.cookie-consent[hidden],
.cookie-consent [hidden] {
	display: none !important;
}

.cookie-consent {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 0;
	transition: opacity 160ms ease;
}

.cookie-consent.is-open {
	opacity: 1;
}

.cookie-consent__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(2px);
}

.cookie-consent__dialog {
	position: relative;
	display: flex;
	width: min(100%, 1080px);
	max-height: calc(100vh - 48px);
	flex-direction: column;
	overflow: auto;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	color: #151515;
}

.cookie-consent__header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 76px;
	padding: 18px 30px;
	border-bottom: 1px solid #e3e3e3;
}

.cookie-consent__brand {
	display: block;
	width: 146px;
	max-width: 42%;
	height: auto;
}

.cookie-consent__close {
	display: grid;
	position: absolute;
	top: 14px;
	left: 18px;
	z-index: 2;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #151515;
	-webkit-text-fill-color: #151515;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.cookie-consent__tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-bottom: 1px solid #dedede;
}

.cookie-consent__tabs button {
	position: relative;
	z-index: 1;
	min-height: 70px;
	padding: 16px;
	border: 0;
	background: #fff;
	color: #151515;
	-webkit-text-fill-color: #151515;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.25;
	opacity: 1;
	visibility: visible;
	cursor: pointer;
}

.cookie-consent__tabs button[aria-selected="false"] {
	color: #555;
	-webkit-text-fill-color: #555;
}

.cookie-consent__tabs button[aria-selected="true"]::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: #111;
	content: "";
}

.cookie-consent__panels {
	padding: 30px 34px 28px;
}

.cookie-consent__panels h2 {
	margin: 0 0 14px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.cookie-consent__panels p {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.65;
	letter-spacing: 0.025em;
}

.cookie-consent__panels a {
	border-bottom: 1px solid currentColor;
}

.cookie-consent__categories {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
}

.cookie-consent__categories label {
	display: grid;
	position: relative;
	min-height: 132px;
	place-items: center;
	align-content: center;
	gap: 16px;
	padding: 20px 14px;
	border-right: 1px solid #dedede;
	cursor: pointer;
	text-align: center;
}

.cookie-consent__categories label:last-child {
	border-right: 0;
}

.cookie-consent__categories label > span {
	display: grid;
	gap: 3px;
}

.cookie-consent__categories strong {
	font-size: 0.9rem;
	font-weight: 650;
}

.cookie-consent__categories small {
	color: #6c6c6c;
	font-size: 0.68rem;
	font-weight: 300;
}

.cookie-consent__categories input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.cookie-consent__categories i {
	display: block;
	position: relative;
	width: 54px;
	height: 30px;
	border: 2px solid #111;
	border-radius: 999px;
	background: #fff;
	transition: background-color 140ms ease;
}

.cookie-consent__categories i::after {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #111;
	content: "";
	transition: transform 140ms ease, background-color 140ms ease;
}

.cookie-consent__categories input:checked + i {
	background: #111;
}

.cookie-consent__categories input:checked + i::after {
	background: #fff;
	transform: translateX(24px);
}

.cookie-consent__categories input:focus-visible + i {
	outline: 2px solid #2166d1;
	outline-offset: 3px;
}

.cookie-consent__categories input:disabled + i {
	cursor: not-allowed;
	opacity: 0.65;
}

.cookie-consent__actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 22px 24px 26px;
}

.cookie-consent__actions button {
	min-height: 54px;
	padding: 12px 20px;
	border: 2px solid #111;
	border-radius: 2px;
	background: #fff;
	color: #111;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 650;
	cursor: pointer;
}

.cookie-consent__actions button.is-primary {
	background: #111;
	color: #fff;
}

.cookie-consent__actions button:hover,
.cookie-consent__actions button:focus-visible {
	box-shadow: inset 0 0 0 1px currentColor;
}

@media (max-width: 720px) {
	.cookie-banner {
		right: 12px;
		bottom: 12px;
		width: calc(100vw - 24px);
		padding: 18px;
	}

	.cookie-banner__actions {
		flex-wrap: wrap;
	}

	.cookie-consent {
		align-items: end;
		padding: 0;
	}

	.cookie-consent__dialog {
		width: 100%;
		max-height: 92vh;
		border-radius: 12px 12px 0 0;
	}

	.cookie-consent__header {
		min-height: 58px;
		padding: 13px 20px;
	}

	.cookie-consent__brand {
		width: 122px;
	}

	.cookie-consent__tabs button {
		min-height: 58px;
		padding: 12px 8px;
		font-size: 0.78rem;
	}

	.cookie-consent__panels {
		padding: 24px 20px;
	}

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

	.cookie-consent__categories label {
		min-height: 118px;
		border-bottom: 1px solid #dedede;
	}

	.cookie-consent__categories label:nth-child(2) {
		border-right: 0;
	}

	.cookie-consent__categories label:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.cookie-consent__actions {
		grid-template-columns: 1fr;
		padding: 18px 20px 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cookie-banner,
	.cookie-consent,
	.cookie-consent__categories i,
	.cookie-consent__categories i::after {
		transition: none;
	}
}

/* Keep every mobile breadcrumb as compact as the product-detail trail. */
@media (max-width: 720px) {
	:is(
		.account-shell__breadcrumb,
		.privacy-policy__breadcrumbs,
		.catalog-breadcrumbs,
		.wishlist-page__breadcrumb,
		.cart-page__breadcrumb,
		.company-page__breadcrumbs,
		.service-page__breadcrumbs,
		.ds-product__breadcrumbs
	) {
		gap: 0;
		margin-bottom: 16px;
		font-size: .65rem;
		font-weight: 500;
		line-height: 1.8;
		letter-spacing: .04em;
		white-space: nowrap;
	}

	:is(
		.account-shell__breadcrumb,
		.privacy-policy__breadcrumbs,
		.catalog-breadcrumbs,
		.wishlist-page__breadcrumb,
		.cart-page__breadcrumb,
		.company-page__breadcrumbs,
		.service-page__breadcrumbs,
		.ds-product__breadcrumbs
	) > span:not(.ds-product__breadcrumb-product-divider) {
		display: inline-block;
		flex: 0 0 auto;
		width: 6px;
		height: 6px;
		margin-right: 7px;
		margin-left: 5px;
		border: 0;
		border-top: 1px solid currentColor;
		border-right: 1px solid currentColor;
		font-size: 0;
		transform: rotate(45deg);
	}
}
