/* ==========================================================================
   Wall Spacer Pro — design tokens
   Values are taken directly from the Claude Design "WallSpacerPro" spec.
   ========================================================================== */

:root {
	--ink:      #12161C;
	--bg:       #F6F7F9;
	--white:    #FFFFFF;

	--amber:    #F5A300;
	--amber-h:  #E09300;
	--amber-t:  #B37200;
	--amber-l:  #FFB522;

	--cream:    #FFF1CF;
	--cream-b:  #F5C24D;
	--cream-t:  #5C3F00;
	--cream-bg: #FFFBF2;

	--line:     #E6E9EE;
	--line-2:   #DDE2E9;
	--line-3:   #EEF1F5;
	--line-4:   #ECEFF3;
	--fill:     #F1F3F7;
	--fill-2:   #F3F5F8;

	--muted:    #6B7382;
	--muted-2:  #4A525F;
	--muted-3:  #8A929E;
	--slate:    #3A424E;

	--green:    #166534;
	--red:      #B42318;

	--dark-1:   #C9CFD8;
	--dark-2:   #98A0AC;
	--dark-3:   #B9C0CA;
	--dark-ln:  #232A34;
	--dark-ln2: #2A313B;

	--sans: Outfit, Geist, system-ui, -apple-system, "Segoe UI", sans-serif;
	--mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--wrap: 1280px;
	--pill: 99px;

	--sh-sm: 0 1px 2px rgba(18,22,28,.05);
	--sh-card: 0 1px 2px rgba(18,22,28,.05), 0 8px 20px -12px rgba(18,22,28,.18);
	--sh-hover: 0 2px 4px rgba(18,22,28,.06), 0 18px 32px -16px rgba(18,22,28,.28);
	--sh-lift: 0 18px 30px -18px rgba(18,22,28,.3);
	--sh-pop: 0 24px 48px -20px rgba(18,22,28,.35);
}

@keyframes wsSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes wsFade    { from { opacity: 0; }                 to { opacity: 1; } }

/* ==========================================================================
   Base
   ========================================================================== */

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

html, body { margin: 0; padding: 0; background: var(--bg); }

body {
	font-family: var(--sans);
	color: var(--ink);
	font-size: 16.5px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--amber-t); }

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

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

h1, h2, h3, h4 { margin: 0; letter-spacing: -.03em; font-weight: 800; }

.wsp-wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

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

.wsp-mono { font-family: var(--mono); }
.wsp-selectable { user-select: all; cursor: text; }

/* Buttons ---------------------------------------------------------------- */

.wsp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	border: none; cursor: pointer; border-radius: var(--pill);
	font-family: inherit; font-weight: 700; text-align: center;
	padding: 14px 24px; font-size: 15.5px; line-height: 1.2;
	transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.wsp-btn--amber { background: var(--amber); color: var(--ink); font-weight: 800; }
.wsp-btn--amber:hover { background: var(--amber-h); color: var(--ink); }
.wsp-btn--ink { background: var(--ink); color: var(--white); }
.wsp-btn--ink:hover { background: #000; color: var(--white); }
.wsp-btn--ghost { background: var(--white); border: 1.5px solid var(--line-2); color: var(--ink); }
.wsp-btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.wsp-btn--block { width: 100%; }
.wsp-btn[disabled] { opacity: .45; cursor: not-allowed; }

.wsp-badge {
	display: inline-block; background: var(--cream); border: 1px solid var(--cream-b);
	color: var(--cream-t); font-size: 13px; font-weight: 700;
	padding: 5px 12px; border-radius: var(--pill);
}
.wsp-tag {
	background: var(--cream); color: var(--cream-t); border: 1px solid var(--cream-b);
	font-size: 11px; font-weight: 700; letter-spacing: .03em;
	padding: 3px 8px; border-radius: var(--pill); white-space: nowrap;
}
.wsp-tag--after { background: var(--line-3); color: var(--slate); border-color: #D8DDE5; }

.wsp-link-amber { font-size: 14.5px; font-weight: 700; color: var(--amber-t); cursor: pointer; }

/* Section furniture ------------------------------------------------------ */

.wsp-section { max-width: var(--wrap); margin: 0 auto; padding: 56px 24px 0; }
.wsp-section--tight { padding-top: 48px; }
.wsp-section__head {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; margin-bottom: 20px;
}
.wsp-h2 { font-size: 30px; font-weight: 800; letter-spacing: -.03em; margin: 0; }
.wsp-sub { margin: 0 0 18px; color: var(--muted); font-size: 16px; }

.wsp-grid { display: grid; gap: 16px; }
.wsp-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.wsp-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.wsp-grid--7 { grid-template-columns: repeat(7, minmax(0,1fr)); gap: 12px; }

/* ==========================================================================
   Announcement bar + header
   ========================================================================== */

.wsp-announce { background: var(--ink); color: var(--dark-1); font-size: 13.5px; }
.wsp-announce__in {
	max-width: var(--wrap); margin: 0 auto; padding: 9px 24px;
	display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.wsp-announce__lead { color: var(--amber); font-weight: 700; }
.wsp-announce__rule { width: 1px; height: 14px; background: var(--dark-ln2); }
.wsp-announce a { color: var(--dark-1); font-weight: 600; }
.wsp-announce a:hover { color: var(--white); }
.wsp-announce__tail { margin-left: auto; }

.wsp-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.wsp-header__bar {
	max-width: var(--wrap); margin: 0 auto; padding: 14px 24px;
	display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px;
}
.wsp-logo { flex: 0 0 auto; display: flex; align-items: center; }
.wsp-logo img { height: 34px; width: auto; display: block; }
.wsp-logo__text {
	display: flex; align-items: baseline; gap: 1px;
	font-size: 23px; font-weight: 800; letter-spacing: -.035em; color: var(--ink);
}
.wsp-logo__text b { font-weight: 800; }
.wsp-logo__text span { color: var(--amber); }

.wsp-header__actions { display: flex; align-items: center; gap: 20px; margin-left: auto; flex: 0 0 auto; }
.wsp-account { font-size: 14.5px; font-weight: 600; color: var(--muted-2); white-space: nowrap; }
.wsp-account:hover { color: var(--ink); }

.wsp-cart-btn {
	border: none; background: transparent; cursor: pointer;
	display: flex; align-items: center; gap: 8px; padding: 6px 2px;
	font-size: 14.5px; font-weight: 700; color: var(--ink);
}
.wsp-cart-btn:hover { color: var(--amber-t); }
.wsp-cart-count {
	background: var(--amber); color: var(--ink);
	font-size: 12px; font-weight: 800; min-width: 20px; height: 20px;
	border-radius: var(--pill); display: inline-flex; align-items: center;
	justify-content: center; padding: 0 6px;
}

/* Search ----------------------------------------------------------------- */

.wsp-search { position: relative; flex: 1 1 340px; min-width: 220px; max-width: 560px; }
.wsp-search__input {
	width: 100%; border: 1.5px solid var(--line-2); background: var(--white);
	border-radius: var(--pill); padding: 12px 18px; font-size: 15px;
	color: var(--ink); outline: none; box-shadow: var(--sh-sm);
	transition: border-color .14s ease, box-shadow .14s ease;
}
.wsp-search__input:focus { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245,163,0,.18); }

.wsp-results {
	position: absolute; top: 52px; left: 0; right: 0;
	background: var(--white); border: 1px solid var(--line);
	border-radius: 16px; box-shadow: var(--sh-pop);
	padding: 8px; z-index: 80; animation: wsFade .12s ease;
	max-height: 60vh; overflow-y: auto;
}
.wsp-results[hidden] { display: none !important; }
.wsp-result {
	display: flex; align-items: center; gap: 12px;
	padding: 9px 10px; border-radius: 11px; cursor: pointer;
}
.wsp-result:hover, .wsp-result:focus { background: #F4F6F9; }
.wsp-result__img {
	width: 40px; height: 40px; background: var(--fill);
	border-radius: 8px; flex: 0 0 auto; object-fit: contain; mix-blend-mode: multiply;
}
.wsp-result__pn { font-family: var(--mono); font-size: 13px; font-weight: 600; min-width: 78px; }
.wsp-result__name { font-size: 14.5px; flex: 1 1 auto; }
.wsp-result__price { font-size: 14.5px; font-weight: 700; }
.wsp-results__empty { padding: 14px 12px; color: var(--muted); font-size: 14.5px; }

/* Nav -------------------------------------------------------------------- */

.wsp-nav { border-top: 1px solid var(--line-3); }
.wsp-nav__in {
	max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
	display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
	font-size: 14.5px; font-weight: 600;
}
.wsp-nav a, .wsp-nav__item {
	white-space: nowrap; padding: 11px 0;
	border-bottom: 2px solid transparent; color: var(--ink);
}
.wsp-nav a:hover, .wsp-nav__item:hover { border-bottom-color: var(--amber); color: var(--ink); }
.wsp-nav__note { margin-left: auto; font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 11px 0; }
.wsp-nav ul { list-style: none; margin: 0; padding: 0; display: contents; }

/* ==========================================================================
   Homepage — hero
   ========================================================================== */

.wsp-hero { position: relative; background: var(--bg) center right / cover no-repeat; border-bottom: 1px solid var(--line-4); }
.wsp-hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, var(--bg) 0%, rgba(246,247,249,.97) 42%, rgba(246,247,249,.86) 68%, rgba(246,247,249,.66) 100%);
}
.wsp-hero__in {
	position: relative; max-width: var(--wrap); margin: 0 auto;
	padding: 64px 24px 56px;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr));
	gap: 48px; align-items: center;
}
.wsp-hero h1 {
	font-size: clamp(38px, 5.2vw, 60px); line-height: 1.03; letter-spacing: -.04em;
	font-weight: 800; margin: 18px 0 14px; text-wrap: balance;
}
.wsp-hero__lede { font-size: 19px; line-height: 1.5; color: var(--muted-2); margin: 0 0 26px; max-width: 52ch; }
.wsp-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Lookup card ------------------------------------------------------------ */

.wsp-lookup {
	background: var(--white); border: 1px solid var(--line);
	border-radius: 20px; padding: 22px;
	box-shadow: var(--sh-sm), 0 30px 60px -30px rgba(18,22,28,.4);
}
.wsp-tabs {
	display: flex; gap: 6px; background: var(--fill);
	padding: 5px; border-radius: var(--pill); margin-bottom: 20px;
}
.wsp-tab {
	flex: 1 1 0; border: none; cursor: pointer; border-radius: var(--pill);
	padding: 9px 10px; font-size: 13.5px; font-weight: 700;
	background: transparent; color: var(--muted); transition: background .15s ease, color .15s ease;
}
.wsp-tab[aria-selected="true"] { background: var(--white); color: var(--ink); box-shadow: 0 1px 3px rgba(18,22,28,.16); }

.wsp-panel { display: grid; gap: 12px; }
.wsp-panel[hidden] { display: none !important; }
.wsp-field { display: grid; gap: 6px; }
.wsp-label {
	font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
	text-transform: uppercase; color: var(--muted);
}
.wsp-select, .wsp-input {
	appearance: none; width: 100%; border: 1.5px solid var(--line-2);
	background: var(--white); border-radius: 12px; padding: 12px 14px;
	font-size: 15px; color: var(--ink); outline: none;
}
.wsp-select { cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 38px; }
.wsp-select:focus, .wsp-input:focus { border-color: var(--amber); }
.wsp-input--mono { font-family: var(--mono); font-size: 16px; padding: 14px; }
.wsp-hint { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

.wsp-diagram {
	display: flex; align-items: center; justify-content: space-between;
	border: 1.5px solid var(--line); border-radius: 14px; padding: 14px; cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
}
.wsp-diagram:hover { border-color: var(--amber); background: var(--cream-bg); }
.wsp-diagram__label { font-size: 15px; font-weight: 600; }
.wsp-diagram__count { font-size: 13.5px; color: var(--muted); }

/* Trust strip ------------------------------------------------------------ */

.wsp-trust { background: var(--white); border-bottom: 1px solid var(--line-4); }
.wsp-trust__in {
	max-width: var(--wrap); margin: 0 auto; padding: 26px 24px;
	display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 24px;
}
.wsp-trust__item { display: flex; flex-direction: column; gap: 4px; }
.wsp-trust__title { font-size: 15px; font-weight: 700; }
.wsp-trust__body { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* Tiles ------------------------------------------------------------------ */

.wsp-tile {
	background: var(--white); border: 1px solid var(--line); border-radius: 16px;
	padding: 14px; display: flex; align-items: center; gap: 14px;
	box-shadow: var(--sh-sm); color: var(--ink);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wsp-tile:hover { transform: translateY(-3px); box-shadow: var(--sh-lift); color: var(--ink); }
.wsp-tile__img {
	width: 64px; height: 64px; background: var(--fill-2); border-radius: 12px;
	padding: 6px; flex: 0 0 auto; object-fit: contain; mix-blend-mode: multiply;
}
.wsp-tile__name { font-size: 15.5px; font-weight: 700; }
.wsp-tile__count { font-size: 13px; color: var(--muted); }

.wsp-tool-tile {
	background: linear-gradient(180deg, var(--white) 0%, #F7F9FB 100%);
	border: 1px solid var(--line); border-radius: 16px; padding: 20px;
	display: block; color: var(--ink);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wsp-tool-tile:hover { transform: translateY(-3px); box-shadow: var(--sh-lift); color: var(--ink); }
.wsp-tool-tile__name { font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.wsp-tool-tile__count { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

.wsp-brand-tile {
	background: var(--white); border: 1px solid var(--line); border-radius: 14px;
	height: 76px; display: flex; flex-direction: column; align-items: center;
	justify-content: center; gap: 3px; color: var(--ink);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wsp-brand-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 26px -18px rgba(18,22,28,.3); color: var(--ink); }
.wsp-brand-tile__name { font-size: 14.5px; font-weight: 700; letter-spacing: -.02em; text-align: center; padding: 0 8px; }
.wsp-brand-tile__note { font-size: 12px; color: var(--muted-3); }

/* ==========================================================================
   Product card
   ========================================================================== */

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

/* WooCommerce's layout stylesheet floats loop items and gives them percentage
   widths. It is dequeued, but neutralise it defensively so a plugin re-adding
   it cannot break the grid. */
.woocommerce ul.products li.product,
ul.products li.product {
	float: none; width: auto; margin: 0; clear: none;
}
ul.products::before, ul.products::after { content: none; }

.wsp-card {
	display: flex; flex-direction: column; height: 100%;
	background: var(--white); border: 1px solid var(--line); border-radius: 16px;
	padding: 14px; box-shadow: var(--sh-card);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wsp-card:hover { transform: translateY(-3px); box-shadow: var(--sh-hover); }

.wsp-card__media {
	position: relative; border-radius: 12px; overflow: hidden;
	background: radial-gradient(120% 100% at 50% 0%, var(--white) 0%, #EFF1F5 100%);
	aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.wsp-card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.wsp-flag {
	position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--white);
	font-size: 11px; font-weight: 700; letter-spacing: .04em;
	padding: 4px 8px; border-radius: var(--pill);
}
.wsp-card__out {
	position: absolute; inset: 0; background: rgba(246,247,249,.72);
	display: flex; align-items: center; justify-content: center;
}
.wsp-card__out span {
	background: var(--ink); color: var(--white); font-size: 12px;
	font-weight: 700; padding: 6px 12px; border-radius: var(--pill);
}

.wsp-card__meta { display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.wsp-card__brand { font-size: 11px; font-weight: 600; color: var(--muted); margin-left: auto; }
.wsp-card__title {
	font-size: 15px; font-weight: 600; line-height: 1.3;
	color: var(--ink); margin-top: 8px; text-wrap: pretty;
}
.wsp-card__pn {
	display: inline-block; margin-top: 8px;
	font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink);
	background: var(--fill); border: 1px solid #E2E6EC; border-radius: 8px; padding: 3px 8px;
}
.wsp-card__fits { font-size: 12.5px; color: var(--muted); margin-top: 8px; line-height: 1.45; }
.wsp-card__oem { font-size: 12px; color: var(--muted); margin-top: 4px; }
.wsp-card__oem span { font-family: var(--mono); font-weight: 600; color: var(--slate); }

.wsp-card__foot {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 10px; margin-top: auto; padding-top: 14px;
}
.wsp-card__price { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.wsp-card__price .amount { font-size: inherit; font-weight: inherit; color: inherit; }
.wsp-card__price del { display: none; }
.wsp-card__stock { font-size: 12px; font-weight: 600; }
.is-in  { color: var(--green); }
.is-low { color: #8A5A00; }
.is-out { color: var(--red); }

.wsp-card .wsp-add { font-size: 13.5px; font-weight: 700; padding: 10px 16px; box-shadow: 0 1px 0 rgba(18,22,28,.08); }
.wsp-add.loading { opacity: .6; pointer-events: none; }
.wsp-add.added::after { content: " ✓"; }

/* Wear-part rows --------------------------------------------------------- */

.wsp-wear {
	display: flex; align-items: center; gap: 14px;
	background: var(--white); border: 1px solid var(--line);
	border-radius: 14px; padding: 12px;
}
.wsp-wear__img {
	width: 56px; height: 56px; background: var(--fill-2); border-radius: 10px;
	flex: 0 0 auto; object-fit: contain; mix-blend-mode: multiply;
}
.wsp-wear__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1 1 auto; }
.wsp-wear__name { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.wsp-wear__pn { font-family: var(--mono); font-size: 12.5px; color: var(--muted); user-select: all; }
.wsp-wear__right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.wsp-wear__price { font-size: 16px; font-weight: 800; }
.wsp-wear__add {
	cursor: pointer; background: var(--cream); color: var(--cream-t);
	border: 1px solid var(--cream-b); font-size: 12.5px; font-weight: 700;
	padding: 5px 12px; border-radius: var(--pill); transition: background .15s ease, color .15s ease;
}
.wsp-wear__add:hover { background: var(--amber); color: var(--ink); }

/* Kits ------------------------------------------------------------------- */

.wsp-kits {
	margin-top: 56px;
	background: linear-gradient(180deg, var(--white) 0%, #FFF7E8 100%);
	border-top: 1px solid var(--line-4); border-bottom: 1px solid #F0E4CB;
}
.wsp-kits__in { max-width: var(--wrap); margin: 0 auto; padding: 52px 24px; }
.wsp-kit {
	background: var(--white); border: 1px solid #EADFC7; border-radius: 18px;
	padding: 18px; display: flex; flex-direction: column; gap: 12px; color: var(--ink);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wsp-kit:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -20px rgba(18,22,28,.32); color: var(--ink); }
.wsp-kit__img { width: 100%; height: 120px; background: #F7F8FA; border-radius: 12px; object-fit: contain; mix-blend-mode: multiply; }
.wsp-kit__name { font-size: 18px; font-weight: 700; letter-spacing: -.02em; line-height: 1.25; }
.wsp-kit__meta { font-size: 14px; color: var(--muted); }
.wsp-kit__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.wsp-kit__price { font-size: 22px; font-weight: 800; }

/* Pro + help split ------------------------------------------------------- */

.wsp-split {
	max-width: var(--wrap); margin: 0 auto; padding: 56px 24px 0;
	display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 20px;
}
.wsp-pro-card { background: var(--ink); color: var(--white); border-radius: 20px; padding: 34px; }
.wsp-pro-card__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--amber); }
.wsp-pro-card h2 { font-size: 30px; margin: 12px 0 10px; color: var(--white); }
.wsp-pro-card p { margin: 0 0 22px; color: var(--dark-3); font-size: 16px; line-height: 1.55; max-width: 56ch; }
.wsp-pro-card .wsp-btn--amber:hover { background: var(--amber-l); }

.wsp-help-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 34px; }
.wsp-help-card h2 { font-size: 26px; margin: 0 0 10px; }
.wsp-help-card p { margin: 0 0 20px; color: var(--muted-2); font-size: 16px; line-height: 1.55; }
.wsp-help-card__cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* Reviews ---------------------------------------------------------------- */

.wsp-review {
	background: var(--white); border: 1px solid var(--line); border-radius: 18px;
	padding: 22px; display: flex; flex-direction: column; gap: 14px;
}
.wsp-review__stars { color: var(--amber); font-size: 15px; letter-spacing: .14em; font-weight: 700; }
.wsp-review__quote { margin: 0; font-size: 16px; line-height: 1.55; color: #22282F; }
.wsp-review__by { margin-top: auto; font-size: 13.5px; color: var(--muted); }
.wsp-review__by b { color: var(--ink); }

/* FAQ + newsletter ------------------------------------------------------- */

.wsp-faq-wrap {
	max-width: var(--wrap); margin: 0 auto; padding: 56px 24px 64px;
	display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
	gap: 36px; align-items: start;
}
.wsp-faq { display: grid; gap: 10px; }
.wsp-faq__item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.wsp-faq__q {
	width: 100%; background: none; border: none; cursor: pointer; text-align: left;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 16px 18px; font-size: 16.5px; font-weight: 600; color: var(--ink);
}
.wsp-faq__sign { font-size: 20px; color: var(--muted-3); font-weight: 600; }
.wsp-faq__a { padding: 0 18px 18px; color: var(--muted-2); font-size: 15.5px; line-height: 1.6; }
.wsp-faq__a[hidden] { display: none !important; }

.wsp-news {
	background: var(--white); border: 1px solid var(--line); border-radius: 18px;
	padding: 26px; position: sticky; top: 110px;
}
.wsp-news h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 8px; }
.wsp-news p { margin: 0 0 16px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.wsp-news__row { display: flex; gap: 8px; }
.wsp-news__row input {
	flex: 1 1 auto; border: 1.5px solid var(--line-2); border-radius: var(--pill);
	padding: 12px 16px; font-size: 15px; outline: none;
}
.wsp-news__row input:focus { border-color: var(--amber); }
.wsp-news__row button { padding: 12px 20px; font-size: 14.5px; }

/* ==========================================================================
   Archive
   ========================================================================== */

.wsp-crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.wsp-crumbs a { color: var(--muted); }
.wsp-crumbs a:hover { color: var(--ink); }

.wsp-archive { max-width: var(--wrap); margin: 0 auto; padding: 28px 24px 64px; }
.wsp-archive__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.wsp-archive__head h1 { font-size: 34px; font-weight: 800; letter-spacing: -.035em; margin: 0; }

.wsp-chip-active {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--cream); border: 1px solid var(--cream-b); color: var(--cream-t);
	font-size: 13.5px; font-weight: 700; padding: 7px 8px 7px 14px; border-radius: var(--pill);
}
.wsp-chip-active a {
	background: var(--amber); color: var(--ink); width: 20px; height: 20px;
	border-radius: var(--pill); display: inline-flex; align-items: center;
	justify-content: center; font-size: 13px; line-height: 1;
}

.wsp-archive__body { display: grid; grid-template-columns: 264px minmax(0,1fr); gap: 26px; align-items: start; }

.wsp-filters {
	background: var(--white); border: 1px solid var(--line); border-radius: 18px;
	padding: 20px; position: sticky; top: 110px;
}
.wsp-filters__group { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line-3); }
.wsp-filters__label {
	font-size: 12.5px; font-weight: 700; letter-spacing: .05em;
	text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.wsp-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.wsp-chip {
	font-size: 13.5px; font-weight: 600; padding: 6px 12px; border-radius: var(--pill);
	border: 1.5px solid var(--line-2); background: var(--white); color: var(--slate);
	transition: border-color .14s ease, background .14s ease, color .14s ease;
}
.wsp-chip:hover { border-color: var(--amber); color: var(--slate); }
.wsp-chip.is-on { border-color: var(--amber); background: var(--cream); color: var(--cream-t); }

.wsp-price-slider { width: 100%; accent-color: var(--amber); }
.wsp-price-out { font-size: 13.5px; color: var(--muted-2); margin-top: 6px; }
.wsp-price-out b { font-weight: 700; }

.wsp-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.wsp-count { font-size: 14.5px; color: var(--muted); }
.wsp-sort {
	appearance: none; border: 1.5px solid var(--line-2); background: var(--white);
	border-radius: var(--pill); padding: 10px 34px 10px 16px; font-size: 14.5px;
	font-weight: 600; cursor: pointer; outline: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
	background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}

.wsp-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.wsp-pagination .page-numbers {
	min-width: 40px; height: 40px; display: inline-flex; align-items: center;
	justify-content: center; border-radius: var(--pill); font-size: 14.5px;
	font-weight: 700; border: 1.5px solid var(--line-2); background: var(--white); color: var(--slate);
}
.wsp-pagination .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.wsp-pagination .page-numbers.current { border-color: var(--ink); background: var(--ink); color: var(--white); }

.wsp-empty { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 48px 24px; text-align: center; color: var(--muted); }

/* ==========================================================================
   Product detail
   ========================================================================== */

.wsp-pdp { max-width: var(--wrap); margin: 0 auto; padding: 28px 24px 64px; }
.wsp-pdp__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px,1fr)); gap: 44px; align-items: start; }

.wsp-gallery__main {
	background: var(--white); border: 1px solid var(--line); border-radius: 20px;
	padding: 24px; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3;
}
.wsp-gallery__main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.wsp-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.wsp-gallery__thumb {
	cursor: pointer; width: 88px; height: 88px; border-radius: 12px;
	border: 2px solid var(--line); background: var(--white); padding: 6px;
	display: flex; align-items: center; justify-content: center;
}
.wsp-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.wsp-gallery__thumb.is-on { border-color: var(--amber); }

.wsp-specs { margin-top: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.wsp-specs h3 { font-size: 19px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; }
.wsp-specs__row {
	display: grid; grid-template-columns: 200px minmax(0,1fr); gap: 16px;
	padding: 11px 0; border-top: 1px solid var(--line-3); font-size: 15.5px;
}
.wsp-specs__k { color: var(--muted); }
.wsp-specs__v { font-weight: 600; }
.wsp-specs__note { margin: 16px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

.wsp-buy { position: sticky; top: 110px; }
.wsp-buy__eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.wsp-buy__ctx { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.wsp-buy h1 { font-size: 33px; font-weight: 800; letter-spacing: -.035em; line-height: 1.12; margin: 0 0 16px; text-wrap: pretty; }

.wsp-numbers {
	background: var(--white); border: 1px solid var(--line); border-radius: 16px;
	padding: 16px; display: grid; gap: 10px; margin-bottom: 18px;
}
.wsp-numbers__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wsp-numbers__k { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.wsp-numbers__v { font-family: var(--mono); font-size: 15px; user-select: all; cursor: text; }
.wsp-numbers__v--pill {
	font-size: 16px; font-weight: 600; background: var(--fill);
	border: 1px solid #E2E6EC; border-radius: 8px; padding: 4px 10px;
}

.wsp-buy__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; flex-wrap: wrap; }
.wsp-buy__amount { font-size: 40px; font-weight: 800; letter-spacing: -.035em; }
.wsp-buy__amount .amount { font-size: inherit; color: inherit; font-weight: inherit; }
.wsp-buy__amount del { display: none; }
.wsp-buy__stock { font-size: 15px; font-weight: 700; }
.wsp-buy__dispatch { margin: 0 0 20px; font-size: 15px; color: var(--muted); }

.wsp-qty-row { display: flex; gap: 10px; align-items: stretch; margin-bottom: 12px; }
.wsp-stepper {
	display: flex; align-items: center; border: 1.5px solid var(--line-2);
	background: var(--white); border-radius: var(--pill); overflow: hidden;
}
.wsp-stepper button {
	border: none; background: none; cursor: pointer;
	padding: 0 16px; font-size: 20px; line-height: 52px; color: var(--muted-2);
}
.wsp-stepper button:hover { color: var(--ink); }
.wsp-stepper input {
	width: 44px; border: none; text-align: center; font-size: 17px;
	font-weight: 700; outline: none; background: transparent; -moz-appearance: textfield;
}
.wsp-stepper input::-webkit-outer-spin-button,
.wsp-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.wsp-qty-row .wsp-btn { flex: 1 1 auto; font-size: 17px; padding: 0 24px; }

.wsp-fitment { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px; margin-top: 20px; }
.wsp-fitment h3 { font-size: 16px; font-weight: 800; margin: 0 0 10px; }
.wsp-fitment ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.wsp-fitment li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.wsp-fitment li::before { content: ""; width: 6px; height: 6px; border-radius: var(--pill); background: var(--amber); flex: 0 0 auto; }

.wsp-related { margin-top: 56px; }
.wsp-related h2 { font-size: 26px; font-weight: 800; letter-spacing: -.03em; margin: 0 0 18px; }

/* ==========================================================================
   Cart drawer
   ========================================================================== */

.wsp-drawer { position: fixed; inset: 0; z-index: 90; animation: wsFade .15s ease; }
.wsp-drawer[hidden] { display: none !important; }
.wsp-drawer__scrim { position: absolute; inset: 0; background: rgba(18,22,28,.42); border: none; width: 100%; cursor: pointer; }
.wsp-drawer__panel {
	position: absolute; top: 0; right: 0; bottom: 0; width: 440px; max-width: 100vw;
	background: var(--bg); box-shadow: -30px 0 60px -30px rgba(18,22,28,.5);
	display: flex; flex-direction: column;
	animation: wsSlideIn .22s cubic-bezier(.32,.72,0,1);
}
.wsp-drawer__inner { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; }
.wsp-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 22px; background: var(--white); border-bottom: 1px solid var(--line);
}
.wsp-drawer__title { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.wsp-drawer__close { background: none; border: none; cursor: pointer; font-size: 22px; color: var(--muted); line-height: 1; padding: 0 4px; }
.wsp-drawer__close:hover { color: var(--ink); }

.wsp-drawer__body { flex: 1 1 auto; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 12px; }
.wsp-drawer__empty { padding: 40px 0; text-align: center; color: var(--muted); font-size: 15.5px; }

.wsp-line { display: flex; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 12px; }
.wsp-line__img { width: 56px; height: 56px; background: var(--fill-2); border-radius: 10px; flex: 0 0 auto; object-fit: contain; mix-blend-mode: multiply; }
.wsp-line__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.wsp-line__name { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.wsp-line__pn { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.wsp-line__ctl { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
.wsp-line__ctl button {
	width: 24px; height: 24px; border-radius: var(--pill); border: 1px solid var(--line-2);
	background: var(--white); cursor: pointer; display: inline-flex;
	align-items: center; justify-content: center; font-size: 14px; line-height: 1; color: var(--ink);
}
.wsp-line__ctl button:hover { border-color: var(--ink); }
.wsp-line__qty { font-size: 14px; font-weight: 700; min-width: 16px; text-align: center; }
.wsp-line__remove { margin-left: auto; font-size: 13px; color: var(--red); font-weight: 600; background: none; border: none; cursor: pointer; padding: 0; }
.wsp-line__total { font-size: 15px; font-weight: 800; white-space: nowrap; }

.wsp-drawer__foot { background: var(--white); border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.wsp-ship { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.wsp-ship__opt {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	border: 1.5px solid var(--line); background: var(--white); border-radius: 12px;
	padding: 11px 14px; cursor: pointer; width: 100%; text-align: left;
	transition: border-color .14s ease, background .14s ease;
}
.wsp-ship__opt.is-on { border-color: var(--amber); background: var(--cream-bg); }
.wsp-ship__label { font-size: 14.5px; font-weight: 700; display: block; }
.wsp-ship__note { font-size: 12.5px; color: var(--muted); display: block; }
.wsp-ship__price { font-size: 14.5px; font-weight: 700; white-space: nowrap; }

.wsp-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.wsp-subtotal__k { font-size: 15px; color: var(--muted); font-weight: 600; }
.wsp-subtotal__v { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.wsp-drawer__foot .wsp-btn { font-size: 16.5px; padding: 15px; }

body.wsp-drawer-open { overflow: hidden; }

/* ==========================================================================
   Footer
   ========================================================================== */

.wsp-footer { background: var(--ink); color: var(--dark-2); margin-top: 0; }
.wsp-footer__in {
	max-width: var(--wrap); margin: 0 auto; padding: 52px 24px 28px;
	display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px;
}
.wsp-footer__brand { display: flex; align-items: baseline; gap: 2px; margin-bottom: 12px; }
.wsp-footer__brand b { font-size: 21px; font-weight: 800; letter-spacing: -.035em; color: var(--white); }
.wsp-footer__brand span { font-size: 21px; font-weight: 800; letter-spacing: -.035em; color: var(--amber); }
.wsp-footer p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.wsp-footer__phone { font-size: 14.5px; color: var(--dark-1); font-weight: 600; }
.wsp-footer__email { font-size: 14.5px; }

/* Any link in the footer, not just the link columns — the global `a` rule is
   near-black and would vanish against the dark ground. */
.wsp-footer a { color: var(--dark-2); }
.wsp-footer a:hover { color: var(--white); }
.wsp-footer__email a { color: var(--dark-1); }
.wsp-footer__col-title {
	font-size: 13px; font-weight: 700; letter-spacing: .05em;
	text-transform: uppercase; color: var(--white); margin-bottom: 12px;
}
.wsp-footer__links { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.wsp-footer__links a { color: var(--dark-2); }
.wsp-footer__links a:hover { color: var(--white); }
.wsp-footer__bar {
	max-width: var(--wrap); margin: 0 auto; padding: 18px 24px 40px;
	border-top: 1px solid var(--dark-ln); display: flex; align-items: center;
	justify-content: space-between; gap: 16px; font-size: 13.5px; flex-wrap: wrap;
}

/* ==========================================================================
   WooCommerce notices, cart, checkout, account
   ========================================================================== */

.wsp-page { max-width: var(--wrap); margin: 0 auto; padding: 32px 24px 72px; }
.wsp-page--narrow { max-width: 900px; }
.wsp-page h1.entry-title { font-size: 38px; letter-spacing: -.035em; margin: 0 0 20px; }

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
	list-style: none; background: var(--white); border: 1px solid var(--line);
	border-left: 4px solid var(--amber); border-radius: 12px;
	padding: 14px 18px; margin: 0 0 18px; font-size: 15px;
}
.woocommerce-notices-wrapper .woocommerce-error { border-left-color: var(--red); }
.woocommerce-notices-wrapper .woocommerce-message { border-left-color: var(--green); }

.woocommerce table.shop_table {
	width: 100%; border-collapse: collapse; background: var(--white);
	border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
	padding: 14px 16px; border-top: 1px solid var(--line-3); text-align: left; font-size: 15px;
}
.woocommerce table.shop_table th { font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

.woocommerce .button, .woocommerce button.button, .woocommerce input.button,
.woocommerce a.button, .woocommerce #respond input#submit {
	background: var(--amber); color: var(--ink); border: none; cursor: pointer;
	border-radius: var(--pill); font-weight: 800; font-size: 15.5px;
	padding: 14px 24px; font-family: inherit; line-height: 1.2;
}
.woocommerce .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--amber-h); color: var(--ink); }
.woocommerce .button.alt { background: var(--ink); color: var(--white); }
.woocommerce .button.alt:hover { background: #000; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page input[type="text"], .woocommerce-page input[type="email"],
.woocommerce-page input[type="tel"], .woocommerce-page input[type="password"] {
	border: 1.5px solid var(--line-2); border-radius: 12px; padding: 13px 14px;
	font-size: 15.5px; outline: none; width: 100%; background: var(--white); font-family: inherit;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--amber); }

/* Pro-account enquiry form ------------------------------------------------ */

.wsp-form { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px; display: grid; gap: 18px; }
.wsp-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.wsp-form label { display: grid; gap: 7px; }
.wsp-form .wsp-label { font-size: 13px; }
.wsp-form textarea { resize: vertical; font-family: var(--mono); }
.wsp-form__ok {
	background: #F1FAF3; border: 1px solid #BFE3C9; color: var(--green);
	border-radius: 12px; padding: 14px 16px; font-size: 15px; font-weight: 600;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
	.wsp-grid--4 { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.wsp-grid--7 { grid-template-columns: repeat(4, minmax(0,1fr)); }
	.wsp-trust__in { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.wsp-footer__in { grid-template-columns: 1fr 1fr 1fr; }
	ul.products.columns-4 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 980px) {
	.wsp-archive__body { grid-template-columns: 1fr; }
	.wsp-filters { position: static; }
	.wsp-split, .wsp-faq-wrap { grid-template-columns: 1fr; }
	.wsp-news { position: static; }
	.wsp-buy { position: static; }
	.wsp-announce__tail { display: none; }
}

@media (max-width: 782px) {
	body { font-size: 16px; }
	.wsp-header__bar { padding: 12px 16px; gap: 12px; }
	.wsp-wrap, .wsp-section, .wsp-archive, .wsp-pdp, .wsp-page { padding-left: 16px; padding-right: 16px; }
	.wsp-search { order: 3; flex-basis: 100%; max-width: none; }
	.wsp-header__actions { margin-left: auto; gap: 14px; }
	.wsp-nav__in { gap: 18px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
	.wsp-nav__note { display: none; }
	.wsp-hero__in { padding: 40px 16px 40px; gap: 32px; }
	.wsp-grid--4, .wsp-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.wsp-grid--7 { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.wsp-trust__in { grid-template-columns: repeat(2, minmax(0,1fr)); }
	ul.products.columns-3, ul.products.columns-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.wsp-pdp__top { grid-template-columns: 1fr; gap: 28px; }
	.wsp-specs__row { grid-template-columns: 1fr; gap: 2px; }
	.wsp-footer__in { grid-template-columns: 1fr 1fr; }
	.wsp-form__grid { grid-template-columns: 1fr; }
	.wsp-drawer__panel { width: 100%; }
	.wsp-h2, .wsp-archive__head h1 { font-size: 26px; }
	.wsp-buy h1 { font-size: 27px; }
	.wsp-buy__amount { font-size: 34px; }
}

@media (max-width: 520px) {
	.wsp-grid--4, .wsp-grid--3, .wsp-grid--7,
	ul.products.columns-3, ul.products.columns-4 { grid-template-columns: 1fr; }
	.wsp-trust__in { grid-template-columns: 1fr; }
	.wsp-footer__in { grid-template-columns: 1fr; }
	.wsp-announce__in { gap: 12px; font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
	.wsp-card:hover, .wsp-tile:hover, .wsp-tool-tile:hover, .wsp-brand-tile:hover, .wsp-kit:hover { transform: none; }
}

/* Rebuild-kit contents ---------------------------------------------------- */

.wsp-kit-table { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.wsp-kit-row {
	display: grid; grid-template-columns: 56px 110px minmax(0,1fr) 90px;
	gap: 14px; align-items: center; padding: 12px 16px; border-top: 1px solid var(--line-3);
}
.wsp-kit-row:first-child { border-top: none; }
.wsp-kit-row img { width: 44px; height: 44px; background: var(--fill-2); border-radius: 8px; object-fit: contain; mix-blend-mode: multiply; }
.wsp-kit-row .wsp-mono { font-size: 13.5px; font-weight: 600; }
.wsp-kit-row a { font-size: 15px; font-weight: 600; }
.wsp-kit-row__price { font-size: 15px; font-weight: 700; text-align: right; }
.wsp-kit-row__price .amount { font-size: inherit; font-weight: inherit; color: inherit; }

.wsp-buy__singles { font-size: 16px; color: var(--muted-3); text-decoration: line-through; }

@media (max-width: 782px) {
	.wsp-kit-row { grid-template-columns: 44px 1fr auto; }
	.wsp-kit-row .wsp-mono { grid-column: 2; font-size: 12.5px; }
	.wsp-kit-row a { grid-column: 2; }
}

/* WooCommerce price markup: <ins> is underlined by default in most browsers. */
.woocommerce-Price-amount { white-space: nowrap; }
ins, .wsp-card__price ins, .wsp-buy__amount ins, .wsp-kit__price ins {
	text-decoration: none; background: transparent; color: inherit; font-weight: inherit;
}
del, .wsp-card__price del, .wsp-kit__price del {
	display: none;
}
.wsp-buy__amount del { display: none; }

/* Footer brand mark (white-on-dark variant of the logo). */
.wsp-footer__logo { height: 30px; width: auto; display: block; margin-bottom: 14px; }

/* ==========================================================================
   My Account, and the classic cart/checkout templates
   Woo's own stylesheets are dequeued, so these layouts are supplied here.
   ========================================================================== */

/* Any stray float from a Woo template must not escape the page wrapper. */
.wsp-page::after { content: ""; display: table; clear: both; }

.woocommerce-account .woocommerce {
	display: grid; grid-template-columns: 240px minmax(0,1fr);
	gap: 26px; align-items: start;
}
.woocommerce-account:not(.logged-in) .woocommerce { display: block; }

.woocommerce-MyAccount-navigation ul {
	list-style: none; margin: 0; padding: 0;
	background: var(--white); border: 1px solid var(--line);
	border-radius: 18px; overflow: hidden;
}
.woocommerce-MyAccount-navigation li a {
	display: block; padding: 12px 18px; font-size: 15px; font-weight: 600;
	color: var(--ink); border-top: 1px solid var(--line-3);
}
.woocommerce-MyAccount-navigation li:first-child a { border-top: none; }
.woocommerce-MyAccount-navigation li a:hover { background: #F4F6F9; color: var(--ink); }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--cream); color: var(--cream-t); }

.woocommerce-MyAccount-content {
	background: var(--white); border: 1px solid var(--line);
	border-radius: 18px; padding: 26px; min-width: 0;
}
.woocommerce-MyAccount-content > :first-child { margin-top: 0; }
.woocommerce-MyAccount-content p { line-height: 1.6; }

/* Login / register / lost-password forms */
.woocommerce .u-columns {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 20px;
}
.woocommerce .u-column1, .woocommerce .u-column2 { min-width: 0; }
.woocommerce form.woocommerce-form-login,
.woocommerce form.woocommerce-form-register,
.woocommerce form.woocommerce-ResetPassword,
.woocommerce form.lost_reset_password {
	background: var(--white); border: 1px solid var(--line); border-radius: 18px;
	padding: 26px; display: grid; gap: 14px; max-width: 520px;
}
.woocommerce-form-row { display: grid; gap: 7px; margin: 0; }
.woocommerce-form-row label,
.woocommerce form .form-row label { font-size: 14px; font-weight: 600; color: var(--muted-2); }
.woocommerce-form__label-for-checkbox {
	display: flex; align-items: center; gap: 8px; font-weight: 500;
}
.woocommerce-form__label-for-checkbox input { width: auto; }
.woocommerce-LostPassword { margin: 0; font-size: 14.5px; }
.woocommerce-LostPassword a { color: var(--amber-t); font-weight: 600; }
.woocommerce-privacy-policy-text { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Classic cart / checkout, if the block versions are swapped out */
.woocommerce-cart-form { margin-bottom: 28px; }
.woocommerce .cart-collaterals {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 20px;
}
.woocommerce .cart_totals, .woocommerce .cross-sells {
	background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.woocommerce #customer_details {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
	gap: 24px; margin-bottom: 24px;
}
.woocommerce #order_review, .woocommerce #order_review_heading + #order_review {
	background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.woocommerce .col2-set { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 24px; }
.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2 { min-width: 0; }

.woocommerce-order, .woocommerce-thankyou-order-received {
	background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px;
}

@media (max-width: 782px) {
	.woocommerce-account .woocommerce { grid-template-columns: 1fr; }
}
