:root {
	/* Mockup palette */
	--apx-navy: #001529;
	--apx-navy-2: #0a2240;
	--apx-black: #1a1a1a;
	--apx-cream: #f9f8f6;
	--apx-sand: #ece8e2;
	--apx-white: #ffffff;
	--apx-grey: #e8e4de;
	--apx-grey-2: #d5d0c8;
	--apx-muted: #6b6560;
	--apx-text: #1a1a1a;
	--apx-blue: #98afe0;
	--apx-gold: #b08d57;
	--apx-accent-green: #00b67a;
	--apx-max: 1240px;
	--apx-radius: 8px;
	--apx-radius-sm: 6px;
	--apx-header: 88px;
	--apx-shadow: 0 8px 32px rgba(0, 21, 41, 0.08);
	--apx-shadow-soft: 0 2px 12px rgba(0, 21, 41, 0.05);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
	color: var(--apx-text);
	background: var(--apx-cream);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	overflow-x: clip;
	width: 100%;
	max-width: 100%;
	position: relative;
}
body.apx-nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
h1, h2, .apx-hero h1, .apx-section__head h2, .apx-pdp__title {
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: -0.01em;
}

.apx-container {
	width: min(var(--apx-max), calc(100% - 40px));
	max-width: 100%;
	min-width: 0;
	margin-inline: auto;
}

.apx-main,
.apx-announcement,
.apx-section {
	max-width: 100%;
	min-width: 0;
}
.apx-header,
.apx-hero,
.apx-usp-bar,
.apx-footer,
.apx-newsletter,
.apx-stats-bar,
.apx-banner,
.apx-page {
	max-width: 100%;
	min-width: 0;
	overflow-x: clip;
}

.screen-reader-text,
.woocommerce-product-gallery__trigger {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}

/* Buttons */
.apx-btn,
.button,
button.button,
a.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
#place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: var(--apx-radius);
	background: var(--apx-navy);
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.18s ease;
	text-decoration: none !important;
}

.apx-btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--apx-navy-2);
	transform: translateY(-1px);
}

.apx-btn--light { background: var(--apx-cream); color: var(--apx-navy) !important; }
.apx-btn--light:hover { background: var(--apx-sand); }
.apx-btn--ghost-light {
	background: transparent;
	border-color: rgba(255,255,255,.45);
	color: #fff !important;
}
.apx-btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.apx-btn--dark { background: var(--apx-navy); color: #fff !important; }
.apx-btn--ghost {
	background: transparent;
	border-color: var(--apx-navy);
	color: var(--apx-navy) !important;
}
.apx-btn--ghost:hover {
	background: var(--apx-navy);
	border-color: var(--apx-navy);
	color: #fff !important;
}
.apx-btn--outline {
	background: transparent;
	border-color: var(--apx-navy);
	color: var(--apx-navy) !important;
}
.apx-btn--outline:hover {
	background: var(--apx-navy);
	color: #fff !important;
}
.apx-btn--block,
.apx-card .add_to_cart_button,
.single_add_to_cart_button { width: 100%; }
.apx-btn__icon { display: inline-flex; }
.apx-btn__icon svg { width: 16px; height: 16px; }

.apx-kicker {
	margin: 0 0 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--apx-muted);
}
.apx-kicker--light { color: rgba(255,255,255,.65); }

.apx-icon-btn {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--apx-navy);
	cursor: pointer;
	position: relative;
}

.apx-kicker--gold { color: var(--apx-gold); }

/* Announcement */
.apx-announcement {
	background: var(--apx-navy);
	color: rgba(255,255,255,.92);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.apx-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 10px 0;
	flex-wrap: wrap;
	min-width: 0;
	max-width: 100%;
}
.apx-announcement__items {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 36px;
	flex-wrap: wrap;
	flex: 1 1 0;
	min-width: 0;
}
.apx-announcement span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.apx-announcement svg { opacity: .95; color: var(--apx-gold); }

.apx-trustpilot {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}
.apx-trustpilot__stars {
	display: inline-flex;
	gap: 2px;
	color: #00b67a;
}
.apx-trustpilot--box { margin-top: 14px; color: rgba(255,255,255,.85); }

/* Header */
.apx-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #fff;
	border-bottom: 1px solid rgba(28, 46, 74, 0.08);
	box-shadow: 0 2px 12px rgba(28, 46, 74, 0.04);
}
.apx-header__inner {
	min-height: var(--apx-header);
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}
.apx-logo { display: flex; align-items: center; flex-shrink: 0; color: var(--apx-navy); }
.apx-header .apx-logo { min-width: 0; }
.apx-logo__img,
.apx-logo img,
.custom-logo-link img,
img.custom-logo {
	display: block;
	width: auto;
	height: 72px;
	max-width: min(420px, 100%);
	object-fit: contain;
	object-position: left center;
	background: transparent;
}
.apx-header .apx-logo__img,
.apx-header .apx-logo img,
.apx-header .custom-logo-link img,
.apx-header img.custom-logo {
	height: 68px;
	max-width: min(400px, calc(100% - 140px));
}
.apx-footer .apx-logo {
	margin-bottom: 20px;
}
.apx-footer .apx-logo__img,
.apx-footer .apx-logo img,
.apx-footer .custom-logo-link img {
	height: 64px;
	max-width: min(380px, 100%);
	background: transparent;
	border-radius: 0;
	padding: 0;
	box-sizing: border-box;
}
.apx-logo--footer { opacity: 1; }
.apx-logo__text { display: flex; flex-direction: column; line-height: 1; }
.apx-logo__text { display: flex; flex-direction: column; line-height: 1; }
.apx-logo__text strong { font-size: 18px; letter-spacing: 0.18em; }
.apx-logo__text small { font-size: 10px; letter-spacing: 0.32em; margin-top: 4px; color: var(--apx-muted); }
.apx-logo--light { color: #fff; }
.apx-logo--light small { color: rgba(255,255,255,.55); }
.apx-nav { display: flex; justify-content: center; gap: 28px; }
.apx-nav a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--apx-navy);
	position: relative;
	padding-bottom: 4px;
}
.apx-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--apx-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}
.apx-nav a:hover::after { transform: scaleX(1); }
.apx-nav a:hover { color: var(--apx-navy); }
.apx-header__tools { display: flex; align-items: center; gap: 4px; }
.apx-cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 99px;
	background: var(--apx-gold);
	color: var(--apx-navy);
	font-size: 10px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.apx-nav-toggle { display: none; }
.apx-nav-toggle__close { display: none; }
.apx-nav-toggle[aria-expanded="true"] .apx-nav-toggle__open { display: none; }
.apx-nav-toggle[aria-expanded="true"] .apx-nav-toggle__close { display: inline-flex; }
.apx-nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(7, 21, 40, .45);
	z-index: 30;
}
.apx-search-panel {
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 16px 0 20px;
}
.apx-search-form { display: flex; gap: 10px; align-items: center; }
.apx-search-form input[type="search"] {
	flex: 1;
	height: 48px;
	border: 1px solid #ddd;
	padding: 0 14px;
	font-size: 15px;
}
.apx-mobile-nav {
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 12px 20px 20px;
}
.apx-nav--mobile,
.apx-mobile-nav .apx-nav { flex-direction: column; align-items: flex-start; gap: 14px; }

/* Hero -- full-bleed right image, white left fade, flush to USP bar */
.apx-hero {
	background: #fff;
	color: var(--apx-navy);
	overflow: hidden;
}
.apx-hero--mockup {
	border-bottom: none;
	position: relative;
	isolation: isolate;
}
.apx-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	padding: 72px 0;
	min-height: 580px;
}
.apx-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 540px;
	padding: 0;
}
.apx-hero h1 {
	font-size: clamp(34px, 4.8vw, 52px);
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--apx-navy);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.apx-hero__line { display: block; line-height: 1.06; }
.apx-hero__line--navy { color: var(--apx-navy); }
.apx-hero__line--gold { color: var(--apx-gold); }
.apx-hero__lead {
	max-width: 480px;
	color: var(--apx-muted);
	font-size: 15px;
	line-height: 1.55;
}
.apx-hero__tagline {
	margin: 0 0 8px;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--apx-gold);
	font-weight: 700;
}
.apx-hero__lead { margin: 18px 0 28px; }
.apx-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.apx-hero__trust-inline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px 22px;
	max-width: 560px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--apx-navy);
}
.apx-hero__trust-inline > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	min-width: 0;
}
.apx-hero__trust-icon {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--apx-gold);
}
.apx-hero__trust-icon svg {
	width: 40px !important;
	height: 40px !important;
}
.apx-hero__trust-inline > div > span:last-child {
	line-height: 1.35;
	max-width: 120px;
}
/* Mobile-first: the image stays in normal flow so a leftover left offset
   cannot push the whole page wider than the phone. Desktop overlay is
   applied only from 1101px up. */
.apx-hero__media {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	width: 100%;
	max-width: 100%;
	height: auto;
	z-index: 1;
	margin: 0;
	line-height: 0;
	overflow: hidden;
	pointer-events: auto;
}
/* Soft white fade into copy -- matches client mockup */
.apx-hero__media::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 40%;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		#ffffff 0%,
		rgba(255, 255, 255, 0.92) 30%,
		rgba(255, 255, 255, 0.5) 60%,
		rgba(255, 255, 255, 0) 100%
	);
}
.apx-hero__media img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	object-position: center center;
	aspect-ratio: 4 / 3;
}
@media (min-width: 1101px) {
	.apx-hero__media {
		position: absolute;
		top: 0;
		bottom: 0;
		/* Line the image up with the container edge rather than the viewport. */
		right: max(0px, calc(50% - var(--apx-max) / 2));
		left: max(45%, calc(50% - var(--apx-max) * 0.05));
		width: auto;
		height: auto;
		pointer-events: none;
	}
	.apx-hero__media img {
		height: 100%;
		aspect-ratio: auto;
	}
}

.apx-hero__trust {
	background: var(--apx-navy-2);
	border-top: 1px solid rgba(255,255,255,.08);
}
.apx-hero__trust .apx-trustbar__grid {
	color: rgba(255,255,255,.92);
	padding: 18px 0;
}
.apx-hero__trust .apx-trustbar__grid > div { justify-content: center; }
.apx-hero__trust svg { color: #fff; opacity: .9; }

/* Navy USP bar */
.apx-usp-bar {
	background: var(--apx-navy);
	color: rgba(255,255,255,.92);
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.apx-usp-bar__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px 24px;
	padding: 28px 0;
}
.apx-usp-bar__grid > div {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 16px;
	text-align: left;
	min-width: 0;
}
.apx-usp-bar__icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--apx-gold);
	flex-shrink: 0;
	margin-top: 2px;
}
.apx-usp-bar__icon svg {
	width: 48px !important;
	height: 48px !important;
}
.apx-usp-bar strong {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--apx-gold);
	margin-bottom: 4px;
	line-height: 1.25;
}
.apx-usp-bar small {
	display: block;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255,255,255,.78);
	line-height: 1.4;
}

.apx-trustbar { background: var(--apx-sand); border-bottom: 1px solid var(--apx-grey-2); }
.apx-trustbar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 16px 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--apx-navy);
}
.apx-trustbar__grid > div { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Stats */
.apx-stats { background: transparent; border-bottom: none; padding: 8px 0 0; }
.apx-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0 0 28px;
	gap: 16px;
}
.apx-stats__grid > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 20px 12px;
	background: var(--apx-cream);
	border: 1px solid rgba(182, 149, 93, 0.22);
	border-radius: var(--apx-radius);
	box-shadow: var(--apx-shadow-soft);
}
.apx-stats strong { font-size: 22px; font-family: Georgia, "Times New Roman", serif; }
.apx-stats small { color: var(--apx-muted); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.apx-stats svg { color: var(--apx-gold); }

/* Sections */
.apx-section { padding: 84px 0; }
.apx-section--cream { background: var(--apx-cream); }
.apx-section--grey { background: var(--apx-cream); }
.apx-section--process { background: var(--apx-cream); }
.apx-section--tight { padding-top: 20px; }
.apx-section__head { margin-bottom: 36px; }
.apx-section__head--center { text-align: center; }
.apx-section__head--center h2::after { margin-inline: auto; }
.apx-section__head h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: var(--apx-gold);
	margin-top: 14px;
	border-radius: 2px;
}
.apx-section__head--row h2::after { margin-top: 12px; }
.apx-section__head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}
.apx-section__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.apx-carousel-nav {
	display: inline-flex;
	gap: 8px;
}
.apx-carousel-nav__btn {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(0, 21, 41, 0.12);
	border-radius: 50%;
	background: #fff;
	color: var(--apx-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.apx-carousel-nav__btn:hover:not(:disabled) {
	background: var(--apx-navy);
	border-color: var(--apx-navy);
	color: #fff;
}
.apx-carousel-nav__btn:disabled {
	cursor: default;
	opacity: 0.35;
}
/* Nothing to scroll (few products, or JS disabled and it all fits). */
.apx-carousel--static .apx-carousel-nav { display: none; }

/* Best-sellers carousel. Doubled class beats the .apx-product-grid column
   rules in the breakpoints further down, whatever the source order. */
.apx-product-grid.apx-product-grid--carousel {
	--apx-carousel-gap: 22px;
	--apx-carousel-per: 4;
	display: flex;
	gap: var(--apx-carousel-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 4px;
	min-width: 0;
	max-width: 100%;
	width: 100%;
}
.apx-product-grid.apx-product-grid--carousel::-webkit-scrollbar { display: none; }
.apx-product-grid.apx-product-grid--carousel > * {
	flex: 0 0 calc(
		(100% - (var(--apx-carousel-per) - 1) * var(--apx-carousel-gap)) / var(--apx-carousel-per)
	);
	min-width: 0;
	scroll-snap-align: start;
}
@media (prefers-reduced-motion: reduce) {
	.apx-product-grid.apx-product-grid--carousel { scroll-behavior: auto; }
}
.apx-section__head h2,
.apx-page h1,
.apx-page__head h1 {
	font-size: clamp(28px, 4vw, 40px);
	text-transform: none;
	letter-spacing: -0.02em;
}
.apx-section__sub { margin-top: 10px; color: var(--apx-muted); display: flex; align-items: center; gap: 10px; }
.apx-textlink {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--apx-navy);
	white-space: nowrap;
}
.apx-textlink::after { content: " \2192"; }

/* Product grid / cards */
.apx-product-grid,
.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 100%;
	min-width: 0;
}
.apx-product-grid > *,
.products > li,
.products > .product {
	min-width: 0;
	max-width: 100%;
}
.apx-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.apx-card {
	background: #fff;
	border: 1px solid rgba(28, 46, 74, 0.08);
	border-radius: var(--apx-radius);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: var(--apx-shadow-soft);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.apx-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--apx-shadow);
}
.apx-card__media {
	position: relative;
	background: var(--apx-cream);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.apx-card__media img,
.apx-card__media .apx-product-pack,
.apx-card__media .apx-product-photo {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: contain !important;
	object-position: center;
}
.apx-product-pack {
	display: block;
}
.apx-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: var(--apx-gold);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 5px 10px;
	text-transform: uppercase;
	border-radius: 3px;
}
.apx-pdp__summary > .apx-badge { position: static; display: inline-block; margin-bottom: 12px; }
.apx-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.apx-card__cat { margin: 0; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--apx-muted); font-weight: 600; }
.apx-card__title { font-size: 16px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; overflow-wrap: anywhere; font-family: Inter, system-ui, sans-serif; }
.apx-card__price { font-size: 18px; font-weight: 800; margin-top: auto; color: var(--apx-navy); }
.apx-card .add_to_cart_button { margin-top: 8px; border-radius: var(--apx-radius-sm); }
.apx-card .add_to_cart_button.loading {
	opacity: 0.75;
	pointer-events: none;
	position: relative;
}
.apx-card .add_to_cart_button.loading::after {
	content: "Adding\2026";
	margin-left: 6px;
	font-size: 11px;
	letter-spacing: 0.08em;
}
.apx-card .add_to_cart_button.added { background: var(--apx-gold) !important; color: var(--apx-navy) !important; }
.apx-card .add_to_cart_button.added::after {
	content: " \2713";
	font-weight: 800;
}

.apx-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--apx-gold); }
.apx-stars svg { fill: var(--apx-gold); color: var(--apx-gold); }
.apx-stars__val { margin-left: 6px; font-size: 12px; color: var(--apx-muted); font-weight: 600; }

/* Banner */
.apx-banner {
	position: relative;
	display: block;
	background: var(--apx-navy);
	color: #fff;
	min-height: 480px;
	overflow: hidden;
}
.apx-banner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.apx-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(28,46,74,.9) 0%, rgba(28,46,74,.58) 42%, rgba(28,46,74,.15) 100%);
}
.apx-banner__copy {
	position: relative;
	z-index: 1;
	min-height: 480px;
	padding: 72px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.apx-banner__copy h2 { font-size: clamp(32px, 4vw, 48px); text-transform: uppercase; margin-bottom: 16px; }
.apx-banner__copy p { color: rgba(255,255,255,.78); max-width: 460px; }

/* Process */
.apx-process {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	counter-reset: none;
	list-style: none;
	padding: 0;
	position: relative;
}
.apx-process::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 8%;
	right: 8%;
	height: 1px;
	background: #d9dee6;
	z-index: 0;
}
.apx-process li {
	text-align: center;
	padding: 8px 10px;
	position: relative;
	z-index: 1;
}
.apx-process span {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border: 1px solid var(--apx-grey-2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	margin-bottom: 14px;
	background: #fff;
}
.apx-process--mockup h3 { font-size: 13px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; }
.apx-process p { margin: 0; color: var(--apx-muted); font-size: 14px; }

/* Quality */
.apx-quality {
	display: grid;
	grid-template-columns: 1fr 1.1fr 260px;
	gap: 32px;
	align-items: stretch;
}
.apx-quality__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.apx-quality__copy p { color: var(--apx-muted); margin: 14px 0 22px; }
.apx-quality__media img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	object-position: center;
	display: block;
	background: transparent;
}
.apx-quality__panel {
	background: var(--apx-navy);
	color: #fff;
	padding: 8px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.apx-quality__panel > div { padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.apx-quality__panel > div:last-child { border-bottom: 0; }
.apx-quality__panel span { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: .65; margin-bottom: 6px; }
.apx-quality__panel strong { font-size: 22px; letter-spacing: 0.02em; }
.quantity { border-radius: var(--apx-radius); }

.apx-section--science {
	background: #fff;
	padding: 72px 0;
}
.apx-science {
	display: grid;
	grid-template-columns: minmax(280px, 340px) minmax(340px, 1fr) minmax(240px, 280px);
	gap: 40px;
	align-items: center;
}
.apx-science__copy h2 {
	font-size: clamp(30px, 3.2vw, 40px);
	margin-bottom: 16px;
	line-height: 1.12;
}
.apx-science__copy h2::after { display: none; }
.apx-science__body {
	font-size: 15px;
	line-height: 1.55;
	color: var(--apx-muted);
	margin: 0 0 24px;
	max-width: 320px;
}
.apx-checklist {
	display: grid;
	gap: 14px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}
.apx-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--apx-navy);
	line-height: 1.45;
}
.apx-checklist__icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(212, 132, 42, 0.12);
	color: #d4842a;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}
.apx-checklist__icon svg { width: 12px; height: 12px; stroke-width: 2.6; }
.apx-btn--science {
	width: 100%;
	max-width: 280px;
	border-radius: 4px;
	min-height: 46px;
}
.apx-science__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 0;
}
.apx-science__img {
	width: 100%;
	max-width: 560px;
	height: auto;
	display: block;
}
.apx-science__panel {
	background: #fff;
	border: 1px solid rgba(0, 21, 41, 0.10);
	border-radius: 10px;
	padding: 28px 24px;
	box-shadow: 0 4px 20px rgba(0, 21, 41, 0.06);
	align-self: start;
}
.apx-science__panel h3 {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 22px;
	color: var(--apx-navy);
}
.apx-science__panel ul {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.apx-science__panel li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(0, 21, 41, 0.07);
}
.apx-science__panel li:first-child { padding-top: 0; }
.apx-science__panel li:last-child { border-bottom: 0; padding-bottom: 0; }
.apx-science__panel-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--apx-navy);
	flex-shrink: 0;
}
.apx-science__panel-icon svg { width: 20px; height: 20px; }
.apx-science__panel strong {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--apx-navy);
	margin-bottom: 4px;
}
.apx-science__panel p {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--apx-muted);
}

/* Process mockup - numbered circle + icon in a row, dotted rule between steps */
.apx-process--mockup {
	gap: 24px;
	align-items: start;
}
.apx-process--mockup::before { display: none; }
.apx-process--mockup li {
	text-align: left;
	padding: 0;
}
.apx-process__top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.apx-process--mockup .apx-process__num {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(198, 158, 90, 0.55);
	border-radius: 50%;
	background: #fff;
	color: var(--apx-navy);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
}
.apx-process--mockup .apx-process__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var(--apx-navy);
	background: none;
	border: 0;
	border-radius: 0;
	margin: 0;
}
.apx-process--mockup .apx-process__icon svg { width: 32px; height: 32px; }
.apx-process--mockup .apx-process__line {
	flex: 1 1 auto;
	width: auto;
	height: 0;
	min-width: 12px;
	/* Reach across the grid gap so the rule meets the next circle. */
	margin: 0 -24px 0 0;
	border: 0;
	border-top: 2px dotted rgba(198, 158, 90, 0.7);
	border-radius: 0;
	background: none;
}
.apx-process--mockup li:last-child .apx-process__line { display: none; }
.apx-process--mockup h3 { margin-bottom: 8px; }
.apx-process--mockup p { max-width: 15em; }

/* Stats bar */
.apx-stats-bar {
	background: var(--apx-navy);
	color: #fff;
	position: relative;
	overflow: hidden;
}
/* Faint DNA helix anchored to each edge, behind the figures. */
.apx-stats-bar::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.22;
	background-image: url(../images/dna-helix.svg), url(../images/dna-helix.svg);
	background-position: left -56px top -30px, right -56px bottom -30px;
	background-repeat: no-repeat, no-repeat;
	background-size: auto 150%, auto 150%;
	pointer-events: none;
}
.apx-stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 44px 0;
	text-align: center;
	position: relative;
	z-index: 1;
}
.apx-stats-bar__grid > div {
	padding: 4px 24px;
}
.apx-stats-bar__grid > div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.apx-stats-bar strong {
	display: block;
	font-size: clamp(28px, 4vw, 38px);
	font-family: Georgia, "Times New Roman", serif;
	color: var(--apx-gold);
	line-height: 1.1;
	margin-bottom: 10px;
}
.apx-stats-bar small {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}
.apx-stats-bar p {
	margin: 14px auto 0;
	max-width: 17em;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.62);
}

/* Newsletter */
.apx-newsletter {
	background: var(--apx-cream);
	border-top: 1px solid rgba(28, 46, 74, 0.06);
	border-bottom: 1px solid rgba(28, 46, 74, 0.06);
}
.apx-newsletter__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 48px 0;
}
.apx-newsletter__icon {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(176, 141, 87, 0.55);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--apx-gold);
}
.apx-newsletter__icon svg { width: 24px; height: 24px; }
.apx-newsletter__copy h2 {
	font-size: clamp(22px, 2.4vw, 28px);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin-bottom: 10px;
}
.apx-newsletter__copy h2::after { display: none; }
.apx-newsletter__copy p {
	margin: 0;
	color: var(--apx-muted);
	font-size: 15px;
	line-height: 1.5;
	max-width: 320px;
}
.apx-newsletter__action { min-width: min(460px, 100%); }
.apx-newsletter__note {
	margin: 12px 0 0;
	font-size: 13px;
	color: var(--apx-muted);
}
.apx-newsletter__form {
	display: flex;
	gap: 10px;
	align-items: center;
	min-width: 0;
}
.apx-newsletter__form input[type="email"] {
	flex: 1;
	min-width: 200px;
	height: 48px;
	border: 1px solid rgba(28, 46, 74, 0.15);
	border-radius: var(--apx-radius-sm);
	padding: 0 14px;
	font-size: 14px;
	background: #fff;
}
.apx-newsletter__form .apx-btn { white-space: nowrap; }

/* Reviews */
.apx-reviews {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}
.apx-review {
	margin: 0;
	padding: 22px;
	border: 1px solid #eee;
	background: #fff;
	min-width: 280px;
	flex: 0 0 280px;
	scroll-snap-align: start;
}
.apx-review__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.apx-review__top strong { display: block; font-size: 14px; }
.apx-review__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--apx-navy);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}
.apx-review p { margin: 0 0 16px; }
.apx-review footer { display: flex; flex-direction: column; gap: 2px; }
.apx-review span { font-size: 12px; color: var(--apx-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.apx-inside {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.apx-inside img { width: 100%; height: 240px; object-fit: cover; }

/* Footer */
.apx-footer {
	background: var(--apx-cream);
	color: var(--apx-muted);
	padding: 0 0 28px;
	border-top: 1px solid var(--apx-grey);
}
.apx-trust-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 22px 0;
	border-bottom: 1px solid var(--apx-grey);
	color: var(--apx-navy);
	background: var(--apx-cream);
}
.apx-trust-footer__grid > div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 0 12px;
}
.apx-trust-footer__grid > div > span {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.apx-trust-footer__grid svg { color: var(--apx-navy); width: 26px; height: 26px; }
.apx-trust-footer__grid strong {
	display: block;
	color: var(--apx-navy);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.apx-trust-footer__grid > div > div > span {
	display: block;
	font-size: 12px;
	line-height: 1.4;
	color: var(--apx-muted);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
}
.apx-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 1fr;
	gap: 28px;
	padding: 48px 0 32px;
}
.apx-footer__brand p { color: var(--apx-muted); font-size: 14px; max-width: 280px; }
.apx-footer__trustbox {
	background: var(--apx-navy);
	border: none;
	border-radius: var(--apx-radius);
	padding: 22px 18px;
	color: rgba(255,255,255,.88);
}
.apx-footer__trustbox h4 {
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.apx-footer__trustbox ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.apx-footer__trustbox li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.9);
}
.apx-footer__trustbox svg { color: var(--apx-gold); flex-shrink: 0; width: 16px; height: 16px; }
.apx-footer__rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.12);
}
.apx-footer__rating strong {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}
.apx-trustpilot--trustbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}
.apx-trustpilot--trustbox .apx-trustpilot__label {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,.72);
	white-space: nowrap;
}
.apx-trustpilot--trustbox .apx-trustpilot__stars {
	display: inline-flex;
	gap: 2px;
	color: #00b67a;
}
.apx-trustpilot--trustbox .apx-trustpilot__stars svg {
	width: 13px;
	height: 13px;
	color: #00b67a;
	background: #00b67a;
	fill: #fff;
	border-radius: 1px;
}
.apx-footer h4 { color: var(--apx-navy); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.apx-footer__links { display: grid; gap: 8px; }
.apx-footer__links a { color: var(--apx-muted); }
.apx-footer__links a:hover { color: var(--apx-navy); }
.apx-footer__copy { margin: 0; font-size: 12px; color: var(--apx-muted); }
.apx-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 20px;
	border-top: 1px solid var(--apx-grey);
}
.apx-pay__row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
}
.apx-pay__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 32px;
	flex: 0 0 52px;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
	border: none;
	border-radius: 4px;
	overflow: hidden;
	line-height: 0;
}
.apx-pay__mark img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

/* PDP */
.apx-breadcrumbs { padding: 18px 0 0; font-size: 13px; color: var(--apx-muted); }
.apx-breadcrumbs a:hover { color: var(--apx-navy); }
.apx-pdp { padding-bottom: 40px; }
.apx-pdp__top {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 48px;
	padding: 24px 0 56px;
	align-items: start;
}
.apx-pdp__gallery { display: grid; grid-template-columns: 72px 1fr; gap: 12px; }
.apx-thumbs { display: flex; flex-direction: column; gap: 8px; }
.apx-thumbs__btn { border: 1px solid #e5e7eb; background: var(--apx-grey); padding: 0; cursor: pointer; border-radius: var(--apx-radius); }
.apx-thumbs__btn.is-active { border-color: var(--apx-gold); }
.apx-thumbs__btn img { width: 72px; height: 72px; object-fit: cover; }
.apx-pdp__stage {
	position: relative;
	background: linear-gradient(145deg, #d9d2c5 0%, #ece6de 48%, #f5f2ed 100%);
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--apx-radius);
	border: 1px solid var(--apx-grey-2);
}
.apx-pdp__stage img,
.apx-pdp__image,
.apx-pdp__stage .apx-product-pack,
.apx-pdp__stage .apx-product-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.apx-pdp .woocommerce-product-gallery img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: contain !important;
	object-position: center center;
	display: block;
}
.apx-pdp__title { font-size: clamp(28px, 4vw, 40px); text-transform: none; margin: 8px 0 8px; }
.apx-pdp__cat { color: var(--apx-muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; margin: 0 0 10px; }
.apx-pdp__rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.apx-pdp__rating > span:last-child { font-size: 12px; color: var(--apx-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.apx-pdp__price { font-size: 28px; font-weight: 800; margin: 14px 0 8px; }
.apx-pdp__price del { color: var(--apx-muted); font-weight: 500; font-size: 18px; margin-right: 8px; }
.apx-pdp__ruo {
	margin: 0 0 16px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--apx-muted);
}
.apx-usps { margin: 18px 0 0; display: grid; gap: 10px; }
.apx-usps li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.apx-usps svg { color: var(--apx-navy); }

.apx-pdp .cart {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 20px 0 0;
	padding: 18px;
	background: var(--apx-cream);
	border: 1px solid rgba(182, 149, 93, 0.28);
	border-radius: var(--apx-radius);
	box-shadow: var(--apx-shadow-soft);
}
.apx-pdp .single_variation_wrap,
.apx-pdp .woocommerce-variation-add-to-cart,
.apx-pdp-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	margin: 0;
}
.apx-pdp .woocommerce-variation,
.apx-pdp .reset_variations_alert {
	display: none !important;
}
.apx-format-label {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.apx-pdp .variations { width: 100%; border: 0; margin: 0; border-collapse: collapse; }
.apx-pdp .variations tbody,
.apx-pdp .variations tr { display: block; width: 100%; }
.apx-pdp .variations th { display: none; }
.apx-pdp .variations td { padding: 0; border: 0; }
.apx-pdp .reset_variations { display: none !important; }
.apx-format {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
}
.apx-format button {
	min-height: 72px;
	border: 1px solid #d7dbe2;
	border-radius: 4px;
	background: #fff;
	color: var(--apx-text);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 10px 14px;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: none;
	font-weight: 700;
}
.apx-format button small { font-weight: 600; color: var(--apx-muted); }
.apx-format button.is-active {
	border-color: var(--apx-blue);
	box-shadow: inset 0 0 0 1px var(--apx-blue);
	background: #f4f8fd;
}
.apx-qty-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}
.apx-pdp-qty {
	display: flex;
	justify-content: center;
	width: 100%;
}
.apx-pdp-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
.quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(28, 46, 74, 0.18);
	background: #fff;
	height: 52px;
	min-height: 52px;
	margin: 0;
	border-radius: var(--apx-radius-sm);
	box-sizing: border-box;
	width: min(100%, 176px);
}
.apx-pdp .quantity,
.apx-qty-row .quantity,
.apx-pdp-qty .quantity {
	width: min(100%, 176px);
}
.quantity .apx-qty-btn {
	width: 44px;
	height: 50px;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	padding: 0;
	color: var(--apx-navy);
}
.quantity .qty {
	width: 48px;
	border: 0;
	text-align: center;
	height: 50px;
	font-weight: 700;
	font-size: 16px;
	padding: 0;
	-moz-appearance: textfield;
	background: transparent;
}
.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button { appearance: none; margin: 0; }
.apx-pdp .single_add_to_cart_button,
.apx-pdp .apx-buy-now {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	height: auto;
	margin: 0;
	padding: 14px 18px;
	line-height: 1.2;
	white-space: nowrap;
	box-sizing: border-box;
	font-size: 12px;
	letter-spacing: 0.12em;
	border-radius: var(--apx-radius-sm);
}
.apx-pdp .single_add_to_cart_button {
	background: var(--apx-navy) !important;
	color: #fff !important;
}
.apx-buy-now {
	background: #fff !important;
	border: 1px solid var(--apx-navy) !important;
	color: var(--apx-navy) !important;
}
.apx-buy-now:hover {
	background: rgba(28, 46, 74, 0.04) !important;
}

@media (min-width: 761px) {
	.apx-qty-row {
		display: grid;
		grid-template-columns: 176px 1fr;
		grid-template-rows: auto auto;
		gap: 12px;
		align-items: stretch;
	}
	.apx-pdp-qty {
		grid-column: 1;
		grid-row: 1 / span 2;
		align-items: center;
		justify-content: flex-start;
	}
	.apx-pdp-qty .quantity {
		width: 100%;
	}
	.apx-pdp-buttons {
		grid-column: 2;
		grid-row: 1 / span 2;
		justify-content: center;
	}
}

/* Tabs */
.apx-tabs { margin: 10px 0 40px; }
.apx-tabs__nav {
	display: flex;
	gap: 0;
	border-bottom: 1px solid #e5e7eb;
	overflow-x: auto;
}
.apx-tabs__nav button {
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 14px 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--apx-muted);
	cursor: pointer;
	white-space: nowrap;
}
.apx-tabs__nav button.is-active { color: var(--apx-navy); border-bottom-color: var(--apx-navy); }
.apx-tabs__panel { padding: 32px 0; }
.apx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.apx-split__media {
	background: var(--apx-grey);
	overflow: hidden;
	width: 100%;
}
.apx-split__media img,
.apx-split__photo {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.apx-icons-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.apx-icons-row div { border: 1px solid #eee; padding: 16px; }
.apx-icons-row strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.apx-icons-row span { color: var(--apx-muted); font-size: 13px; }

.apx-spec { width: 100%; border-collapse: collapse; }
.apx-spec th, .apx-spec td { text-align: left; padding: 12px 0; border-bottom: 1px solid #eee; }
.apx-spec th { width: 240px; color: var(--apx-muted); font-weight: 600; }
.apx-faq details { border-bottom: 1px solid #eee; padding: 14px 0; }
.apx-faq summary { cursor: pointer; font-weight: 700; }
.apx-faq p { color: var(--apx-muted); margin: 8px 0 0; }

/* Bundle */
.apx-bundle { background: var(--apx-grey); padding: 64px 0; }
.apx-bundle__row { display: grid; grid-template-columns: 1fr 280px; gap: 28px; align-items: center; }
.apx-bundle__items { display: flex; align-items: stretch; gap: 16px; min-width: 0; }
.apx-bundle__item {
	background: #fff;
	border: 1px solid #eee;
	padding: 0 0 14px;
	flex: 1 1 0;
	min-width: 0;
	width: auto;
	display: grid;
	gap: 8px;
	text-align: center;
	align-content: start;
	overflow: hidden;
}
.apx-bundle__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: var(--apx-cream);
	overflow: hidden;
}
.apx-bundle__media img,
.apx-bundle__item img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	aspect-ratio: auto;
	object-fit: contain !important;
	object-position: center center !important;
	background: var(--apx-cream);
	display: block;
	padding: 10px;
	box-sizing: border-box;
}
.apx-bundle__item strong,
.apx-bundle__item span { padding: 0 12px; }
.apx-bundle__item strong { font-size: 12px; }
.apx-bundle__plus {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	color: var(--apx-muted);
}
.apx-bundle__box { background: var(--apx-navy); color: #fff; padding: 24px; }
.apx-bundle__label { margin: 0; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: .7; }
.apx-bundle__now { font-size: 28px; font-weight: 800; margin: 6px 0; }
.apx-bundle__was { text-decoration: line-through; opacity: .55; margin: 0; }
.apx-bundle__save { color: #b7f0c8; font-weight: 700; }
.cross-sells { margin-top: 48px; }
.cross-sells > h2 {
	font-size: clamp(28px, 4vw, 42px);
	text-transform: uppercase;
	margin-bottom: 24px;
}
.woocommerce-cart .cross-sells .products { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.apx-page { padding: 48px 0 80px; }
.apx-page--center { text-align: center; min-height: 40vh; padding-top: 80px; }
.apx-page__head { margin-bottom: 16px; }
.apx-page__head .apx-kicker { margin: 0 0 6px; }
.apx-page__head h1 { margin: 0; }
.apx-prose { font-size: 16px; max-width: 72ch; }
.apx-prose p { margin: 0 0 14px; }
.apx-prose h3 { margin: 22px 0 10px; }
.apx-prose ul { list-style: disc; padding-left: 18px; margin: 0 0 14px; }
.apx-shop { padding: 28px 0 80px; }
.apx-shop__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin: 0 0 24px;
	padding: 16px 20px;
	background: var(--apx-cream);
	border: 1px solid rgba(182, 149, 93, 0.22);
	border-radius: var(--apx-radius);
	box-shadow: var(--apx-shadow-soft);
}
.apx-shop__count .woocommerce-result-count {
	margin: 0;
	font-size: 13px;
	color: var(--apx-muted);
}
.woocommerce-ordering {
	margin: 0;
	flex: 0 0 auto;
}
.woocommerce-ordering select.orderby {
	width: auto;
	max-width: 100%;
	min-width: 220px;
	height: 42px;
	border: 1px solid #ddd;
	border-radius: var(--apx-radius);
	padding: 0 36px 0 12px;
	background: #fff;
	font-size: 14px;
	appearance: auto;
	-webkit-appearance: menulist;
}

/* Cart / checkout */
.woocommerce-cart .apx-page,
.woocommerce-checkout .apx-page { max-width: none; }
.woocommerce-cart .apx-page__head--cart { margin-bottom: 22px; }
.woocommerce-cart .apx-page__head--cart h1 {
	font-size: clamp(28px, 4vw, 40px);
	margin: 0;
}
.woocommerce-cart .apx-cart-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.woocommerce-cart .apx-cart-head__meta {
	margin: 6px 0 0;
	color: var(--apx-muted);
	font-size: 14px;
}
.woocommerce-cart .apx-cart-continue {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--apx-navy);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.woocommerce-cart .apx-wc > h2:first-child { display: none !important; }
.woocommerce-cart .woocommerce-breadcrumb,
.woocommerce-checkout .woocommerce-breadcrumb { display: none !important; }

.apx-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 28px 36px;
	align-items: start;
}
.apx-cart-layout__side {
	position: sticky;
	top: calc(var(--apx-header) + 16px);
}

.woocommerce table.shop_table { width: 100%; border-collapse: collapse; }
.woocommerce-cart table.shop_table.cart {
	background: #fff;
	border: 1px solid rgba(0, 21, 41, 0.08);
	border-radius: var(--apx-radius);
	overflow: hidden;
}
.woocommerce-cart table.shop_table.cart thead th {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--apx-muted);
	background: var(--apx-cream);
	border-bottom: 1px solid rgba(0, 21, 41, 0.08);
	padding: 12px 14px;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { padding: 14px 8px; border-bottom: 1px solid #eee; text-align: left; vertical-align: middle; }
.woocommerce-cart table.shop_table.cart td { padding: 16px 14px; }
.woocommerce-cart table.shop_table.cart tr.cart_item:last-of-type td { border-bottom: 0; }
.woocommerce .cart_totals {
	background: var(--apx-cream);
	padding: 24px;
	margin-top: 0;
	border: 1px solid rgba(182, 149, 93, 0.22);
	border-radius: var(--apx-radius);
}
.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.woocommerce form .form-row { margin-bottom: 12px; }
.woocommerce-cart-form { margin-top: 0; }
.woocommerce td.product-thumbnail img,
.woocommerce td.product-thumbnail .apx-cart-thumb,
img.apx-cart-thumb {
	width: 72px;
	height: 72px;
	object-fit: cover;
	background: var(--apx-cream);
	display: block;
	border-radius: var(--apx-radius-sm);
}
.woocommerce-cart td.product-name a {
	color: var(--apx-navy);
	font-weight: 700;
	text-decoration: none;
}
.woocommerce-cart td.product-name a:hover { color: var(--apx-gold); }
.woocommerce .cart-empty { padding: 40px 0; }
.woocommerce .return-to-shop { margin-top: 16px; }
.woocommerce-checkout-review-order { background: var(--apx-cream); padding: 24px; }
.woocommerce-cart form .input-text,
.woocommerce-checkout form .input-text,
.woocommerce-checkout form select,
.select2-container .select2-selection--single {
	width: 100%;
	height: 46px;
	border: 1px solid #d7dbe2;
	padding: 0 12px;
	background: #fff;
	border-radius: var(--apx-radius-sm);
}
.woocommerce-cart .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 0 0 12px;
}
.woocommerce-cart .coupon .input-text { width: min(100%, 220px); height: 46px; }
.woocommerce-cart .actions {
	padding: 18px 14px !important;
	background: var(--apx-cream);
	border-top: 1px solid rgba(0, 21, 41, 0.08);
}
.woocommerce-cart .actions .button,
.woocommerce-cart .coupon .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart a.checkout-button {
	background: var(--apx-navy) !important;
	color: #fff !important;
	border: 0 !important;
}
.woocommerce-cart .apx-cart-update {
	background: #fff !important;
	color: var(--apx-navy) !important;
	border: 1px solid var(--apx-navy) !important;
}
.woocommerce-cart .wc-proceed-to-checkout { margin-top: 16px; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 52px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.woocommerce-cart a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--apx-cream);
	color: var(--apx-navy) !important;
	font-size: 18px;
	line-height: 1;
}
.woocommerce-cart .cart_totals h2 {
	margin: 0 0 14px;
	font-size: 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td {
	padding: 10px 0;
	border-color: rgba(0, 21, 41, 0.08);
}
.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
	font-size: 18px;
	padding-top: 14px;
}

.apx-cart-delivery {
	margin: 0 0 18px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid rgba(182, 149, 93, 0.22);
	border-radius: var(--apx-radius-sm);
}
.apx-cart-delivery__msg {
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--apx-text);
}
.apx-cart-delivery__msg--ok {
	color: #0f6b3a;
	font-weight: 600;
	margin-bottom: 0;
}
.apx-cart-delivery__bar {
	height: 6px;
	background: var(--apx-sand);
	border-radius: 99px;
	overflow: hidden;
}
.apx-cart-delivery__bar span {
	display: block;
	height: 100%;
	background: var(--apx-gold);
	border-radius: 99px;
}

.apx-cart-assurances {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.apx-cart-assurances li {
	font-size: 12px;
	color: var(--apx-muted);
	padding-left: 18px;
	position: relative;
}
.apx-cart-assurances li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--apx-gold);
}

.apx-cart-empty {
	max-width: 520px;
	margin: 12px auto 40px;
	padding: 36px 24px;
	text-align: center;
	background: var(--apx-cream);
	border: 1px solid rgba(182, 149, 93, 0.22);
	border-radius: var(--apx-radius);
}
.apx-cart-empty__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: var(--apx-navy);
	border: 1px solid rgba(0, 21, 41, 0.08);
}
.apx-cart-empty__title { margin: 0 0 8px; font-size: 22px; }
.apx-cart-empty__text {
	margin: 0 auto 18px;
	max-width: 38ch;
	color: var(--apx-muted);
	font-size: 14px;
	line-height: 1.5;
}
.apx-cart-empty .return-to-shop { margin: 0 0 22px; }
.apx-cart-empty .return-to-shop .button {
	display: inline-flex;
	min-height: 48px;
	padding: 0 22px;
	align-items: center;
	justify-content: center;
}
.apx-cart-empty__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 14px;
	text-align: left;
}
.apx-cart-empty__trust li {
	font-size: 12px;
	color: var(--apx-muted);
	padding-left: 14px;
	position: relative;
}
.apx-cart-empty__trust li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--apx-gold);
}

.woocommerce-cart .cross-sells {
	margin-top: 40px;
	grid-column: 1 / -1;
}
.woocommerce-cart .cross-sells > h2 {
	font-size: 22px;
	margin: 0 0 16px;
	text-transform: uppercase;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 12px 16px;
	margin: 16px 0;
	border: 1px solid #eee;
	background: var(--apx-grey);
}
.added_to_cart { display: none !important; }
.apx-empty { grid-column: 1 / -1; color: var(--apx-muted); }

.woocommerce-pagination { margin-top: 36px; }
.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; }
.woocommerce-pagination a,
.woocommerce-pagination span {
	min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 1100px) {
	.apx-product-grid:not(.apx-product-grid--carousel),
	.products,
	.apx-product-grid--4 { grid-template-columns: repeat(3, 1fr); }
	.apx-hero__grid, .apx-quality, .apx-science, .apx-pdp__top, .apx-split, .apx-bundle__row { grid-template-columns: 1fr; }
	.apx-hero__trust-inline { grid-template-columns: 1fr 1fr; max-width: none; }
	.apx-bundle__items {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}
	.apx-bundle__item {
		flex: 0 0 auto;
		width: 100%;
		max-width: 420px;
		margin-inline: auto;
	}
	.apx-bundle__plus { justify-content: center; width: 100%; }
	.apx-bundle__media { aspect-ratio: 4 / 3; }
	.apx-bundle__box { width: 100%; }
	.apx-science { grid-template-columns: 1fr; gap: 32px; }
	.apx-science__img { max-width: 620px; margin: 0 auto; }
	.apx-btn--science { max-width: none; }
	.apx-quality__panel { display: grid; grid-template-columns: 1fr 1fr; }
	.apx-quality__media img { min-height: 0; max-height: none; height: auto; }
	.apx-process, .apx-process--mockup { grid-template-columns: repeat(3, 1fr); }
	.apx-process::before, .apx-process--mockup::before { display: none; }
	/* Rows wrap here, so a connector would point at nothing. */
	.apx-process--mockup { gap: 32px 24px; }
	.apx-process--mockup .apx-process__line { display: none; }
	.apx-process--mockup p { max-width: none; }
	.apx-inside { grid-template-columns: repeat(2, 1fr); }
	.apx-footer__grid { grid-template-columns: 1fr 1fr; }
	.apx-footer__trustbox { grid-column: 1 / -1; }
	.apx-usp-bar__grid { grid-template-columns: 1fr 1fr; }
	.apx-stats-bar__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
	/* Two per row: divide the pair, not every cell. */
	.apx-stats-bar__grid > div + div { border-left: 0; }
	.apx-stats-bar__grid > div:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.14); }
	.apx-newsletter__inner { grid-template-columns: 1fr; }
	.apx-newsletter__form { width: 100%; min-width: 0; }
	.apx-newsletter__action { min-width: 0; width: 100%; }
	.apx-newsletter__copy p { max-width: none; }
	/* Two lines per cell need more room than four columns allow here. */
	.apx-trust-footer__grid { grid-template-columns: 1fr 1fr; row-gap: 20px; }
	.apx-hero--mockup {
		display: flex;
		flex-direction: column;
	}
	.apx-hero__grid {
		order: 1;
		min-height: 0;
		padding: 40px 0 28px;
	}
	.apx-hero__copy { padding: 0; max-width: none; }
	.apx-hero__media {
		order: 2;
		position: relative;
		top: auto;
		right: auto !important;
		bottom: auto;
		left: auto !important;
		width: 100% !important;
		max-width: 100%;
		height: auto;
		pointer-events: auto;
		overflow: hidden;
	}
	.apx-hero__media::before {
		width: 100%;
		height: 72px;
		inset: 0 0 auto 0;
		background: linear-gradient(
			180deg,
			#ffffff 0%,
			rgba(255, 255, 255, 0.7) 40%,
			rgba(255, 255, 255, 0) 100%
		);
	}
	.apx-hero__media img {
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
	.apx-pdp__stage { min-height: 0; }
	.apx-pdp__gallery { grid-template-columns: 1fr; }
	.apx-thumbs { flex-direction: row; overflow-x: auto; }
}

/* Keep the desktop nav on one line; wrapping doubles the header height. */
.apx-header__nav .apx-nav a { white-space: nowrap; }
@media (max-width: 1240px) {
	.apx-header__nav .apx-nav { gap: 20px; }
}

/* The primary nav and the logo stop fitting side by side well above phone
   width, so the header switches to the drawer here rather than at 760px. */
@media (max-width: 1100px) {
	.apx-header__nav { display: none; }
	.apx-nav-toggle { display: inline-flex; }
	.apx-header__inner { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 12px; }
	.apx-logo { justify-content: flex-start; }
	.apx-header .apx-logo__img,
	.apx-header .apx-logo img,
	.apx-header .custom-logo-link img,
	.apx-header img.custom-logo { max-width: min(360px, calc(100% - 160px)); }

	.apx-nav-backdrop { display: block; }
	.apx-nav-backdrop[hidden] { display: none; }
	.apx-mobile-nav {
		position: relative;
		z-index: 35;
		padding: 8px 0 20px;
		box-shadow: 0 16px 32px rgba(7, 21, 40, .12);
	}
	.apx-mobile-nav .apx-nav a {
		display: flex;
		align-items: center;
		min-height: 48px;
		font-size: 14px;
		letter-spacing: 0.1em;
		border-bottom: 1px solid #f0f0f0;
		width: 100%;
	}
}

@media (max-width: 760px) {
	:root { --apx-header: 64px; }

	.apx-container { width: min(var(--apx-max), calc(100% - 32px)); }
	.apx-section { padding: 48px 0; }
	.apx-section__head { margin-bottom: 24px; }
	.apx-section__head--row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.apx-announcement { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
	.apx-announcement__inner {
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 16px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		font-size: 10px;
		padding: 10px 0;
		max-width: 100%;
		min-width: 0;
	}
	.apx-announcement__items {
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 22px;
		overflow-x: auto;
		flex: 1 1 auto;
		min-width: 0;
	}
	.apx-announcement__inner::-webkit-scrollbar,
	.apx-announcement__items::-webkit-scrollbar { display: none; }
	.apx-trustpilot { flex-shrink: 0; }

	.apx-hero__trust-inline { grid-template-columns: 1fr 1fr; gap: 14px 12px; max-width: none; }
	.apx-usp-bar__grid { grid-template-columns: 1fr; gap: 16px; padding: 22px 0; }
	.apx-hero__media img { min-height: 0; max-height: none; }
	.apx-stats-bar__grid { grid-template-columns: 1fr 1fr; padding: 28px 0; row-gap: 26px; }
	.apx-stats-bar__grid > div { padding: 0 12px; }
	.apx-stats-bar p { font-size: 12px; margin-top: 10px; }
	/* Two helixes nearly span a phone width, so pull them back hard. */
	.apx-stats-bar::before {
		background-size: auto 60%, auto 60%;
		background-position: left -70px top, right -70px bottom;
		opacity: 0.1;
	}
	.apx-newsletter__inner { padding: 32px 0; }
	.apx-newsletter__form { flex-direction: column; align-items: stretch; }
	.apx-newsletter__form .apx-btn { width: 100%; }
	/* Under 16px iOS Safari zooms the page when the field is focused. */
	.apx-newsletter__form input[type="email"] { font-size: 16px; }

	.apx-header { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
	.apx-header__inner { gap: 10px; min-height: 72px; }
	.apx-logo { justify-content: flex-start; }
	.apx-header .apx-logo__img,
	.apx-header .apx-logo img,
	.apx-header .custom-logo-link img,
	.apx-header img.custom-logo {
		height: 52px;
		max-width: min(320px, calc(100% - 140px));
	}
	.apx-header__tools { gap: 0; }
	.apx-icon-btn { width: 40px; height: 40px; }

	.apx-search-form { flex-wrap: wrap; }
	.apx-search-form input[type="search"] { width: 100%; flex: 1 1 100%; font-size: 16px; }
	.apx-search-form .apx-btn { flex: 1; }

	.apx-hero__grid {
		min-height: 0;
		padding: 28px 0 20px;
		gap: 0;
	}
	.apx-hero h1 { font-size: clamp(28px, 8.4vw, 40px); }
	.apx-hero__lead { font-size: 15px; margin: 14px 0 20px; }
	.apx-hero__cta { flex-direction: column; }
	.apx-hero__cta .apx-btn { width: 100%; }
	.apx-hero__copy { padding-bottom: 0; }
	.apx-hero__media img {
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}

	.apx-hero__trust .apx-trustbar__grid,
	.apx-trustbar__grid,
	.apx-stats__grid,
	.apx-trust-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px 8px;
		padding: 16px 0;
		font-size: 10px;
		letter-spacing: 0.08em;
	}
	.apx-hero__trust .apx-trustbar__grid > div,
	.apx-trustbar__grid > div,
	.apx-trust-footer__grid > div {
		justify-content: flex-start;
		text-align: left;
		min-width: 0;
	}
	.apx-trust-footer__grid { row-gap: 18px; }
	.apx-trust-footer__grid > div { padding: 0; gap: 10px; }
	.apx-trust-footer__grid svg { width: 22px; height: 22px; }
	.apx-trust-footer__grid strong { font-size: 10px; margin-bottom: 2px; }
	.apx-trust-footer__grid > div > div > span { font-size: 11px; }

	.apx-stats__grid { padding: 20px 0; }
	.apx-stats strong { font-size: 18px; }
	.apx-stats small { font-size: 10px; }

	.apx-product-grid:not(.apx-product-grid--carousel),
	.products,
	.apx-product-grid--4,
	.apx-inside,
	.apx-icons-row {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.apx-card__body { padding: 12px 10px 12px; gap: 6px; }
	.apx-card__title { font-size: 13px; }
	.apx-card__price { font-size: 15px; }
	.apx-card .add_to_cart_button,
	.apx-card .button {
		min-height: 42px;
		padding: 8px 8px;
		font-size: 10px;
		letter-spacing: 0.08em;
	}
	.apx-badge { font-size: 9px; padding: 4px 8px; }

	.apx-page__head { margin-bottom: 8px; }
	.apx-shop { padding: 16px 0 64px; }
	.apx-shop__toolbar {
		gap: 8px;
		margin: 0 0 10px;
		align-items: stretch;
		flex-wrap: nowrap;
		flex-direction: column;
	}
	.apx-shop__count .woocommerce-result-count { font-size: 12px; }
	.woocommerce-ordering { width: 100%; }
	.woocommerce-ordering select.orderby {
		width: 100%;
		min-width: 0;
		height: 44px;
		font-size: 16px;
	}

	.apx-banner { min-height: 320px; }
	.apx-banner__copy { min-height: 320px; padding: 36px 0; }
	.apx-banner::after {
		background: linear-gradient(180deg, rgba(7,21,40,.82) 10%, rgba(7,21,40,.55) 100%);
	}

	.apx-process { grid-template-columns: 1fr; gap: 0; }
	.apx-process li {
		display: grid;
		grid-template-columns: 48px 1fr;
		grid-template-rows: auto auto;
		column-gap: 14px;
		text-align: left;
		padding: 0 0 22px;
	}
	.apx-process span {
		grid-row: 1 / span 2;
		width: 48px;
		height: 48px;
		margin: 0;
	}
	.apx-process h3 { margin-bottom: 4px; }

	/* Mockup variant keeps its own number + icon row when stacked. */
	.apx-process--mockup { grid-template-columns: 1fr; gap: 0; }
	.apx-process--mockup li { display: block; padding: 0 0 24px; }
	.apx-process--mockup .apx-process__top { margin-bottom: 12px; }
	.apx-process--mockup .apx-process__num { width: 44px; height: 44px; grid-row: auto; }
	.apx-process--mockup .apx-process__icon { width: 32px; height: 32px; grid-row: auto; }

	.apx-quality__copy p { margin: 12px 0 18px; }
	.apx-quality__media img { min-height: 0; max-height: none; height: auto; }
	.apx-quality .apx-btn { width: 100%; }

	.apx-review { min-width: min(78vw, 280px); flex-basis: min(78vw, 280px); }

	.apx-inside img { height: 160px; }

	.apx-footer { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
	.apx-footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 24px; }
	.apx-footer__bottom { flex-direction: column; align-items: stretch; }
	.apx-pay__row {
		width: auto;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 5px;
	}
	.apx-pay__mark {
		width: 44px;
		height: 28px;
		flex: 0 0 44px;
		padding: 0;
	}
	.apx-pay__mark img {
		width: 100%;
		height: 100%;
		max-height: 100%;
	}
	.apx-footer .apx-logo__img { height: 56px; max-width: min(340px, 100%); }

	.apx-pdp { padding-bottom: 12px; }
	.apx-pdp__top { gap: 24px; padding: 12px 0 32px; }
	.apx-pdp__stage { min-height: 0; }
	.apx-thumbs__btn img { width: 56px; height: 56px; }
	.apx-pdp__title { font-size: clamp(24px, 7vw, 32px); }
	.apx-pdp__price { font-size: 24px; }
	.apx-pdp .cart { padding: 16px; margin-top: 16px; }
	.apx-pdp-actions {
		position: static;
		background: transparent;
		padding: 0;
		box-shadow: none;
	}
	.apx-format button { min-height: 64px; padding: 10px 12px; }
	.apx-tabs__nav button { padding: 12px 12px; font-size: 11px; }
	.apx-icons-row { grid-template-columns: 1fr; }

	.woocommerce-checkout .col2-set { grid-template-columns: 1fr; }

	.apx-cart-layout { grid-template-columns: 1fr; gap: 20px; }
	.apx-cart-layout__side { position: static; }
	.woocommerce-cart .woocommerce-cart-form { overflow: visible; }
	.woocommerce-cart table.shop_table_responsive.cart,
	.woocommerce-cart table.cart.shop_table_responsive {
		display: block;
		width: 100%;
		border: 0;
	}
	.woocommerce-cart table.shop_table_responsive.cart thead { display: none; }
	.woocommerce-cart table.shop_table_responsive.cart tbody { display: block; width: 100%; }
	.woocommerce-cart table.shop_table_responsive.cart tr.cart_item {
		display: grid;
		grid-template-columns: 72px 1fr auto;
		grid-template-areas:
			"thumb name remove"
			"thumb price price"
			"qty qty qty"
			"subtotal subtotal subtotal";
		gap: 8px 12px;
		width: 100%;
		margin: 0 0 16px;
		padding: 14px;
		background: #fff;
		border: 1px solid rgba(0, 21, 41, 0.08);
		border-radius: var(--apx-radius);
	}
	.woocommerce-cart table.shop_table_responsive.cart tr.cart_item td {
		display: block;
		width: auto !important;
		padding: 0 !important;
		border: 0 !important;
		text-align: left !important;
	}
	.woocommerce-cart table.shop_table_responsive.cart tr.cart_item td::before {
		display: none !important;
		content: none !important;
	}
	.woocommerce-cart table.shop_table_responsive.cart td.product-thumbnail { grid-area: thumb; }
	.woocommerce-cart table.shop_table_responsive.cart td.product-name {
		grid-area: name;
		font-weight: 700;
		font-size: 14px;
		line-height: 1.3;
	}
	.woocommerce-cart table.shop_table_responsive.cart td.product-remove {
		grid-area: remove;
		justify-self: end;
		align-self: start;
	}
	.woocommerce-cart table.shop_table_responsive.cart td.product-price { grid-area: price; color: var(--apx-muted); }
	.woocommerce-cart table.shop_table_responsive.cart td.product-price::before,
	.woocommerce-cart table.shop_table_responsive.cart td.product-quantity::before,
	.woocommerce-cart table.shop_table_responsive.cart td.product-subtotal::before {
		display: inline !important;
		content: attr(data-title) ": ";
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--apx-muted);
		margin-right: 6px;
	}
	.woocommerce-cart table.shop_table_responsive.cart td.product-quantity { grid-area: qty; }
	.woocommerce-cart table.shop_table_responsive.cart td.product-subtotal { grid-area: subtotal; font-weight: 700; }
	.woocommerce-cart table.shop_table_responsive.cart tr:not(.cart_item) { display: block; width: 100%; border: 0; padding: 0; background: transparent; }
	.woocommerce-cart table.shop_table_responsive.cart tr:not(.cart_item) td.actions {
		display: block;
		width: 100%;
		padding: 8px 0 0 !important;
		border: 0 !important;
		background: transparent;
	}
	.woocommerce-cart .coupon { display: grid; grid-template-columns: 1fr; width: 100%; }
	.woocommerce-cart .coupon .input-text,
	.woocommerce-cart .coupon .button,
	.woocommerce-cart .actions > .button { width: 100%; }
	.woocommerce-cart .cart_totals { padding: 18px; }
	.apx-cart-empty__trust { grid-template-columns: 1fr; text-align: center; }
	.apx-cart-empty__trust li { padding-left: 0; }
	.apx-cart-empty__trust li::before { display: none; }
	.woocommerce-cart .cross-sells .products,
	.woocommerce-cart .cross-sells ul.products { grid-template-columns: 1fr 1fr; }

	.woocommerce table.shop_table { display: block; overflow-x: auto; }
	.woocommerce-cart table.shop_table_responsive.cart { overflow: visible; }
	.woocommerce td.product-thumbnail,
	.woocommerce th.product-thumbnail { display: none; }
	.woocommerce-cart table.shop_table_responsive.cart td.product-thumbnail { display: block !important; }
	.woocommerce form .input-text,
	.woocommerce-checkout form select,
	.woocommerce-cart form select { font-size: 16px; height: 48px; }
	.apx-bundle { padding: 40px 0; }
	.apx-quality__panel { grid-template-columns: 1fr; }
	.apx-section__actions {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}

@media (max-width: 400px) {
	.apx-product-grid:not(.apx-product-grid--carousel),
	.products,
	.apx-product-grid--4 {
		grid-template-columns: 1fr;
	}
	.apx-header__tools .apx-icon-btn:nth-child(2) { display: none; }
	.apx-hero__media img { height: auto; max-height: none; }
}

.apx-wa {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding: 0 18px 0 14px;
	border-radius: 999px;
	background: #25d366;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: 0 10px 30px rgba(7, 21, 40, .22);
}
.apx-wa:hover { filter: brightness(1.05); color: #fff !important; }
.apx-wa svg { display: block; flex: 0 0 auto; }
@media (max-width: 760px) {
	.apx-wa {
		right: 16px;
		bottom: calc(16px + env(safe-area-inset-bottom));
		padding: 0;
		width: 56px;
		height: 56px;
		min-height: 56px;
		justify-content: center;
	}
	.apx-wa span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }
}

.apx-lead-form { max-width: 480px; }
.apx-lead-form h2 { margin: 0 0 8px; }
.apx-lead-form form p { margin: 0 0 14px; }
.apx-lead-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.apx-lead-form input[type="text"],
.apx-lead-form input[type="email"] {
	width: 100%;
	height: 48px;
	border: 1px solid #d7dbe2;
	border-radius: var(--apx-radius);
	padding: 0 12px;
	font-size: 16px;
}
.apx-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.apx-form-msg { padding: 12px 14px; border: 1px solid #eee; background: var(--apx-grey); }
.apx-form-msg--ok { border-color: #cde9d6; background: #f3fbf6; }
.apx-form-msg--err { border-color: #f0d0d0; background: #fdf6f6; }

/* Cards visible per view in the best-sellers carousel. */
.apx-product-grid.apx-product-grid--carousel {
	display: flex !important;
	grid-template-columns: none !important;
}
@media (max-width: 1100px) {
	.apx-product-grid.apx-product-grid--carousel { --apx-carousel-per: 2.2; }
}
@media (max-width: 860px) {
	.apx-product-grid.apx-product-grid--carousel { --apx-carousel-per: 1.55; }
}
@media (max-width: 760px) {
	.apx-product-grid.apx-product-grid--carousel { --apx-carousel-gap: 12px; }
}
@media (max-width: 520px) {
	/* One full card plus a peek of the next, so it is obvious the row scrolls. */
	.apx-product-grid.apx-product-grid--carousel { --apx-carousel-per: 1.12; }
}
/* Large screens.
   The layout was pinned at 1240px at every width, so on a big monitor the
   content sat in a narrow ribbon down the middle while the full-bleed hero
   image kept growing with the viewport. Step the container up instead. */
@media (min-width: 1500px) {
	:root { --apx-max: 1400px; }
	.apx-hero__copy { max-width: 600px; }
	.apx-hero__lead { max-width: 540px; }
}
@media (min-width: 1800px) {
	:root { --apx-max: 1560px; }
	.apx-hero__grid { min-height: 640px; }
}
@media (min-width: 2200px) {
	:root { --apx-max: 1720px; }
	.apx-hero__grid { min-height: 700px; }
}

@media (max-width: 1100px) {
	.apx-hero,
	.apx-hero--mockup,
	.apx-hero__media,
	.apx-hero__media img {
		left: auto !important;
		right: auto !important;
		max-width: 100%;
	}
	.apx-hero__media {
		width: 100% !important;
	}
}