/*
Theme Name: all4you
Theme URI: https://all4youonline.pl/
Author: all4you
Description: Lekki, elegancki motyw WooCommerce dla prezentów personalizowanych i zamówień B2B.
Version: 1.5.2
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: all4you
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, custom-logo, custom-menu, featured-images, wide-blocks, translation-ready
*/

:root {
	--a4y-ink: #241b18;
	--a4y-muted: #71635e;
	--a4y-ivory: #fbf7f1;
	--a4y-paper: #fffdf9;
	--a4y-blush: #efd9d1;
	--a4y-blush-light: #f7e9e3;
	--a4y-rose: #ad453a;
	--a4y-rose-dark: #7e2f2b;
	--a4y-sage: #dce1d2;
	--a4y-line: rgba(36, 27, 24, .16);
	--a4y-shadow: 0 18px 50px rgba(63, 39, 31, .12);
	--a4y-display: "Instrument Serif", Georgia, serif;
	--a4y-body: "DM Sans", Arial, sans-serif;
	--a4y-radius: 28px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--a4y-ivory);
	color: var(--a4y-ink);
	font-family: var(--a4y-body);
	font-size: 16px;
	line-height: 1.5;
}

body.menu-open,
body.search-open,
body.audience-open {
	overflow: hidden;
}

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

svg {
	display: block;
}

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

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

button {
	color: inherit;
}

::selection {
	background: var(--a4y-rose);
	color: #fff;
}

:focus-visible {
	outline: 3px solid var(--a4y-rose);
	outline-offset: 4px;
}

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

.screen-reader-text:focus {
	z-index: 9999;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--a4y-ink);
	color: #fff;
	border-radius: 999px;
}

.container {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
}

.alignwide {
	width: min(1440px, calc(100vw - 48px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

/* Floating navigation */
.nav-wrap {
	position: fixed;
	z-index: 1000;
	top: 18px;
	right: 0;
	left: 0;
	padding-inline: 18px;
	pointer-events: none;
}

.admin-bar .nav-wrap {
	top: 50px;
}

.nav-island {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 26px;
	width: min(1180px, 100%);
	min-height: 68px;
	margin: 0 auto;
	padding: 9px 12px 9px 20px;
	pointer-events: auto;
	background: rgba(255, 253, 249, .9);
	border: 1px solid rgba(36, 27, 24, .13);
	border-radius: 999px;
	box-shadow: 0 12px 35px rgba(53, 34, 28, .1);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: -.06em;
	white-space: nowrap;
}

.brand-mark {
	width: 30px;
	height: 30px;
	color: var(--a4y-rose);
}

.brand-dot {
	fill: var(--a4y-ink);
}

.brand .custom-logo {
	width: auto;
	max-width: 164px;
	height: 42px;
	object-fit: contain;
}

.nav-island .nav-links {
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.4vw, 34px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu li {
	position: relative;
	margin: 0;
}

.nav-menu a {
	position: relative;
	display: block;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.nav-menu > li > a::after {
	position: absolute;
	right: 100%;
	bottom: 4px;
	left: 0;
	height: 1px;
	content: "";
	background: currentColor;
	transition: right .25s ease;
}

.nav-menu > li:hover > a::after,
.nav-menu > .current-menu-item > a::after,
.nav-menu > .current-menu-ancestor > a::after {
	right: 0;
}

.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: -20px;
	min-width: 230px;
	margin: 0;
	padding: 12px;
	visibility: hidden;
	opacity: 0;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 18px;
	box-shadow: var(--a4y-shadow);
	list-style: none;
	transform: translateY(-8px);
	transition: .2s ease;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.nav-menu .sub-menu a {
	padding: 9px 10px;
	border-radius: 9px;
}

.nav-menu .sub-menu a:hover {
	background: var(--a4y-blush-light);
}

.submenu-toggle {
	display: none;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.icon-btn {
	position: relative;
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	place-items: center;
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.icon-btn:hover {
	background: var(--a4y-blush-light);
	transform: translateY(-1px);
}

.icon-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.cart-count {
	position: absolute;
	top: 3px;
	right: 1px;
	display: grid;
	min-width: 20px;
	height: 20px;
	padding-inline: 5px;
	place-items: center;
	background: var(--a4y-rose);
	color: #fff;
	border: 2px solid var(--a4y-paper);
	border-radius: 99px;
	font-size: 10px;
	font-weight: 700;
}

.menu-toggle {
	display: none;
}

/* Shared controls */
.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 24px;
	background: transparent;
	color: var(--a4y-ink);
	border: 1px solid var(--a4y-ink);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover {
	transform: translateY(-3px);
}

.btn svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.btn-dark,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
	background: var(--a4y-ink);
	color: #fff;
	border-color: var(--a4y-ink);
}

.btn-dark:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
	background: var(--a4y-rose-dark);
	color: #fff;
	border-color: var(--a4y-rose-dark);
}

.btn-light {
	background: rgba(255, 255, 255, .38);
}

.btn-light:hover {
	background: var(--a4y-paper);
}

.btn-white {
	background: var(--a4y-paper);
	color: var(--a4y-ink);
	border-color: var(--a4y-paper);
}

.btn-white:hover {
	background: var(--a4y-blush);
	border-color: var(--a4y-blush);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 24px;
	height: 1px;
	content: "";
	background: currentColor;
}

.section {
	padding: 118px 0;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 36px;
	margin-bottom: 50px;
}

.section-kicker {
	margin: 0 0 12px;
	color: var(--a4y-rose-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.section h2,
.section-head h2,
.contact-strip h2,
.b2b h2,
.entry-title,
.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.cart_totals h2,
.woocommerce-checkout h3 {
	margin: 0;
	font-family: var(--a4y-display);
	font-size: clamp(48px, 6vw, 82px);
	font-weight: 400;
	line-height: .95;
	letter-spacing: -.035em;
}

.section-head > p {
	max-width: 410px;
	margin: 0;
	color: var(--a4y-muted);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: 14px;
	font-weight: 700;
}

.text-link svg {
	width: 16px;
	fill: none;
	stroke: currentColor;
}

/* Hero */
.hero {
	position: relative;
	min-height: 930px;
	padding: 160px 0 42px;
	overflow: hidden;
	background: var(--a4y-blush);
	border-bottom: 1px solid var(--a4y-ink);
}

.hero-orbit {
	position: absolute;
	top: 180px;
	left: -220px;
	width: 460px;
	height: 460px;
	border: 1px solid rgba(36, 27, 24, .18);
	border-radius: 50%;
}

.hero-copy {
	position: relative;
	z-index: 3;
	max-width: 1020px;
	margin-inline: auto;
	text-align: center;
}

.hero h1 {
	margin: 0;
	font-family: var(--a4y-display);
	font-size: clamp(68px, 9vw, 136px);
	font-weight: 400;
	line-height: .82;
	letter-spacing: -.045em;
}

.hero h1 em {
	color: var(--a4y-rose-dark);
	font-weight: 400;
}

.hero-lead {
	max-width: 640px;
	margin: 28px auto 26px;
	color: #4f403b;
	font-size: clamp(17px, 1.6vw, 21px);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.gift-stage {
	position: relative;
	height: 380px;
	margin-top: 36px;
}

.stage-arch {
	position: absolute;
bottom: -44px;
	left: 50%;
	width: min(740px, 76vw);
	height: 350px;
	background: var(--a4y-ivory);
	border: 1px solid var(--a4y-ink);
	border-radius: 370px 370px 0 0;
	transform: translateX(-50%);
}

.photo-card {
	position: absolute;
	z-index: 2;
	margin: 0;
	overflow: hidden;
	background: var(--a4y-paper);
	border: 10px solid var(--a4y-paper);
	box-shadow: var(--a4y-shadow);
}

.photo-card img,
.gift-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.86) contrast(.96);
}

.photo-card a {
	display: block;
	width: 100%;
	height: 100%;
}

.photo-card-a {
	bottom: 4px;
	left: calc(50% - 320px);
	width: 250px;
	height: 310px;
	transform: rotate(-7deg);
}

.photo-card-b {
	z-index: 3;
	bottom: -6px;
	left: 50%;
	width: 310px;
	height: 335px;
	transform: translateX(-50%) rotate(2deg);
}

.photo-card-c {
	bottom: 15px;
	left: calc(50% + 85px);
	width: 240px;
	height: 285px;
	transform: rotate(8deg);
}

.gift-tag {
	position: absolute;
	z-index: 5;
	padding: 9px 14px;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-ink);
	border-radius: 999px;
	box-shadow: 3px 4px 0 var(--a4y-ink);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.tag-a {
	bottom: 145px;
	left: calc(50% - 390px);
	transform: rotate(-5deg);
}

.tag-b {
	bottom: 210px;
	left: calc(50% + 210px);
	transform: rotate(4deg);
}

.tag-c {
	bottom: 78px;
	left: calc(50% + 260px);
	transform: rotate(-3deg);
}

.hero-note {
	position: absolute;
	bottom: 38px;
	left: max(24px, 6vw);
	max-width: 180px;
	margin: 0;
	font-family: var(--a4y-display);
	font-size: 22px;
	line-height: 1.05;
	transform: rotate(-5deg);
}

/* Audience */
.audience-grid {
	display: grid;
	grid-template-columns: 1.12fr .88fr;
	gap: 18px;
}

.audience-card {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: #ddd;
	border-radius: var(--a4y-radius);
	isolation: isolate;
}

.audience-card::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 30%, rgba(28, 19, 16, .82));
}

.audience-image,
.audience-art {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.audience-card:hover .audience-image,
.audience-card:hover .audience-art {
	transform: scale(1.035);
}

.audience-content {
	position: absolute;
	z-index: 2;
	right: 34px;
	bottom: 32px;
	left: 34px;
	color: #fff;
}

.audience-label {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.audience-content h3 {
	margin: 0 0 8px;
	font-family: var(--a4y-display);
	font-size: clamp(38px, 4vw, 60px);
	font-weight: 400;
	line-height: .95;
}

.audience-content p {
	max-width: 470px;
	margin: 0 0 18px;
	color: rgba(255, 255, 255, .82);
}

/* Products */
.products-section {
	background: var(--a4y-paper);
	border-block: 1px solid var(--a4y-line);
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 34px;
}

.filter-btn {
	padding: 10px 16px;
	background: transparent;
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.filter-btn[aria-pressed="true"],
.filter-btn:hover {
	background: var(--a4y-ink);
	color: #fff;
	border-color: var(--a4y-ink);
}

.woocommerce ul.products,
ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px 16px;
	clear: both;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.woocommerce ul.products li.product,
ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
}

.a4y-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	transition: opacity .25s ease, transform .25s ease;
}

.a4y-product-card > .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.a4y-product-card.is-hidden {
	display: none !important;
}

.product-visual {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--a4y-blush-light);
	border-radius: 20px;
}

.product-image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.woocommerce ul.products li.product .product-visual img,
.product-visual img {
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .55s ease;
}

.a4y-product-card:hover .product-visual img {
	transform: scale(1.04);
}

.product-badge,
.woocommerce span.onsale {
	position: absolute;
	z-index: 2;
	top: 13px;
	left: 13px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 7px 9px;
	background: var(--a4y-paper);
	color: var(--a4y-ink);
	border-radius: 99px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.quick-add-wrap {
	position: absolute;
	right: 12px;
	bottom: 12px;
	left: 12px;
	transform: translateY(70px);
	transition: transform .3s ease;
}

.a4y-product-card:hover .quick-add-wrap,
.a4y-product-card:focus-within .quick-add-wrap {
	transform: translateY(0);
}

.woocommerce ul.products li.product .quick-add-wrap .button,
.quick-add-wrap .button {
	display: flex;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 0 14px;
	background: var(--a4y-ink);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce ul.products li.product.a4y-product-card > .button,
.a4y-product-card > .button {
	display: flex;
	width: calc(100% - 8px);
	min-height: 46px;
	margin: 12px 4px 0;
	padding: 0 16px;
	background: transparent;
	color: var(--a4y-ink);
	border: 1px solid var(--a4y-ink);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce ul.products li.product.a4y-product-card > .button:hover,
.a4y-product-card > .button:hover {
	background: var(--a4y-ink);
	color: #fff;
	transform: translateY(-2px);
}

.a4y-product-card > .added_to_cart {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.quick-add-wrap .button:hover {
	background: var(--a4y-rose-dark);
	color: #fff;
	transform: none;
}

.quick-add-wrap .added_to_cart {
	position: absolute;
	right: 0;
	bottom: 52px;
	left: 0;
	padding: 8px 12px;
	background: var(--a4y-paper);
	border-radius: 999px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
}

.product-info {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 15px 4px 2px;
}

.product-type {
	margin: 0 0 5px;
	color: var(--a4y-muted);
	font-size: 11px;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.a4y-product-colours {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	min-height: 18px;
	margin: 0 0 9px;
}

.a4y-product-colour {
	display: block;
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	background: var(--a4y-swatch, transparent);
	border: 1px solid rgba(36, 27, 24, .2);
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
}

.a4y-product-colour--checkerboard {
	background-color: var(--a4y-swatch-light, #fff);
	background-image: repeating-conic-gradient(var(--a4y-swatch-dark, #d9d9d9) 0 25%, var(--a4y-swatch-light, #fff) 0 50%);
	background-size: var(--a4y-swatch-cell, 8px) var(--a4y-swatch-cell, 8px);
}

.a4y-product-colour--multicolor,
.a4y-colour-grid label > span.a4y-colour-swatch--multicolor {
	background: var(--a4y-swatch-gradient, linear-gradient(135deg, #e53935, #fdd835, #43a047, #1e88e5));
}

.a4y-product-colour-more {
	color: var(--a4y-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 17px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.home-products li.product .woocommerce-loop-product__title,
.woocommerce-loop-product__title {
	margin: 0 0 8px;
	padding: 0;
	font-family: var(--a4y-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.home-products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	overflow: hidden;
	min-height: 3.9em;
	font-size: clamp(15px, 1.15vw, 18px);
	line-height: 1.3;
	text-wrap: balance;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.product-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	font-size: 13px;
}

.woocommerce ul.products li.product .price,
.product-meta .price {
	margin: 0;
	color: var(--a4y-ink);
	font-size: 13px;
	font-weight: 700;
}

.woocommerce ul.products li.product .price del {
	color: var(--a4y-muted);
	opacity: .65;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.variants {
	color: var(--a4y-muted);
	text-align: right;
}

.empty-products {
	max-width: 660px;
	margin: 20px auto;
	padding: 64px 32px;
	background: var(--a4y-blush-light);
	border: 1px solid var(--a4y-line);
	border-radius: var(--a4y-radius);
	text-align: center;
}

.empty-products h2,
.empty-products h3 {
	margin: 12px 0 8px;
	font-family: var(--a4y-display);
	font-size: 38px;
	font-weight: 400;
}

.empty-products p {
	margin: 0;
	color: var(--a4y-muted);
}

.empty-gift svg {
	width: 110px;
	margin-inline: auto;
	fill: none;
	stroke: var(--a4y-rose-dark);
	stroke-width: 5;
}

/* Personalisation */
.personalisation {
	overflow: hidden;
}

.personal-wrap {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center;
	gap: 82px;
}

.personal-art {
	position: relative;
	min-height: 590px;
}

.personal-blob {
	position: absolute;
	inset: 38px 10px 10px 50px;
	background: var(--a4y-sage);
	border-radius: 50% 50% 24px 24px;
}

.personal-main-art {
	position: absolute;
	bottom: 7%;
	left: 8%;
	width: 76%;
	height: 78%;
	background: var(--a4y-paper);
	border: 12px solid var(--a4y-paper);
	box-shadow: var(--a4y-shadow);
	transform: rotate(-4deg);
}

.round-note {
	position: absolute;
	right: 3%;
	bottom: 3%;
	display: grid;
	width: 126px;
	aspect-ratio: 1;
	padding: 18px;
	place-items: center;
	background: var(--a4y-rose);
	color: #fff;
	border-radius: 50%;
	font-family: var(--a4y-display);
	font-size: 22px;
	line-height: 1;
	text-align: center;
	transform: rotate(8deg);
}

.steps {
	margin: 36px 0 30px;
	padding: 0;
	border-top: 1px solid var(--a4y-line);
	list-style: none;
}

.step {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--a4y-line);
}

.step-number {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid var(--a4y-ink);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}

.step h3 {
	margin: 2px 0 4px;
	font-size: 16px;
}

.step p {
	margin: 0;
	color: var(--a4y-muted);
	font-size: 14px;
}

/* B2B */
.b2b {
	padding: 36px 0;
}

.b2b-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	min-height: 620px;
	overflow: hidden;
	background: var(--a4y-rose-dark);
	color: #fff;
	border-radius: 32px;
}

.b2b-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(44px, 7vw, 90px);
}

.b2b-copy .section-kicker {
	color: #f0bbb2;
}

.b2b-copy h2 {
	font-size: clamp(52px, 6vw, 86px);
}

.b2b-copy > p {
	max-width: 520px;
	color: rgba(255, 255, 255, .76);
	font-size: 18px;
}

.b2b-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	margin: 24px 0 32px;
	padding: 0;
	list-style: none;
}

.b2b-list li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
}

.b2b-list svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #f0bbb2;
	stroke-width: 2;
}

.b2b-art {
	position: relative;
	min-height: 560px;
}

.b2b-art > svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b2b-art::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, var(--a4y-rose-dark), transparent 34%);
}

.b2b-stamp {
	position: absolute;
	z-index: 2;
	right: 30px;
	bottom: 30px;
	display: grid;
	width: 150px;
	height: 150px;
	padding: 20px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 50%;
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: .12em;
	text-align: center;
	text-transform: uppercase;
	transform: rotate(-8deg);
}

/* Benefits and contact */
.benefits {
	padding: 60px 0 100px;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-block: 1px solid var(--a4y-line);
}

.benefit {
	padding: 38px;
	border-right: 1px solid var(--a4y-line);
}

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

.benefit svg {
	width: 30px;
	height: 30px;
	margin-bottom: 30px;
	fill: none;
	stroke: var(--a4y-rose-dark);
	stroke-width: 1.5;
}

.benefit h3 {
	margin: 0 0 8px;
	font-family: var(--a4y-display);
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
}

.benefit p {
	margin: 0;
	color: var(--a4y-muted);
	font-size: 14px;
}

.contact-strip {
	padding: 96px 0;
	background: var(--a4y-blush);
	border-top: 1px solid var(--a4y-ink);
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 40px;
}

.contact-inner h2 {
	max-width: 800px;
}

.contact-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.contact-actions > a:not(.btn) {
	font-size: 14px;
	border-bottom: 1px solid currentColor;
}

/* Search overlay */
.search-overlay {
	position: fixed;
	z-index: 1900;
	inset: 0;
	display: grid;
	padding: 120px 24px 24px;
	visibility: hidden;
	place-items: start center;
	opacity: 0;
	background: rgba(36, 27, 24, .68);
	backdrop-filter: blur(12px);
	transition: opacity .25s ease, visibility .25s ease;
}

.search-overlay.open {
	visibility: visible;
	opacity: 1;
}

.search-box {
	width: min(760px, 100%);
	padding: 28px;
	background: var(--a4y-paper);
	border-radius: 24px;
	box-shadow: var(--a4y-shadow);
	transform: translateY(-16px);
	transition: transform .25s ease;
}

.search-overlay.open .search-box {
	transform: none;
}

.search-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.search-top strong {
	font-family: var(--a4y-display);
	font-size: 30px;
	font-weight: 400;
}

.search-field {
	display: flex;
	gap: 10px;
}

.search-field input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 58px;
	padding: 0 18px;
	background: var(--a4y-ivory);
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
}

.search-hints {
	margin: 18px 0 0;
	color: var(--a4y-muted);
	font-size: 13px;
}

/* First-visit audience chooser */
.audience-gate[hidden],
.audience-reopen[hidden] {
	display: none !important;
}

.audience-gate {
	position: fixed;
	z-index: 2300;
	inset: 0;
	display: grid;
	padding: 24px;
	visibility: hidden;
	place-items: center;
	opacity: 0;
	background: rgba(36, 27, 24, .72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: opacity .32s ease, visibility .32s ease;
}

.audience-gate.open {
	visibility: visible;
	opacity: 1;
}

.audience-gate-panel {
	position: relative;
	width: min(900px, 100%);
	padding: clamp(32px, 5vw, 60px);
	overflow: hidden;
	background: var(--a4y-paper);
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 34px;
	box-shadow: 0 30px 100px rgba(30, 20, 17, .3);
	transform: translateY(18px) scale(.985);
	transition: transform .35s cubic-bezier(.2, .75, .2, 1);
}

.audience-gate.open .audience-gate-panel {
	transform: none;
}

.audience-gate-panel::after {
	position: absolute;
	z-index: 0;
	top: -140px;
	right: -100px;
	width: 340px;
	height: 340px;
	content: "";
	background: var(--a4y-blush);
	border-radius: 50%;
	opacity: .72;
}

.audience-gate-panel > * {
	position: relative;
	z-index: 1;
}

.audience-gate-spark {
	position: absolute;
	z-index: 2;
	top: 34px;
	right: 42px;
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	color: var(--a4y-rose);
}

.audience-gate-spark svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.audience-gate-panel h2 {
	max-width: 680px;
	margin: 0 0 14px;
	font-family: var(--a4y-display);
	font-size: clamp(52px, 7vw, 84px);
	font-weight: 400;
	line-height: .9;
	letter-spacing: -.035em;
}

.audience-gate-panel > p:not(.section-kicker) {
	max-width: 610px;
	margin: 0;
	color: var(--a4y-muted);
	font-size: 16px;
}

.audience-gate-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 34px;
}

.audience-choice {
	position: relative;
	display: grid;
	grid-template-columns: 58px 1fr 24px;
	align-items: center;
	gap: 16px;
	min-height: 142px;
	padding: 22px;
	overflow: hidden;
	border: 1px solid var(--a4y-line);
	border-radius: 22px;
	text-align: left;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.audience-choice:hover {
	border-color: var(--a4y-ink);
	box-shadow: 0 14px 34px rgba(36, 27, 24, .1);
	transform: translateY(-4px);
}

.audience-choice-private {
	background: var(--a4y-blush-light);
}

.audience-choice-business {
	background: var(--a4y-ink);
	color: #fff;
	border-color: var(--a4y-ink);
}

.audience-choice-icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	background: var(--a4y-paper);
	color: var(--a4y-rose-dark);
	border-radius: 50%;
}

.audience-choice-business .audience-choice-icon {
	background: var(--a4y-blush);
	color: var(--a4y-ink);
}

.audience-choice-icon svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.audience-choice-copy {
	display: grid;
	gap: 5px;
}

.audience-choice-copy strong {
	font-family: var(--a4y-display);
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}

.audience-choice-copy small {
	color: var(--a4y-muted);
	font-size: 12px;
	line-height: 1.4;
}

.audience-choice-business .audience-choice-copy small {
	color: rgba(255, 255, 255, .66);
}

.audience-choice-arrow {
	width: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.audience-gate-later {
	display: block;
	margin: 22px auto 0;
	padding: 6px 3px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid currentColor;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}

.audience-reopen {
	position: fixed;
	z-index: 900;
	right: 22px;
	bottom: 22px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 0 15px;
	background: rgba(255, 253, 249, .92);
	color: var(--a4y-ink);
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(36, 27, 24, .12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.audience-reopen:hover {
	background: var(--a4y-paper);
	transform: translateY(-2px);
}

.audience-reopen-dot {
	width: 8px;
	height: 8px;
	background: var(--a4y-muted);
	border-radius: 50%;
}

html[data-audience="private"] .audience-reopen-dot {
	background: var(--a4y-rose);
}

html[data-audience="business"] .audience-reopen-dot {
	background: #7c8b67;
}

.audience-reopen svg {
	width: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

html[data-audience="private"] .audience-private,
html[data-audience="business"] .audience-business {
	box-shadow: 0 0 0 3px var(--a4y-rose), var(--a4y-shadow);
}

.site-toast {
	position: fixed;
	z-index: 2100;
	bottom: 24px;
	left: 50%;
	padding: 13px 20px;
	opacity: 0;
	background: var(--a4y-ink);
	color: #fff;
	border-radius: 999px;
	box-shadow: var(--a4y-shadow);
	font-size: 13px;
	font-weight: 600;
	transform: translate(-50%, 100px);
	transition: transform .3s ease, opacity .3s ease;
}

.site-toast.show {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* Footer */
.site-footer {
	padding: 72px 0 28px;
	background: var(--a4y-ink);
	color: #f8eee7;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, .7fr);
	gap: 46px;
	padding-bottom: 60px;
}

.footer-brand .brand {
	margin-bottom: 18px;
}

.footer-brand .brand-mark {
	color: var(--a4y-blush);
}

.footer-brand .brand-dot {
	fill: var(--a4y-rose);
}

.footer-brand p {
	max-width: 330px;
	margin: 0;
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
}

.footer-col h2 {
	margin: 4px 0 18px;
	color: rgba(255, 255, 255, .45);
	font-family: var(--a4y-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-col ul,
.footer-col .nav-menu {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-col li {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
}

.footer-col a {
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
}

.footer-col a:hover {
	color: #fff;
}

.footer-col .nav-menu a {
	padding: 0;
}

.footer-col .nav-menu a::after {
	display: none;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	color: rgba(255, 255, 255, .46);
	border-top: 1px solid rgba(255, 255, 255, .15);
	font-size: 12px;
}

.footer-legal a:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Content pages */
.content-main,
.store-main {
	min-height: 70vh;
	padding: 160px 0 100px;
}

.content-container {
	max-width: 1040px;
}

.content-container-narrow {
	max-width: 820px;
}

.entry-header,
.archive-header {
	margin-bottom: 54px;
}

.entry-content {
	font-size: 17px;
}

.entry-content > * {
	max-width: 760px;
	margin-inline: auto;
}

.entry-content > .alignwide,
.entry-content > .alignfull {
	max-width: none;
}

.entry-content h2,
.entry-content h3 {
	font-family: var(--a4y-display);
	font-weight: 400;
	line-height: 1.05;
}

.entry-content h2 {
	margin-top: 2em;
	font-size: 48px;
}

.entry-content h3 {
	font-size: 34px;
}

.entry-content a {
	color: var(--a4y-rose-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-thumbnail {
	margin: 0 0 44px;
}

.entry-thumbnail img {
	width: 100%;
	border-radius: var(--a4y-radius);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 22px;
}

.post-card-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin-bottom: 18px;
	background: var(--a4y-blush-light);
	border-radius: 18px;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card-date {
	margin: 0 0 8px;
	color: var(--a4y-muted);
	font-size: 12px;
	text-transform: uppercase;
}

.post-card h2 {
	margin: 0 0 8px;
	font-family: var(--a4y-display);
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
}

.post-card > p:last-child {
	color: var(--a4y-muted);
	font-size: 14px;
}

.search-results-list {
	border-top: 1px solid var(--a4y-line);
}

.search-result {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 24px;
	padding: 24px 0;
	border-bottom: 1px solid var(--a4y-line);
}

.search-result-thumb {
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--a4y-blush-light);
	border-radius: 14px;
}

.search-result-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.search-result h2 {
	margin: 8px 0;
	font-family: var(--a4y-display);
	font-size: 32px;
	font-weight: 400;
}

.error-main {
	display: grid;
	min-height: 760px;
	padding: 150px 0 90px;
	place-items: center;
	background: var(--a4y-blush);
	text-align: center;
}

.error-code {
	margin: 0;
	color: var(--a4y-rose-dark);
	font-family: var(--a4y-display);
	font-size: 120px;
	line-height: .8;
}

.error-content h1 {
	margin: 20px 0 10px;
	font-family: var(--a4y-display);
	font-size: clamp(54px, 8vw, 94px);
	font-weight: 400;
	line-height: .9;
}

.error-content > p:not(.error-code) {
	max-width: 560px;
	margin: 0 auto 28px;
}

.navigation.pagination {
	margin-top: 50px;
}

.navigation.pagination .nav-links,
.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 8px;
	justify-content: center;
	border: 0;
}

.page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	place-items: center;
	border: 1px solid var(--a4y-line);
	border-radius: 50%;
}

.page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--a4y-ink);
	color: #fff;
}

/* WooCommerce archive */
.store-main {
	background: var(--a4y-paper);
}

.woocommerce-breadcrumb {
	margin: 0 0 22px !important;
	color: var(--a4y-muted) !important;
	font-size: 12px !important;
}

.woocommerce-breadcrumb a {
	color: var(--a4y-muted) !important;
}

.crumb-separator {
	padding-inline: 8px;
}

.woocommerce-products-header {
	max-width: 850px;
	margin-bottom: 52px;
}

.woocommerce-products-header__title {
	font-size: clamp(58px, 7vw, 100px);
}

.term-description {
	max-width: 680px;
	color: var(--a4y-muted);
	font-size: 17px;
}

.woocommerce .woocommerce-result-count {
	margin: 15px 0 34px;
	color: var(--a4y-muted);
	font-size: 13px;
}

.woocommerce .woocommerce-ordering {
	margin: 0 0 34px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce select {
	min-height: 46px;
	padding: 0 42px 0 15px;
	background: var(--a4y-ivory);
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
	color: var(--a4y-ink);
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 54px;
}

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

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	margin-bottom: 28px;
	padding: 18px 22px 18px 52px;
	background: var(--a4y-paper);
	color: var(--a4y-ink);
	border: 1px solid var(--a4y-line);
	border-top: 0;
	border-radius: 16px;
	box-shadow: 0 8px 28px rgba(36, 27, 24, .06);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--a4y-rose-dark);
}

.woocommerce-error {
	border-left: 4px solid var(--a4y-rose);
}

/* Single product */
.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	gap: clamp(42px, 7vw, 94px);
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
	float: none;
	width: auto;
	margin: 0;
}

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

.woocommerce div.product .woocommerce-product-gallery__image {
	overflow: hidden;
	background: var(--a4y-blush-light);
	border-radius: 24px;
}

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

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

.woocommerce div.product .flex-control-thumbs li {
	width: auto;
	overflow: hidden;
	border-radius: 12px;
}

.woocommerce div.product .summary {
	padding-top: 20px;
}

.woocommerce div.product .product_title {
	margin-bottom: 20px;
	font-size: clamp(48px, 5vw, 76px);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin-bottom: 24px;
	color: var(--a4y-rose-dark);
	font-size: 24px;
	font-weight: 700;
}

.woocommerce-product-details__short-description {
	color: var(--a4y-muted);
	font-size: 16px;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0;
	padding: 24px 0;
	border-block: 1px solid var(--a4y-line);
}

.woocommerce div.product form.cart .variations {
	flex-basis: 100%;
	margin-bottom: 10px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	padding: 6px 10px 6px 0;
	text-align: left;
}

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

.woocommerce .quantity .qty {
	width: 70px;
	min-height: 54px;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
}

.product_meta {
	display: grid;
	gap: 5px;
	color: var(--a4y-muted);
	font-size: 12px;
}

.product_meta a {
	color: var(--a4y-ink);
}

.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 70px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 8px;
	margin: 0 0 28px;
	padding: 0;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0 18px;
	background: transparent;
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--a4y-ink);
	color: #fff;
	border-color: var(--a4y-ink);
}

.woocommerce div.product .woocommerce-tabs .panel {
	max-width: 820px;
	font-size: 16px;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.related.products > h2,
.upsells.products > h2 {
	font-family: var(--a4y-display);
	font-size: 48px;
	font-weight: 400;
}

.related.products,
.upsells.products {
	grid-column: 1 / -1;
	margin-top: 80px;
}

/* Cart, checkout and account */
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-form-login,
.woocommerce-form-register {
	padding: 28px;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 22px;
}

.woocommerce table.shop_table {
	border: 0;
	border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 18px 12px;
	border-bottom: 1px solid var(--a4y-line);
}

.woocommerce-cart-form .product-thumbnail img {
	width: 80px;
	border-radius: 10px;
}

.woocommerce .cart-collaterals {
	margin-top: 30px;
}

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

.cart_totals h2,
.woocommerce-checkout h3 {
	margin-bottom: 24px;
	font-size: 40px;
}

.checkout_coupon {
	border: 1px solid var(--a4y-line) !important;
	border-radius: 18px;
}

.woocommerce form .form-row {
	margin-bottom: 16px;
}

.woocommerce form .form-row label {
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	min-height: 52px;
	padding: 12px 15px;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 12px;
}

.a4y-customer-type-field .woocommerce-input-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.a4y-customer-type-field .woocommerce-input-wrapper > input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.a4y-customer-type-field .woocommerce-input-wrapper label.radio {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 124px;
	min-height: 48px;
	margin: 0;
	padding: 0 18px;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
	color: var(--a4y-ink);
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.a4y-customer-type-field input[type="radio"]:checked + label {
	background: var(--a4y-ink);
	color: #fff;
	border-color: var(--a4y-ink);
}

.a4y-customer-type-field input[type="radio"]:focus-visible + label {
	outline: 3px solid var(--a4y-rose);
	outline-offset: 3px;
}

.a4y-customer-type-field input[type="radio"]:not(:checked) + label:hover {
	border-color: var(--a4y-ink);
	transform: translateY(-1px);
}

.a4y-customer-type-field input[type="radio"]:checked + label .required {
	color: inherit;
}

.a4y-company-field.a4y-field-hidden {
	display: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 26px;
}

.woocommerce-checkout #payment {
	background: var(--a4y-blush-light);
	border-radius: 18px;
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--a4y-paper);
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--a4y-paper);
}

/* The PayU pending-payment heading already contains the accessible logo. */
#payu-payment-status .payu-payment-status-title {
	font-size: 0;
}

.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 26px;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: auto;
}

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

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

.woocommerce-MyAccount-navigation li + li {
	border-top: 1px solid var(--a4y-line);
}

.woocommerce-MyAccount-navigation a {
	display: block;
	padding: 12px 0;
	font-weight: 600;
}

/* Reveal: content stays visible when JavaScript is unavailable. */
.reveal {
	opacity: 1;
	transform: none;
}

.reveal.visible {
	animation: all4you-reveal .65s both;
}

@keyframes all4you-reveal {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1020px) {
	.nav-island {
		position: relative;
		grid-template-columns: auto 1fr auto;
	}

	.brand,
	.nav-actions {
		position: relative;
		z-index: 12;
	}

	.menu-toggle {
		display: grid;
	}

	.desktop-action {
		display: none;
	}

	.nav-island .nav-links {
		position: absolute;
		z-index: 10;
		inset: 0 0 auto;
		display: flex;
		min-height: calc(100dvh - 36px);
		padding: 115px 36px 42px;
		visibility: hidden;
		justify-content: flex-start;
		opacity: 0;
		background: var(--a4y-ink);
		color: var(--a4y-ivory);
		border-radius: 34px;
		box-shadow: var(--a4y-shadow);
		transform: translateY(-12px);
		transition: .25s ease;
	}

	.menu-open .nav-island {
		background: transparent;
		border-color: transparent;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.menu-open .brand,
	.menu-open .nav-actions {
		color: var(--a4y-ivory);
	}

	.menu-open .brand-dot {
		fill: var(--a4y-blush);
	}

	.menu-open .cart-count {
		border-color: var(--a4y-ink);
	}

	.menu-open .nav-island .nav-links {
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	.nav-menu {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 10px;
		width: 100%;
	}

	.nav-menu a {
		padding: 3px 0;
		font-family: var(--a4y-display);
		font-size: 46px;
		font-weight: 400;
		line-height: 1;
	}

	.nav-menu > li > a::after {
		display: none;
	}

	.nav-menu .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 5px 0 5px 20px;
		visibility: visible;
		opacity: 1;
		background: transparent;
		color: rgba(255, 255, 255, .75);
		border: 0;
		box-shadow: none;
		transform: none;
	}

	.nav-menu li:focus-within > .sub-menu {
		display: block;
	}

	.nav-menu .sub-menu a {
		font-family: var(--a4y-body);
		font-size: 15px;
	}

	.submenu-toggle {
		position: absolute;
		top: 0;
		right: -48px;
		display: grid;
		width: 42px;
		height: 42px;
		padding: 0;
		place-items: center;
		background: transparent;
		color: currentColor;
		border: 1px solid rgba(255, 255, 255, .3);
		border-radius: 50%;
		cursor: pointer;
	}

	.submenu-toggle svg {
		width: 16px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2;
		transition: transform .2s ease;
	}

	.nav-menu li.submenu-open > .sub-menu {
		display: block;
	}

	.nav-menu li.submenu-open > .submenu-toggle svg {
		transform: rotate(180deg);
	}

	.hero {
		min-height: 850px;
	}

	.hero-note {
		display: none;
	}

	.woocommerce ul.products,
	ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 14px;
	}

	.personal-wrap {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.personal-art {
		width: 100%;
		max-width: 650px;
		margin-inline: auto;
	}

	.b2b-panel {
		grid-template-columns: 1fr;
	}

	.b2b-art {
		min-height: 430px;
	}

	.b2b-art::after {
		background: linear-gradient(180deg, var(--a4y-rose-dark), transparent 35%);
	}

	.footer-top {
		grid-template-columns: 1.5fr 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 782px) {
	.admin-bar .nav-wrap {
		top: 56px;
	}
}

@media (max-width: 700px) {
	.container {
		width: min(100% - 30px, 1240px);
	}

	.nav-wrap {
		top: 10px;
		padding-inline: 10px;
	}

	.admin-bar .nav-wrap {
		top: 56px;
	}

	.nav-island {
		min-height: 60px;
		padding: 7px 8px 7px 15px;
		gap: 8px;
	}

	.brand {
		font-size: 20px;
	}

	.brand-mark {
		width: 26px;
		height: 26px;
	}

	.brand .custom-logo {
		max-width: 120px;
		height: 34px;
	}

	.icon-btn {
		width: 42px;
		height: 42px;
	}

	.cart-count {
		top: 1px;
		right: -1px;
	}

	.nav-island .nav-links {
		min-height: calc(100dvh - 20px);
		padding: 112px 36px 40px;
	}

	.nav-menu a {
		font-size: 44px;
	}

	.hero {
		min-height: 790px;
		padding-top: 130px;
	}

	.hero h1 {
		font-size: clamp(58px, 18vw, 86px);
		line-height: .84;
	}

	.hero-lead {
		margin-top: 22px;
		font-size: 16px;
	}

	.gift-stage {
		height: 310px;
		margin-top: 24px;
	}

	.stage-arch {
		bottom: -45px;
		width: 112vw;
		height: 275px;
	}

	.photo-card {
		border-width: 7px;
	}

	.photo-card-a {
		bottom: 8px;
		left: calc(50% - 155px);
		width: 150px;
		height: 205px;
	}

	.photo-card-b {
		bottom: -4px;
		width: 190px;
		height: 245px;
	}

	.photo-card-c {
		bottom: 18px;
		left: calc(50% + 34px);
		width: 145px;
		height: 190px;
	}

	.gift-tag {
		padding: 7px 9px;
		box-shadow: 2px 2px 0 var(--a4y-ink);
		font-size: 9px;
	}

	.tag-a {
		bottom: 160px;
		left: 4px;
	}

	.tag-b {
		right: 5px;
		bottom: 205px;
		left: auto;
	}

	.tag-c {
		display: none;
	}

	.section {
		padding: 82px 0;
	}

	.section-head {
		display: block;
		margin-bottom: 34px;
	}

	.section-head .section-head-actions {
		justify-items: start;
		gap: 14px;
		margin-top: 20px;
	}

	.section-head > p,
	.section-head > .text-link {
		margin-top: 20px;
	}

	.section h2,
	.section-head h2,
	.contact-strip h2,
	.entry-title,
	.woocommerce-products-header__title {
		font-size: 50px;
	}

	.audience-grid {
		grid-template-columns: 1fr;
	}

	.audience-card {
		min-height: 430px;
	}

	.audience-content {
		right: 22px;
		bottom: 24px;
		left: 22px;
	}

	.product-visual {
		border-radius: 15px;
	}

	.woocommerce ul.products,
	ul.products {
		gap: 28px 10px;
	}

	.audience-product-section .audience-products-grid.home-offer-shelf {
		row-gap: 32px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 13px;
	}

	.product-meta {
		display: block;
		font-size: 12px;
	}

	.variants {
		margin-top: 3px;
		text-align: left;
	}

	.quick-add-wrap {
		position: static;
		margin: -59px 8px 8px;
		transform: none;
	}

	/* The base WooCommerce button rule is more specific than the catalogue
	 * shortcut above. Repeat the full path here so the mobile CTA is reliably
	 * filled, readable and touch-friendly on every product card. */
	.woocommerce ul.products li.product.a4y-product-card > .button {
		width: calc(100% - 8px);
		min-height: 50px;
		margin: 10px 4px 0;
		padding: 0 14px;
		background: var(--a4y-ink);
		color: #fff;
		border: 1px solid var(--a4y-ink);
		border-radius: 14px;
		box-shadow: 0 8px 18px rgba(36, 27, 24, .14);
		font-size: 12px;
		font-weight: 700;
		line-height: 1.2;
		transition: transform .2s ease, background .2s ease, color .2s ease,
			box-shadow .2s ease;
	}

	.woocommerce ul.products li.product.a4y-product-card > .button:hover,
	.woocommerce ul.products li.product.a4y-product-card > .button:focus-visible {
		background: var(--a4y-rose-dark);
		color: #fff;
		border-color: var(--a4y-rose-dark);
		box-shadow: 0 10px 22px rgba(126, 47, 43, .22);
		transform: translateY(-2px);
	}

	.woocommerce ul.products li.product.a4y-product-card > .button:active {
		box-shadow: 0 4px 10px rgba(36, 27, 24, .16);
		transform: translateY(0);
	}

	.woocommerce ul.products li.product.a4y-product-card > .button.add_to_cart_button {
		background: var(--a4y-ink);
		color: #fff;
		border-color: var(--a4y-ink);
		box-shadow: 0 8px 18px rgba(36, 27, 24, .14);
	}

	.personal-art {
		min-height: 440px;
	}

	.round-note {
		width: 96px;
		font-size: 17px;
	}

	.b2b {
		padding: 15px 0;
	}

	.b2b-panel {
		border-radius: 24px;
	}

	.b2b-copy {
		padding: 42px 25px;
	}

	.b2b-copy h2 {
		font-size: 54px;
	}

	.b2b-list {
		grid-template-columns: 1fr;
	}

	.b2b-art {
		min-height: 330px;
	}

	.b2b-stamp {
		right: 18px;
		bottom: 18px;
		width: 112px;
		height: 112px;
		font-size: 9px;
	}

	.benefit-grid {
		grid-template-columns: 1fr;
	}

	.benefit {
		padding: 30px 4px;
		border-right: 0;
		border-bottom: 1px solid var(--a4y-line);
	}

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

	.benefit svg {
		margin-bottom: 16px;
	}

	.contact-inner {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 34px 20px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.search-field {
		flex-direction: column;
	}

	.search-overlay {
		padding: 90px 14px 14px;
	}

	.search-box {
		padding: 20px;
	}

	.audience-gate {
		padding: 10px;
		place-items: end center;
	}

	.audience-gate-panel {
		max-height: calc(100dvh - 20px);
		padding: 34px 20px 24px;
		overflow-y: auto;
		border-radius: 28px;
	}

	.audience-gate-spark {
		top: 24px;
		right: 24px;
		width: 38px;
		height: 38px;
	}

	.audience-gate-panel h2 {
		max-width: 300px;
		font-size: 52px;
	}

	.audience-gate-options {
		grid-template-columns: 1fr;
		margin-top: 26px;
	}

	.audience-choice {
		min-height: 116px;
		padding: 17px;
	}

	.audience-choice-copy strong {
		font-size: 25px;
	}

	.audience-reopen {
		right: 12px;
		bottom: 12px;
		max-width: calc(100vw - 24px);
	}

	.content-main,
	.store-main {
		padding: 130px 0 74px;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.search-result {
		grid-template-columns: 90px 1fr;
		gap: 14px;
	}

	.woocommerce div.product {
		display: block;
	}

	.woocommerce div.product .summary {
		padding-top: 34px;
	}

	.woocommerce div.product .product_title {
		font-size: 48px;
	}

	.woocommerce div.product .woocommerce-tabs {
		margin-top: 55px;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs {
		flex-wrap: wrap;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		flex: 1;
		text-align: center;
	}

	.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}

	.woocommerce table.shop_table_responsive tr td::before {
		font-weight: 700;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	.reveal.visible {
		animation: none;
	}
}

/* --------------------------------------------------------------
   Store refinements — v1.4
-------------------------------------------------------------- */

.brand .custom-logo {
	width: 116px;
	max-width: none;
	height: 60px;
	object-fit: contain;
}

.site-footer .brand .custom-logo {
	width: 128px;
	height: 88px;
}

.search-box {
	width: min(880px, 100%);
}

.search-discovery {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.search-all-products {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 22px;
	background: var(--a4y-blush-light);
	border: 1px solid var(--a4y-line);
	border-radius: 20px;
	transition: transform .2s ease, border-color .2s ease;
}

.search-all-products:hover {
	border-color: var(--a4y-ink);
	transform: translateY(-2px);
}

.search-all-products span {
	display: grid;
	gap: 2px;
}

.search-all-products small {
	color: var(--a4y-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.search-all-products strong {
	font-family: var(--a4y-display);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 400;
	line-height: 1;
}

.search-all-products svg {
	flex: 0 0 auto;
	width: 28px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.search-category-links,
.catalogue-category-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.search-category-links a,
.catalogue-category-links a {
	padding: 8px 12px;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.search-category-links a:hover,
.catalogue-category-links a:hover {
	background: var(--a4y-ink);
	color: #fff;
	border-color: var(--a4y-ink);
}

.catalogue-entry-section {
	padding-bottom: 30px;
	background: var(--a4y-paper);
}

.catalogue-entry {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
	gap: clamp(54px, 8vw, 110px);
	align-items: center;
	padding: clamp(34px, 5vw, 68px);
	background: var(--a4y-blush-light);
	border: 1px solid var(--a4y-line);
	border-radius: 34px;
}

.catalogue-entry h2 {
	margin-bottom: 18px;
}

.catalogue-entry h2 em {
	color: var(--a4y-rose-dark);
	font-weight: 400;
}

.catalogue-entry-copy > p:last-child {
	max-width: 560px;
	margin: 0;
	color: var(--a4y-muted);
}

.catalogue-entry-tools {
	display: grid;
	gap: 18px;
}

.catalogue-home-search {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	padding: 7px;
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 999px;
	box-shadow: 0 12px 34px rgba(36, 27, 24, .07);
}

.catalogue-home-search input {
	min-width: 0;
	height: 54px;
	padding: 0 18px;
	background: transparent;
	border: 0;
	outline: 0;
}

.catalogue-home-search button {
	display: grid;
	width: 54px;
	height: 54px;
	padding: 0;
	place-items: center;
	background: var(--a4y-ink);
	color: #fff;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.catalogue-home-search button svg {
	width: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.7;
}

.catalogue-entry-tools > .btn {
	justify-self: start;
}

.audience-product-section {
	background: var(--a4y-paper);
}

.audience-product-section-secondary {
	background: var(--a4y-blush-light);
}

.section-head-actions {
	display: grid;
	justify-items: end;
	gap: 16px;
}

.shelf-count {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--a4y-rose-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.shelf-count::before {
	width: 8px;
	height: 8px;
	content: "";
	background: var(--a4y-rose);
	border: 3px solid var(--a4y-blush);
	border-radius: 50%;
	box-sizing: content-box;
}

.shelf-summary .shelf-count {
	display: flex;
	margin-bottom: 10px;
}

.audience-products-grid.home-offer-shelf {
	row-gap: 46px;
}

[data-audience-panel="business"] {
	display: none;
}

html[data-audience="business"] [data-audience-panel="private"] {
	display: none;
}

html[data-audience="business"] [data-audience-panel="business"] {
	display: block;
}

html[data-audience="private"] [data-audience-panel="private"] {
	display: block;
}

.audience-products-grid {
	margin-bottom: 0 !important;
}

/* Product-card actions need explicit alignment because WooCommerce mixes
   buttons and links in the same grid. */
.woocommerce ul.products li.product .quick-add-wrap .button,
.quick-add-wrap .button,
.woocommerce ul.products li.product.a4y-product-card > .button,
.a4y-product-card > .button {
	align-items: center;
	justify-content: center;
	min-width: 0;
	text-align: center;
	line-height: 1.2;
	overflow-wrap: anywhere;
	white-space: normal;
}

/* Product layout: remove WooCommerce clearfix pseudo-elements from CSS grid. */
.woocommerce div.product::before,
.woocommerce div.product::after {
	display: none;
	content: none;
}

.woocommerce div.product {
	grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
	gap: clamp(46px, 6vw, 82px);
}

.woocommerce div.product div.images.woocommerce-product-gallery,
.woocommerce div.product div.summary {
	width: 100% !important;
	max-width: none;
}

.woocommerce div.product .product_title {
	margin-bottom: 18px;
	font-size: clamp(34px, 3.5vw, 52px);
	line-height: .98;
	text-wrap: balance;
}

.a4y-product-description-preview {
	margin: 0 0 22px;
	padding: 18px 20px;
	background: var(--a4y-blush-light);
	border-left: 3px solid var(--a4y-rose);
	border-radius: 0 16px 16px 0;
}

.a4y-product-description-preview p {
	margin: 0 0 9px;
	color: var(--a4y-muted);
	font-size: 15px;
	line-height: 1.65;
}

.a4y-product-description-preview a {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.woocommerce div.product .woocommerce-tabs {
	margin-top: 42px;
}

/* Products with imported Shoper options keep the purchase form intact, but
   place it beside the full description instead of pushing the description
   below a very tall right-hand column. */
.woocommerce div.product.a4y-has-personalization {
	align-items: start;
}

.woocommerce div.product.a4y-has-personalization .a4y-personalization {
	flex: 1 0 100%;
	width: 100%;
	max-width: 100%;
	margin: 20px 0;
	padding: 20px;
}

.woocommerce div.product.a4y-has-personalization .a4y-personalization__heading {
	margin-bottom: 16px;
}

.woocommerce div.product.a4y-has-personalization .a4y-personalization__heading h3 {
	font-size: clamp(22px, 2.2vw, 28px);
}

.woocommerce div.product.a4y-has-personalization .a4y-option {
	margin-bottom: 13px;
}

.woocommerce div.product.a4y-has-personalization .a4y-option legend {
	margin-bottom: 6px;
}

.woocommerce div.product.a4y-has-personalization .a4y-choice-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
}

.woocommerce div.product.a4y-has-personalization .a4y-choice {
	flex-direction: row;
	align-items: center;
	gap: 6px;
	padding: 7px;
}

.woocommerce div.product.a4y-has-personalization .a4y-choice__visual {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	aspect-ratio: 1;
}

.woocommerce div.product.a4y-has-personalization .a4y-choice__visual i {
	width: 20px;
	height: 20px;
}

.woocommerce div.product.a4y-has-personalization .a4y-choice__label {
	min-width: 0;
	text-align: left;
}

@media (min-width: 701px) {
	.woocommerce div.product.a4y-has-personalization {
		grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
		column-gap: clamp(34px, 4.5vw, 64px);
		row-gap: 0;
	}

	.woocommerce div.product.a4y-has-personalization .woocommerce-product-gallery {
		grid-column: 1;
		grid-row: 1;
		align-self: start;
	}

	.woocommerce div.product.a4y-has-personalization .summary {
		grid-column: 2;
		grid-row: 1 / span 2;
		align-self: start;
		padding-top: 0;
	}

	.woocommerce div.product.a4y-has-personalization .a4y-product-description-preview {
		display: none;
	}

	.woocommerce div.product.a4y-has-personalization .woocommerce-tabs {
		grid-column: 1;
		grid-row: 2;
		min-width: 0;
		margin-top: 34px;
	}

	.woocommerce div.product.a4y-has-personalization .woocommerce-tabs .panel {
		max-width: none;
	}
}

.woocommerce-products-header {
	margin-bottom: 38px;
}

.woocommerce-products-header__title {
	font-size: clamp(48px, 5.5vw, 76px);
}

.store-main h1.page-title {
	margin-bottom: 36px;
	font-size: clamp(44px, 5vw, 68px);
}

/* Advanced catalogue */
.a4y-catalogue-shell {
	clear: both;
	display: grid;
	grid-template-columns: 282px minmax(0, 1fr);
	gap: clamp(30px, 4vw, 56px);
	align-items: start;
}

.a4y-catalogue-results {
	min-width: 0;
}

/* WooCommerce assigns a percentage width to its product columns. The
 * catalogue itself is a CSS grid, so each card must fill its grid track at
 * every breakpoint instead of inheriting a narrow percentage width. */
.a4y-catalogue-results ul.products[class*="columns-"] > li.product {
	width: 100%;
	margin: 0;
}

.a4y-catalogue-results::after {
	display: table;
	clear: both;
	content: "";
}

.a4y-filter-panel {
	position: static;
	padding: 24px;
	background: var(--a4y-ink);
	color: #fff;
	border-radius: 24px;
	box-shadow: var(--a4y-shadow);
}

.a4y-filter-heading {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.a4y-filter-heading span {
	display: block;
	margin-bottom: 2px;
	color: rgba(255, 255, 255, .62);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.a4y-filter-heading h2 {
	margin: 0;
	color: #fff;
	font-family: var(--a4y-display);
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
}

.a4y-filter-close {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
}

.a4y-filter-form {
	display: grid;
	gap: 0;
}

.a4y-filter-form fieldset {
	margin: 0;
	padding: 20px 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.a4y-filter-form legend {
	margin-bottom: 12px;
	padding: 0;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.a4y-price-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.a4y-price-fields label,
.a4y-stock-field {
	display: grid;
	gap: 5px;
}

.a4y-price-fields label span,
.a4y-stock-field span {
	color: rgba(255, 255, 255, .64);
	font-size: 11px;
}

.a4y-filter-form input[type="number"],
.a4y-filter-form select {
	width: 100%;
	min-width: 0;
	height: 44px;
	padding: 0 10px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: 8px;
}

.a4y-filter-form select option {
	background: var(--a4y-ink);
	color: #fff;
}

.a4y-colour-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.a4y-colour-grid label {
	position: relative;
	display: block;
	aspect-ratio: 1;
	cursor: pointer;
}

.a4y-colour-grid label.a4y-colour-filter--review {
	cursor: not-allowed;
	opacity: .58;
}

.a4y-colour-grid input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.a4y-colour-grid label > span {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--a4y-swatch);
	border: 2px solid rgba(255, 255, 255, .28);
	border-radius: 7px;
	box-shadow: inset 0 0 0 1px rgba(36, 27, 24, .18);
}

.a4y-colour-grid label > span.a4y-colour-swatch--checkerboard {
	background-color: var(--a4y-swatch-light, #fff);
	background-image: repeating-conic-gradient(var(--a4y-swatch-dark, #d9d9d9) 0 25%, var(--a4y-swatch-light, #fff) 0 50%);
	background-size: var(--a4y-swatch-cell, 8px) var(--a4y-swatch-cell, 8px);
}

.a4y-colour-grid label > span.a4y-colour-swatch--multicolor {
	background: var(--a4y-swatch-gradient, linear-gradient(135deg, #e53935, #fdd835, #43a047, #1e88e5));
}

.a4y-colour-grid input:checked + span {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.a4y-feature-list {
	display: grid;
	gap: 10px;
}

.a4y-feature-list label {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, .78);
	cursor: pointer;
	font-size: 13px;
}

.a4y-feature-list input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--a4y-rose);
}

.a4y-filter-actions {
	display: grid;
	gap: 12px;
	padding-top: 8px;
	text-align: center;
}

.a4y-filter-actions .btn {
	width: 100%;
	background: var(--a4y-rose);
}

.a4y-filter-actions > a {
	color: rgba(255, 255, 255, .72);
	font-size: 12px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.a4y-filter-toggle,
.a4y-filter-backdrop {
	display: none;
}

/* WooCommerce Cart and Checkout blocks */
.woocommerce-cart .entry-content > .alignwide,
.woocommerce-checkout .entry-content > .alignwide {
	width: 100%;
	max-width: none;
	margin-left: 0;
	transform: none;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	margin-top: 10px;
}

.wc-block-components-sidebar-layout {
	gap: clamp(28px, 4vw, 54px);
}

.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
	min-width: 0;
}

.wc-block-cart-items,
.wc-block-components-sidebar,
.wc-block-components-checkout-step {
	background: var(--a4y-paper);
	border: 1px solid var(--a4y-line);
	border-radius: 20px;
}

.wc-block-cart-items {
	overflow: hidden;
}

.wc-block-cart-items__header {
	padding: 14px 20px !important;
	background: var(--a4y-blush-light);
}

.wc-block-cart-items__row {
	padding-inline: 20px !important;
}

.wc-block-components-sidebar {
	align-self: start;
	padding: 24px !important;
}

.wc-block-components-checkout-step {
	margin-bottom: 18px;
	padding: 24px;
}

.wc-block-components-checkout-step__heading {
	margin-top: 0 !important;
}

.wc-block-components-title {
	font-family: var(--a4y-display);
	font-size: 30px !important;
	font-weight: 400 !important;
}

.wc-block-components-text-input input,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-combobox .wc-block-components-combobox-control input {
	min-height: 52px !important;
	background: var(--a4y-paper) !important;
	border-color: var(--a4y-line) !important;
	border-radius: 12px !important;
}

.wc-block-components-button:not(.is-link) {
	min-height: 52px;
	background: var(--a4y-ink);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
}

.wc-block-components-button:not(.is-link):hover {
	background: var(--a4y-rose-dark);
	color: #fff;
}

.wc-block-components-notice-banner {
	border-radius: 14px;
}

@media (min-width: 981px) {
	.woocommerce-cart .wc-block-components-sidebar-layout.is-large,
	.woocommerce-checkout .wc-block-components-sidebar-layout {
		flex-wrap: nowrap;
	}

	.woocommerce-cart .wc-block-components-sidebar-layout.is-large > .wc-block-components-main,
	.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-main {
		flex: 1 1 0 !important;
		width: auto !important;
	}

	.woocommerce-cart .wc-block-components-sidebar-layout.is-large > .wc-block-components-sidebar,
	.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-sidebar {
		flex: 0 0 min(350px, 34%) !important;
		width: auto !important;
	}
}

@media (max-width: 980px) {
	.catalogue-entry {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.a4y-catalogue-shell {
		display: block;
	}

	.a4y-filter-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		min-height: 52px;
		margin: 0 0 26px;
		padding: 0 18px;
		background: var(--a4y-ink);
		color: #fff;
		border: 0;
		border-radius: 999px;
		cursor: pointer;
		font-weight: 700;
	}

	.a4y-filter-toggle strong {
	display: grid;
		width: 26px;
		height: 26px;
		place-items: center;
		background: var(--a4y-rose);
		border-radius: 50%;
		font-size: 12px;
	}

	.a4y-filter-panel {
		position: fixed;
		z-index: 1400;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(390px, calc(100vw - 28px));
		max-height: none;
		padding: 26px;
		overflow-y: auto;
		scrollbar-gutter: auto;
		border-radius: 0 24px 24px 0;
		transform: translateX(-104%);
		transition: transform .28s ease;
	}

	.admin-bar .a4y-filter-panel {
		top: 0;
		max-height: none;
	}

	body.catalogue-filter-open {
		overflow: hidden;
	}

	body.catalogue-filter-open .a4y-filter-panel {
		transform: translateX(0);
	}

	.a4y-filter-close {
		display: block;
	}

	.a4y-filter-backdrop {
		position: fixed;
		z-index: 1390;
		inset: 0;
		width: 100%;
		height: 100%;
		padding: 0;
		background: rgba(36, 27, 24, .55);
		border: 0;
		opacity: 0;
		pointer-events: none;
		transition: opacity .25s ease;
	}

	body.catalogue-filter-open .a4y-filter-backdrop {
		display: block;
		opacity: 1;
		pointer-events: auto;
	}
}

@media (max-width: 700px) {
	.brand .custom-logo {
		width: 90px;
		height: 50px;
	}

	.catalogue-entry {
		padding: 28px 20px;
		border-radius: 24px;
	}

	.catalogue-entry h2 {
		font-size: 46px;
	}

	.catalogue-home-search {
		border-radius: 18px;
	}

	.catalogue-home-search input {
		height: 50px;
		padding-inline: 12px;
	}

	.catalogue-home-search button {
		width: 50px;
		height: 50px;
	}

	.catalogue-entry-tools > .btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.search-all-products {
		padding: 17px;
	}

	.search-all-products strong {
		font-size: 25px;
	}

	.woocommerce div.product .product_title {
		font-size: clamp(32px, 10vw, 44px);
		line-height: 1;
	}

	.a4y-product-description-preview {
		padding: 16px;
	}

	.woocommerce div.product .woocommerce-tabs {
		margin-top: 34px;
	}

	.woocommerce div.product .woocommerce-tabs .panel h2,
	.related.products > h2,
	.upsells.products > h2 {
		font-size: 38px;
	}

	.woocommerce-cart .content-container,
	.woocommerce-checkout .content-container {
		width: min(100% - 24px, 1240px);
	}

	.wc-block-components-sidebar-layout {
		gap: 18px;
	}

	.wc-block-cart-items__row,
	.wc-block-components-sidebar,
	.wc-block-components-checkout-step {
		padding: 16px !important;
		border-radius: 16px;
	}
}
