/* ==========================================================================
   Canadian Peps — storefront styles
   White store, near-black feature bands, maple-red accent (from the logo),
   Instrument Sans. Product photos sit on warm tiles with multiply blending so
   their white backgrounds disappear.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
	--ink: #0d0d0e;
	--ink-2: #1b1b1e;
	--text: #3a3a3f;
	--muted: #6b6b73;
	--faint: #8b8b93;
	--line: #e9e7e2;
	--line-2: #dcd9d2;
	--bg: #ffffff;
	--soft: #f6f5f1;
	--tile: #f2f1ec;
	--red: #d80621;
	--red-2: #b0041a;
	--red-soft: #fdeced;
	--gold: #e6a817;
	--ok: #17804a;
	--ok-soft: #e8f5ee;

	--r-xs: 8px;
	--r-sm: 12px;
	--r: 16px;
	--r-lg: 24px;
	--r-xl: 32px;
	--pill: 999px;

	--wrap: 1360px;
	--gut: 24px;
	--header-h: 76px;

	--sh-sm: 0 1px 2px rgba(13, 13, 14, .05), 0 2px 8px -4px rgba(13, 13, 14, .08);
	--sh: 0 1px 2px rgba(13, 13, 14, .04), 0 12px 32px -16px rgba(13, 13, 14, .18);
	--sh-lg: 0 30px 80px -30px rgba(13, 13, 14, .45);

	--ease: cubic-bezier(.2, .7, .2, 1);
	--font: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0; background: var(--bg); color: var(--text);
	font: 400 16px/1.65 var(--font); letter-spacing: -.003em;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, h5 { color: var(--ink); font-weight: 600; letter-spacing: -.028em; line-height: 1.1; margin: 0; text-wrap: balance; }
p, li, dd, blockquote { text-wrap: pretty; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
dl, dd { margin: 0; }
table { border-collapse: collapse; width: 100%; }
[hidden] { display: none !important; }
::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.sr-only, .screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--pill); font-weight: 600; transition: top .2s; }
.skip:focus { top: 12px; }
.muted { color: var(--muted); }
.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gut) * 2); margin-inline: auto; padding-inline: var(--gut); }
.sec { padding-block: 88px; }
.sec--tight { padding-block: 56px; }
.sec--soft { background: var(--soft); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.sec-head h2, .band h2, .starter h2, .faqhome h2, .cta h2, .pairs h2, .catcopy h2 { font-size: clamp(28px, 3.1vw, 42px); }
.eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow--light { color: #ff5a6e; }
.eyebrow__leaf { width: 14px; height: 14px; color: var(--red); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: 15px; white-space: nowrap; }
.link-arrow .ic { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover .ic { transform: translateX(3px); }
.link-arrow--back { margin-top: 20px; color: var(--muted); }
.link-arrow--back:hover { color: var(--ink); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); display: inline-block; }
.dot--ok { background: var(--ok); box-shadow: 0 0 0 4px var(--ok-soft); }

/* ---------- 4. Buttons, badges, chips ---------- */
.btn, .button, button.button, a.button, input[type=submit].button {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 0 26px; border-radius: var(--pill); border: 1.5px solid transparent;
	font-weight: 600; font-size: 15px; line-height: 1; letter-spacing: -.005em; white-space: nowrap;
	background: var(--ink); color: #fff; cursor: pointer;
	transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn .ic { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--dark, .button.alt { background: var(--ink); color: #fff; }
.btn--dark:hover, .button.alt:hover, .button:hover { background: #2a2a2e; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #ecebe7; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--ink); background: transparent; }
.btn--ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn--ghost:hover { color: var(--ink); background: var(--soft); }
.btn--ghost-light { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); }
.btn--lg { min-height: 56px; padding: 0 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn[disabled], .button.disabled, .button:disabled { opacity: .45; cursor: not-allowed; }

.badge { display: inline-flex; align-items: center; height: 26px; padding: 0 11px; border-radius: var(--pill); font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.badge--dark { background: var(--ink); color: #fff; }
.badge--red { background: var(--red); color: #fff; }
.badge--light { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
.badge--muted { background: #e6e4df; color: var(--muted); }

.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px; margin: 0 -2px 16px; }
.chips::-webkit-scrollbar { display: none; }
.chips--center { justify-content: center; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 18px; border-radius: var(--pill); background: #fff; border: 1.5px solid var(--line); color: var(--ink); font-weight: 500; font-size: 14.5px; white-space: nowrap; transition: border-color .2s, background .2s, color .2s; }
.chip span { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.chip .ic { width: 17px; height: 17px; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.is-active span { color: rgba(255, 255, 255, .6); }
.chips--sub { margin-top: -4px; }
.chip--sub { height: 36px; font-size: 13.5px; padding: 0 14px; background: var(--soft); border-color: transparent; }
.chip--sub.is-active { background: #fff; color: var(--ink); border-color: var(--ink); }

.code-chip { display: inline-flex; align-items: center; height: 22px; padding: 0 9px; margin-left: 4px; border-radius: 6px; border: 1px dashed rgba(255, 255, 255, .5); color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .08em; }
.code-chip:hover { background: rgba(255, 255, 255, .12); }

/* ---------- 5. Announcement bar ---------- */
.announce { background: var(--ink); color: #d7d7da; font-size: 13.5px; }
.announce__in { display: flex; align-items: center; justify-content: center; gap: 36px; min-height: 40px; }
.announce__msg { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.announce__msg + .announce__msg::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #56565c; margin-right: 30px; }
.announce__leaf { width: 14px; height: 14px; color: var(--red); margin-right: 4px; }

/* ---------- 6. Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(0, 0, 0, .25); }
.header__in { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.site-header .header__menu { display: none; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); flex: none; }
.logo__leaf { width: 30px; height: 30px; color: var(--red); transition: transform .5s var(--ease); }
.logo:hover .logo__leaf { transform: rotate(-12deg) scale(1.05); }
.logo__word { font-size: 17px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; line-height: 1; display: flex; gap: .42em; }
.logo__word b { font-weight: 700; color: var(--red); }
.logo--light { color: #fff; }

.mainnav { flex: 1; display: flex; justify-content: center; }
.mainnav__list { list-style: none; display: flex; align-items: center; gap: 4px; }
.mainnav__link { display: inline-flex; align-items: center; gap: 4px; height: 40px; padding: 0 14px; border-radius: var(--pill); font-weight: 500; font-size: 15px; color: var(--ink); transition: background .2s; }
.mainnav__link:hover, .has-mega:hover > .mainnav__link, .has-mega:focus-within > .mainnav__link { background: var(--soft); }
.mainnav__chev { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.has-mega:hover .mainnav__chev, .has-mega.is-open .mainnav__chev { transform: rotate(180deg); }

.mega { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 30px 60px -30px rgba(13, 13, 14, .35); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .25s var(--ease), visibility 0s .25s; }
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.is-open .mega { opacity: 1; visibility: visible; transform: none; transition: opacity .2s, transform .25s var(--ease); }
.has-mega.is-closed .mega { opacity: 0; visibility: hidden; }
.mega__in { display: grid; grid-template-columns: repeat(3, 1fr) 1.35fr; gap: 40px; padding-block: 36px; }
.mega__title { display: block; font-weight: 600; color: var(--ink); font-size: 15px; margin-bottom: 14px; }
.mega__col ul { list-style: none; display: grid; gap: 4px; }
.mega__col a:not(.mega__title) { display: inline-block; padding: 5px 0; color: var(--muted); font-size: 15px; transition: color .15s, transform .2s var(--ease); }
.mega__col a:not(.mega__title):hover { color: var(--ink); transform: translateX(3px); }
.mega__promo { display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: center; padding: 18px; background: var(--soft); border-radius: var(--r); transition: background .2s; }
.mega__promo:hover { background: #efeee9; }
.mega__promo-media { background: #fff; border-radius: var(--r-sm); aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; }
.mega__promo-media img { width: 86%; mix-blend-mode: multiply; }
.mega__promo-body { display: grid; gap: 8px; justify-items: start; }
.mega__promo-body strong { font-size: 19px; color: var(--ink); letter-spacing: -.02em; }
.mega__promo-price { color: var(--muted); font-size: 15px; }
.mega__foot { border-top: 1px solid var(--line); background: var(--soft); font-size: 14px; }
.mega__foot .wrap { display: flex; justify-content: space-between; align-items: center; height: 52px; }
.mega__foot .wrap > span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.mega__foot .ic { width: 18px; height: 18px; }

.header__icons { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.mainnav + .header__icons { margin-left: 0; }
.icon-btn { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--ink); transition: background .2s; }
.icon-btn:hover { background: var(--soft); }
.icon-btn .ic { width: 22px; height: 22px; }
.cart-count { position: absolute; top: 4px; right: 2px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; line-height: 1; transition: transform .3s var(--ease); }
.cart-count.is-empty { display: none; }
.cart-count.bump { animation: bump .5s var(--ease); }
@keyframes bump { 40% { transform: scale(1.35); } }

/* ---------- 7. Search overlay ---------- */
.search { position: fixed; inset: 0; z-index: 90; }
.search__scrim { position: absolute; inset: 0; background: rgba(13, 13, 14, .45); animation: fade .2s; }
.search__panel { position: relative; background: #fff; padding: 28px 0 32px; box-shadow: var(--sh-lg); animation: drop .3s var(--ease); }
@keyframes fade { from { opacity: 0; } }
@keyframes drop { from { transform: translateY(-16px); opacity: 0; } }
.search__form { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.search__ic { width: 26px; height: 26px; color: var(--muted); }
.search__form input { flex: 1; border: 0; outline: 0; font-size: clamp(20px, 2.4vw, 30px); font-weight: 500; letter-spacing: -.02em; color: var(--ink); background: transparent; min-width: 0; }
.search__form input::placeholder { color: #b5b5bb; }
.search__form input::-webkit-search-cancel-button { display: none; }
.search__results { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; margin-top: 20px; }
.search__results:empty { display: none; }
.sres { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 10px; border-radius: var(--r-sm); transition: background .15s; }
.sres:hover, .sres:focus-visible { background: var(--soft); }
.sres__img { width: 64px; height: 64px; border-radius: 10px; background: var(--tile); display: grid; place-items: center; overflow: hidden; }
.sres__img img { width: 88%; mix-blend-mode: multiply; }
.sres__name { font-weight: 600; color: var(--ink); line-height: 1.25; }
.sres__cat { display: block; font-size: 13px; color: var(--muted); }
.sres__price { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.search__all { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }
.search__empty { grid-column: 1 / -1; color: var(--muted); padding: 8px 2px; }
.search__popular { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 20px; }
.search__popular span { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-right: 6px; }
.search__popular a { padding: 7px 14px; border-radius: var(--pill); background: var(--soft); font-size: 14px; color: var(--ink); transition: background .15s; }
.search__popular a:hover { background: #ebeae5; }

/* ---------- 8. Cart drawer & mini cart ---------- */
.drawer { position: fixed; inset: 0; z-index: 95; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(13, 13, 14, .45); opacity: 0; transition: opacity .3s; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(440px, 100%); background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--sh-lg); outline: none; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 18px 26px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { font-size: 20px; }
.drawer-count { color: var(--faint); font-weight: 500; }
.drawer__body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.drawer__body.is-loading { opacity: .5; pointer-events: none; }
.drawer__body .shipbar { margin: 18px 26px 0; }
.minicart { list-style: none; padding: 8px 26px; flex: 1; }
.minicart__item { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: start; }
.minicart__item:last-child { border-bottom: 0; }
.minicart__media { width: 76px; height: 76px; border-radius: 12px; background: var(--tile); display: grid; place-items: center; overflow: hidden; }
.minicart__media img { width: 86%; mix-blend-mode: multiply; }
.minicart__body { display: grid; gap: 3px; min-width: 0; }
.minicart__name { font-weight: 600; color: var(--ink); line-height: 1.3; }
.minicart__var, .minicart__qty { font-size: 13.5px; color: var(--muted); }
.minicart__end { display: grid; justify-items: end; gap: 6px; }
.minicart__line { font-weight: 600; color: var(--ink); }
.minicart__remove { font-size: 13px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.minicart__remove:hover { color: var(--red); }
.minicart__foot { padding: 20px 26px 26px; border-top: 1px solid var(--line); background: var(--soft); }
.minicart__total { display: flex; justify-content: space-between; align-items: baseline; font-size: 17px; color: var(--ink); }
.minicart__total strong { font-size: 20px; }
.minicart__note { font-size: 13.5px; color: var(--muted); margin: 4px 0 16px; }
.minicart__btns { display: grid; gap: 10px; }
.minicart__empty { padding: 48px 26px; text-align: center; display: grid; gap: 10px; justify-items: center; }
.minicart__suggest { list-style: none; width: 100%; display: grid; gap: 8px; margin: 12px 0 18px; text-align: left; }
.minicart__suggest a { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 8px; border-radius: 12px; border: 1px solid var(--line); transition: border-color .2s; }
.minicart__suggest a:hover { border-color: var(--ink); }
.minicart__suggest img { width: 56px; height: 56px; border-radius: 8px; background: var(--tile); mix-blend-mode: multiply; object-fit: contain; padding: 4px; }
.minicart__suggest span { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.minicart__suggest em { font-style: normal; font-size: 14px; color: var(--muted); }

.shipbar p { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.shipbar p .ic { width: 20px; height: 20px; color: var(--ink); }
.shipbar strong { color: var(--ink); }
.shipbar__track { height: 6px; border-radius: 6px; background: #e8e6e0; margin-top: 10px; overflow: hidden; }
.shipbar__track span { display: block; height: 100%; border-radius: inherit; background: var(--ink); transition: width .6s var(--ease); }
.shipbar.is-done .shipbar__track span { background: var(--ok); }
.shipbar.is-done p .ic { color: var(--ok); }

/* ---------- 9. Mobile nav ---------- */
.mnav { position: fixed; inset: 0; z-index: 95; visibility: hidden; }
.mnav.is-open { visibility: visible; }
.mnav__scrim { position: absolute; inset: 0; background: rgba(13, 13, 14, .45); opacity: 0; transition: opacity .3s; }
.mnav.is-open .mnav__scrim { opacity: 1; }
.mnav__panel { position: absolute; left: 0; top: 0; height: 100%; width: min(400px, 90vw); background: #fff; display: flex; flex-direction: column; transform: translateX(-100%); transition: transform .4s var(--ease); }
.mnav.is-open .mnav__panel { transform: none; }
.mnav__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 12px 14px 20px; border-bottom: 1px solid var(--line); }
.mnav__head .logo__word { font-size: 15px; }
.mnav__search { display: flex; align-items: center; gap: 10px; margin: 16px 20px 6px; padding: 0 16px; height: 48px; border-radius: var(--pill); background: var(--soft); }
.mnav__search input { flex: 1; border: 0; outline: 0; background: transparent; min-width: 0; }
.mnav__body { flex: 1; overflow-y: auto; padding: 8px 20px 20px; }
.mnav__big { display: flex; justify-content: space-between; align-items: center; font-size: 20px; font-weight: 600; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line); letter-spacing: -.02em; }
.mnav__group { border-bottom: 1px solid var(--line); }
.mnav__group summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 18px; font-weight: 600; color: var(--ink); cursor: pointer; letter-spacing: -.015em; }
.mnav__group summary::-webkit-details-marker { display: none; }
.mnav__group summary .ic { transition: transform .25s var(--ease); }
.mnav__group[open] summary .ic { transform: rotate(180deg); }
.mnav__group ul { list-style: none; padding: 0 0 14px 2px; display: grid; gap: 2px; }
.mnav__group li a { display: block; padding: 8px 0; color: var(--muted); }
.mnav__links { list-style: none; padding-top: 10px; display: grid; }
.mnav__links a { display: block; padding: 11px 0; font-size: 16.5px; color: var(--ink); font-weight: 500; }
.mnav__foot { padding: 16px 20px 22px; border-top: 1px solid var(--line); background: var(--soft); display: grid; gap: 8px; font-size: 14px; }
.mnav__foot p { display: flex; gap: 10px; align-items: center; color: var(--muted); }
.mnav__foot .ic { width: 18px; height: 18px; color: var(--ink); }

/* ---------- 10. Hero ---------- */
.hero { padding-top: 18px; }
.hero__card {
	position: relative; overflow: hidden; border-radius: var(--r-xl); color: #fff; isolation: isolate;
	display: grid; grid-template-columns: 1.02fr 1fr; align-items: center; gap: 24px; min-height: 600px;
	padding: 72px 0 72px 72px;
	background:
		radial-gradient(55% 75% at 76% 70%, rgba(216, 6, 33, .30), transparent 62%),
		radial-gradient(40% 55% at 78% 38%, rgba(255, 255, 255, .09), transparent 70%),
		linear-gradient(180deg, #121214 0%, #0a0a0b 100%);
}
.hero__card::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(70% 90% at 30% 40%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(70% 90% at 30% 40%, #000 20%, transparent 75%); }
.hero__copy { position: relative; z-index: 2; max-width: 640px; }
.hero__title { color: #fff; font-size: clamp(42px, 4.6vw, 68px); line-height: 1; letter-spacing: -.045em; font-weight: 600; }
.hero__title span { color: #b9b9bf; display: block; }
.hero__lede { margin-top: 24px; font-size: 18px; line-height: 1.6; color: #bdbdc3; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__facts { list-style: none; display: flex; gap: 0; margin-top: 48px; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 22px; }
.hero__facts li { flex: 1; display: grid; gap: 2px; padding-right: 18px; }
.hero__facts li + li { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, .12); }
.hero__facts b { font-size: 26px; font-weight: 600; letter-spacing: -.03em; color: #fff; }
.hero__facts b .woocommerce-Price-amount { font: inherit; }
.hero__facts li > span { font-size: 13.5px; color: #9d9da4; line-height: 1.35; }
.hero__art { position: relative; align-self: end; margin-bottom: -72px; display: flex; justify-content: center; }
.hero__art img { width: 100%; max-width: 660px; filter: drop-shadow(0 40px 50px rgba(0, 0, 0, .55)); animation: float 7s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }

/* ---------- 11. Trust strip ---------- */
.trust { padding-block: 28px 8px; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; padding: 22px 24px; }
.trust__item + .trust__item { border-left: 1px solid var(--line); }
.trust__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--soft); display: grid; place-items: center; color: var(--ink); flex: none; }
.trust__item strong { display: block; color: var(--ink); font-weight: 600; font-size: 15.5px; letter-spacing: -.01em; }
.trust__item span:not(.trust__ic) { display: block; font-size: 14px; color: var(--muted); line-height: 1.45; margin-top: 2px; }

/* ---------- 12. Category tiles ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat { position: relative; display: grid; grid-template-rows: 1fr auto; min-height: 250px; padding: 22px; border-radius: var(--r-lg); background: var(--tile); overflow: hidden; isolation: isolate; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.cat--big { grid-column: span 2; min-height: 300px; }
.cat--wide { grid-column: span 2; }
.cat--full { grid-column: 1 / -1; }
.cat--wide .cat__media, .cat--full .cat__media { width: 34%; right: 4%; bottom: -12%; }
.cat__body { position: relative; z-index: 2; display: grid; align-content: start; gap: 6px; max-width: 62%; }
.cat__name { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -.025em; line-height: 1.15; }
.cat--big .cat__name { font-size: 30px; }
.cat__blurb { font-size: 14px; color: var(--muted); line-height: 1.45; }
.cat__count { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.cat__count .ic { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.cat:hover .cat__count .ic { transform: translateX(3px); }
.cat__media { position: absolute; right: -4%; bottom: -8%; width: 56%; }
.cat--big .cat__media { width: 44%; right: 3%; bottom: -8%; }
.cat__media img { width: 100%; mix-blend-mode: multiply; transition: transform .5s var(--ease); }
.cat:hover .cat__media img { transform: translateY(-6px) rotate(-3deg); }

/* ---------- 13. Tabs ---------- */
.tabs { display: flex; gap: 4px; padding: 5px; background: var(--soft); border-radius: var(--pill); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { height: 38px; padding: 0 18px; border-radius: var(--pill); font-weight: 500; font-size: 14.5px; color: var(--muted); white-space: nowrap; transition: background .2s, color .2s, box-shadow .2s; }
.tab:hover { color: var(--ink); }
.tab.is-active { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.tabpanel { animation: fade .35s; }

/* ---------- 14. Product grid & cards ---------- */
.pgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 20px; }
.pcard { position: relative; display: flex; flex-direction: column; min-width: 0; }
.pcard__media { position: relative; display: grid; place-items: center; aspect-ratio: 1; border-radius: var(--r-lg); background: var(--tile); overflow: hidden; }
.pcard__media img { width: 80%; height: 80%; object-fit: contain; mix-blend-mode: multiply; transition: transform .6s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__media .badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.pcard__body { display: flex; flex-direction: column; gap: 4px; padding: 16px 4px 0; flex: 1; }
.pcard__cat { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.pcard__title { font-size: 17px; font-weight: 600; line-height: 1.3; letter-spacing: -.018em; }
.pcard__title a { background-image: linear-gradient(currentColor, currentColor); background-size: 0 1.5px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s var(--ease); }
.pcard__title a:hover { background-size: 100% 1.5px; }
.pcard__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pcard__spec { font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.pcard .rating { margin-top: 2px; }
.pcard__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard__price { font-weight: 600; color: var(--ink); font-size: 16.5px; letter-spacing: -.01em; }
.pcard__price .from, .pdp__price .from { font-weight: 500; color: var(--muted); font-size: .86em; }
.pcard__price del { color: var(--faint); font-weight: 400; margin-right: 6px; }
.pcard__add { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px 0 12px; border-radius: var(--pill); background: var(--ink); color: #fff; font-size: 14px; font-weight: 600; transition: background .2s, transform .2s var(--ease); }
.pcard__add .ic { width: 18px; height: 18px; }
.pcard__add:hover { background: #2a2a2e; }
.pcard__add--link { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.pcard__add--link:hover { background: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
.pcard__add.loading { pointer-events: none; opacity: .7; }
.pcard__add.loading .ic { animation: spin .8s linear infinite; }
.pcard__add.added { background: var(--ok); }
.pcard__add.added .ic { display: none; }
.pcard__add.added::before { content: ""; width: 16px; height: 16px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.2 4.2L19 7'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.2 4.2L19 7'/%3E%3C/svg%3E") center/contain no-repeat; }
.added_to_cart.wc-forward { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }

.rating { display: inline-flex; align-items: center; gap: 8px; }
.stars { position: relative; display: inline-block; width: 82px; height: 15px; flex: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23dedbd3' d='M8 1.2l1.95 4.25 4.65.45-3.5 3.1 1.05 4.55L8 11.2l-4.15 2.35L4.9 9 1.4 5.9l4.65-.45z'/%3E%3C/svg%3E") 0 0 / 16.4px 15px repeat-x; }
.stars__fill { position: absolute; inset: 0 auto 0 0; overflow: hidden;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23e6a817' d='M8 1.2l1.95 4.25 4.65.45-3.5 3.1 1.05 4.55L8 11.2l-4.15 2.35L4.9 9 1.4 5.9l4.65-.45z'/%3E%3C/svg%3E") 0 0 / 16.4px 15px repeat-x; }
.stars__count { font-size: 13.5px; color: var(--muted); }
a.stars__count { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2); }
a.stars__count:hover { color: var(--ink); }

/* ---------- 15. Dark band ---------- */
.band { background: var(--ink); color: #b9b9c0; padding-block: 96px; position: relative; overflow: hidden; }
.band::after { content: ""; position: absolute; width: 640px; height: 640px; right: -180px; top: -260px; border-radius: 50%; background: radial-gradient(closest-side, rgba(216, 6, 33, .22), transparent); pointer-events: none; }
.band h2 { color: #fff; max-width: 16ch; }
.band__top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.band__lede { font-size: 18px; line-height: 1.65; color: #a8a8b0; max-width: 520px; }
.band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid #28282c; border-bottom: 1px solid #28282c; }
.feature { padding: 36px 36px 36px 0; }
.feature + .feature { padding-left: 36px; border-left: 1px solid #28282c; }
.feature__ic { width: 52px; height: 52px; border-radius: 14px; border: 1px solid #333338; display: grid; place-items: center; color: #fff; margin-bottom: 22px; background: #151517; }
.feature__ic .ic { width: 24px; height: 24px; }
.feature h3 { color: #fff; font-size: 21px; margin-bottom: 10px; letter-spacing: -.02em; }
.feature p { font-size: 15.5px; line-height: 1.6; }
.feature .woocommerce-Price-amount { color: #fff; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.step { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: var(--r); background: #151517; border: 1px solid #242428; }
.step__n { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; font-weight: 700; font-size: 14.5px; flex: none; }
.step strong { display: block; color: #fff; font-weight: 600; font-size: 15.5px; }
.step span:not(.step__n) { display: block; font-size: 14px; color: #95959d; margin-top: 2px; line-height: 1.45; }

/* ---------- 16. Start here + glossary ---------- */
.starter { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.starter__copy p { font-size: 17px; line-height: 1.7; margin-top: 16px; max-width: 560px; }
.starter__copy h2 + p { margin-top: 20px; }
.starter__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.glossary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.term { background: #fff; border-radius: var(--r); padding: 20px; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.term:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.term dt { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: 16px; margin-bottom: 6px; }
.term dt .ic { width: 20px; height: 20px; color: var(--red); }
.term dd { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ---------- 17. Guide cards ---------- */
.guides { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guides--all { grid-template-columns: repeat(3, 1fr); }
.gcard { display: flex; flex-direction: column; height: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; background: #fff; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.gcard:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: transparent; }
.gcard__media { position: relative; aspect-ratio: 16 / 10; background: var(--tile); display: grid; place-items: center; overflow: hidden; }
.gcard__media img { height: 86%; width: auto; mix-blend-mode: multiply; transition: transform .6s var(--ease); }
.gcard--photo .gcard__media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.gcard:hover .gcard__media img { transform: scale(1.05); }
.gcard__ph { width: 64px; height: 64px; border-radius: 18px; background: #fff; display: grid; place-items: center; color: var(--red); }
.gcard__ph .ic { width: 30px; height: 30px; }
.gcard__tag { position: absolute; top: 14px; left: 14px; padding: 5px 11px; border-radius: var(--pill); background: #fff; font-size: 12px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.gcard__body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 22px; flex: 1; }
.gcard__title { font-size: 18.5px; font-weight: 600; color: var(--ink); letter-spacing: -.02em; line-height: 1.25; }
.gcard__desc { font-size: 14.5px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.gcard__foot { margin-top: auto; padding-top: 12px; display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--muted); }
.gcard__foot > span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.gcard__foot .ic { width: 16px; height: 16px; }
.gcard__foot .link-arrow { font-size: 14px; }

/* ---------- 18. Reviews proof ---------- */
.proof { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; }
.proof__big { font-size: 76px; font-weight: 600; color: var(--ink); letter-spacing: -.05em; line-height: 1; }
.proof__big span { font-size: 28px; color: var(--faint); letter-spacing: -.02em; }
.proof__score .stars { margin: 14px 0 12px; transform: scale(1.3); transform-origin: left; }
.proof__score p { color: var(--muted); font-size: 15px; }
.proof__quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.quote { margin: 0; padding: 26px; border-radius: var(--r-lg); background: var(--soft); display: flex; flex-direction: column; gap: 14px; }
.quote blockquote { margin: 0; font-size: 18px; line-height: 1.45; color: var(--ink); letter-spacing: -.015em; font-weight: 500; flex: 1; }
.quote figcaption { font-size: 14px; color: var(--muted); }
.quote figcaption strong { color: var(--ink); }
.quote figcaption a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2); }

/* ---------- 19. Accordion & FAQ blocks ---------- */
.faqhome { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }
.faqhome__intro p:not(.eyebrow) { margin-top: 16px; font-size: 17px; max-width: 440px; }
.faqhome__intro .btn { margin-top: 20px; }
.acc { display: grid; gap: 10px; }
.acc__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s, box-shadow .2s; }
.acc__item[open] { border-color: var(--line-2); box-shadow: var(--sh-sm); }
.acc__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; cursor: pointer; font-weight: 600; color: var(--ink); font-size: 16.5px; letter-spacing: -.012em; }
.acc__item summary::-webkit-details-marker { display: none; }
.acc__ic { width: 32px; height: 32px; border-radius: 50%; background: var(--soft); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .2s; }
.acc__ic .ic { width: 16px; height: 16px; }
.acc__item[open] .acc__ic { transform: rotate(45deg); background: var(--ink); color: #fff; }
.acc__body { padding: 0 22px 20px; color: var(--text); font-size: 15.5px; line-height: 1.65; max-width: 68ch; }
.acc__body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.helpcard { display: flex; gap: 14px; align-items: flex-start; margin-top: 28px; padding: 18px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.helpcard > .ic { width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.helpcard strong { display: block; color: var(--ink); }
.helpcard span { display: block; font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.helpcard a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.helpcard--big { flex-direction: column; padding: 26px; margin-top: 0; }
.helpcard--big > .ic { width: 28px; height: 28px; }
.helpcard--big .btn { margin-top: 16px; text-decoration: none; color: #fff; }

/* ---------- 20. CTA ---------- */
.cta { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--ink); color: #b5b5bc; padding: 64px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; isolation: isolate; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 120% at 100% 100%, rgba(216, 6, 33, .35), transparent 60%); }
.cta h2 { color: #fff; }
.cta__copy p:not(.eyebrow) { margin-top: 14px; font-size: 17px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; align-items: center; }
.cta__leaf { position: absolute; right: -60px; bottom: -90px; width: 360px; height: 360px; color: rgba(255, 255, 255, .04); z-index: -1; transform: rotate(-14deg); }
.code-big { display: inline-flex; align-items: center; gap: 12px; height: 56px; padding: 0 20px 0 24px; border-radius: var(--pill); border: 1.5px dashed rgba(255, 255, 255, .45); color: #fff; font-weight: 700; font-size: 18px; letter-spacing: .14em; transition: background .2s, border-color .2s; }
.code-big:hover { background: rgba(255, 255, 255, .08); border-color: #fff; }
.code-big .ic { width: 18px; height: 18px; }
.code-big em { font-style: normal; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: #a8a8af; }
.code-big.is-copied em { color: #7be3a9; }

/* ---------- 21. Footer ---------- */
.site-footer { background: #0b0b0c; color: #9d9da5; padding: 64px 0 28px; margin-top: 40px; font-size: 15px; }
.footer__trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 44px; border-bottom: 1px solid #222226; }
.footer__trust-item { display: flex; gap: 14px; align-items: flex-start; }
.footer__trust-item .ic { width: 24px; height: 24px; color: #fff; margin-top: 2px; }
.footer__trust-item strong { display: block; color: #fff; font-weight: 600; }
.footer__trust-item span { display: block; font-size: 14px; line-height: 1.45; margin-top: 2px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 48px 0; }
.footer__brand p { margin-top: 18px; max-width: 360px; line-height: 1.6; }
.footer__mail { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: #fff; font-weight: 500; }
.footer__mail .ic { width: 18px; height: 18px; }
.footer__pay { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 13px; }
.pay-chip { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px; border-radius: 10px; background: #19191c; border: 1px solid #2a2a2e; color: #fff; font-weight: 600; font-size: 13.5px; }
.pay-chip .ic { width: 16px; height: 16px; color: #ffcf33; }
.footer__col h2 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 18px; }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a { transition: color .15s; }
.footer__col a:hover, .footer__mail:hover { color: #fff; }
.footer__ruo { display: flex; gap: 12px; align-items: flex-start; padding: 18px 20px; border-radius: var(--r); background: #141416; border: 1px solid #222226; font-size: 14px; line-height: 1.55; }
.footer__ruo .ic { width: 20px; height: 20px; color: #fff; margin-top: 1px; }
.footer__ruo strong { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13.5px; }
.footer__build { display: inline-flex; align-items: center; gap: 8px; color: #74747c; }
.footer__build .dot { background: #f5a524; box-shadow: 0 0 0 3px rgba(245, 165, 36, .18); }

/* ---------- 22. Shop ---------- */
.shophead { background: var(--soft); padding: 28px 0 36px; margin-bottom: 28px; }
.shophead__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-top: 18px; }
.shophead h1 { font-size: clamp(34px, 4.2vw, 56px); letter-spacing: -.04em; }
.shophead__lede { margin-top: 12px; max-width: 640px; color: var(--muted); font-size: 16.5px; }
.shophead__facts { list-style: none; display: grid; gap: 8px; flex: none; }
.shophead__facts li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); background: #fff; padding: 9px 14px; border-radius: var(--pill); }
.shophead__facts .ic { width: 18px; height: 18px; color: var(--ink); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13.5px; color: var(--muted); }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "/"; color: var(--line-2); }
.crumbs a:hover { color: var(--ink); }
.crumbs [aria-current] { color: var(--ink); font-weight: 500; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 0 22px; }
.toolbar__count { color: var(--muted); font-size: 14.5px; }
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select, select.orderby { height: 44px; padding: 0 44px 0 18px; border-radius: var(--pill); border: 1.5px solid var(--line); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d0d0e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 16px center / 16px no-repeat; appearance: none; -webkit-appearance: none; font-weight: 500; font-size: 14.5px; color: var(--ink); cursor: pointer; }
.woocommerce-ordering select:hover { border-color: var(--ink); }
.woocommerce-pagination { margin-top: 48px; display: flex; justify-content: center; }
.woocommerce-pagination ul.page-numbers, .nav-links { list-style: none; display: flex; gap: 6px; }
.page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: var(--pill); border: 1.5px solid var(--line); font-weight: 500; color: var(--ink); }
a.page-numbers:hover { border-color: var(--ink); }
.page-numbers.current { background: var(--ink); border-color: var(--ink); color: #fff; }
.catcopy { display: grid; grid-template-columns: 320px 1fr; gap: 56px; margin-top: 88px; padding-top: 56px; border-top: 1px solid var(--line); }
.catcopy__aside { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.catcopy__aside .muted { margin-top: 12px; font-size: 14.5px; }
.empty { text-align: center; padding: 64px 20px; display: grid; justify-items: center; gap: 12px; }
.empty__ic { width: 64px; height: 64px; border-radius: 20px; background: var(--soft); display: grid; place-items: center; color: var(--ink); }
.empty__ic .ic { width: 28px; height: 28px; }
.empty h2 { font-size: 28px; }
.empty p { color: var(--muted); max-width: 440px; }
.empty .btn { margin-top: 8px; }
.empty__links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 8px; }

/* ---------- 23. Product page ---------- */
.pdp { padding-top: 24px; }
.pdp__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: 64px; margin-top: 20px; align-items: start; }
.pdp__gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp__stage { position: relative; aspect-ratio: 1; border-radius: var(--r-xl); background: var(--tile); overflow: hidden; }
.pdp__stage > .badge { position: absolute; top: 20px; left: 20px; z-index: 3; }
.pdp__slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity .35s; }
.pdp__slide.is-active { opacity: 1; visibility: visible; }
.pdp__zoom { width: 100%; height: 100%; display: grid; place-items: center; cursor: zoom-in; }
.pdp__zoom img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; transition: transform .5s var(--ease); }
.pdp__zoom:hover img { transform: scale(1.03); }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pdp__thumb { width: 84px; height: 84px; border-radius: 14px; background: var(--tile); border: 2px solid transparent; display: grid; place-items: center; overflow: hidden; transition: border-color .2s; }
.pdp__thumb img { width: 86%; mix-blend-mode: multiply; }
.pdp__thumb.is-active { border-color: var(--ink); }
.pdp__summary { padding-top: 8px; }
.pdp__cat { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.pdp__title { font-size: clamp(34px, 3.8vw, 52px); letter-spacing: -.04em; line-height: 1.02; margin-top: 10px; }
.pdp__spec { margin-top: 10px; font-size: 17px; color: var(--muted); }
.pdp__rating { margin-top: 14px; }
.pdp__price { margin-top: 20px; font-size: 30px; font-weight: 600; color: var(--ink); letter-spacing: -.03em; }
.pdp__price del { font-size: .7em; color: var(--faint); font-weight: 400; }
.pdp__excerpt { margin-top: 16px; font-size: 16.5px; line-height: 1.65; color: var(--text); max-width: 560px; }
.pdp__buy { margin-top: 28px; padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; }
.pdp__stock { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ok); font-weight: 500; margin-bottom: 18px; }
.var { margin-bottom: 20px; }
.var__label { display: flex; gap: 8px; align-items: baseline; margin-bottom: 10px; font-size: 14.5px; }
.var__label label { font-weight: 600; color: var(--ink); }
.var__chosen { color: var(--muted); }
.var__select { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { min-width: 104px; padding: 12px 18px; border-radius: 14px; border: 1.5px solid var(--line-2); background: #fff; display: grid; gap: 2px; text-align: left; transition: border-color .2s, background .2s, box-shadow .2s; }
.pill:hover { border-color: var(--ink); }
.pill__v { font-weight: 600; color: var(--ink); font-size: 15.5px; }
.pill__p { font-size: 13.5px; color: var(--muted); }
.pill[aria-checked="true"] { border-color: var(--ink); background: var(--soft); box-shadow: inset 0 0 0 1px var(--ink); }
.pill.is-disabled, .pill.is-oos { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.single_variation_wrap .woocommerce-variation-price, .single_variation_wrap .woocommerce-variation-description:empty { display: none; }
.woocommerce-variation-availability p.stock { font-size: 14px; margin-bottom: 12px; }
.stock.out-of-stock { color: var(--red); font-weight: 500; }
form.cart:not(.variations_form), .woocommerce-variation-add-to-cart { display: flex; gap: 12px; align-items: stretch; }
.quantity { display: inline-flex; align-items: center; height: 56px; border: 1.5px solid var(--line-2); border-radius: var(--pill); padding: 0 6px; background: #fff; flex: none; }
.quantity .qty { width: 44px; height: 100%; border: 0; background: transparent; text-align: center; font-weight: 600; font-size: 16px; color: var(--ink); -moz-appearance: textfield; appearance: textfield; }
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.quantity .qty:focus { outline: none; }
.qty-btn { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: background .2s; }
.qty-btn:hover { background: var(--soft); }
.qty-btn .ic { width: 16px; height: 16px; }
.single_add_to_cart_button { flex: 1; min-height: 56px !important; font-size: 16px !important; }
.single_add_to_cart_button.loading { opacity: .7; pointer-events: none; }
.single_add_to_cart_button.is-added { background: var(--ok) !important; }
.single_add_to_cart_button.disabled { opacity: .45; }
.pdp__ship { display: flex; gap: 14px; align-items: flex-start; margin-top: 16px; padding: 16px 18px; border-radius: var(--r); background: var(--soft); font-size: 14.5px; line-height: 1.5; }
.pdp__ship .ic { width: 22px; height: 22px; color: var(--ink); flex: none; margin-top: 1px; }
.pdp__ship strong { color: var(--ink); }
.pdp__assure { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 24px; }
.pdp__assure li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); }
.pdp__assure .ic { width: 20px; height: 20px; color: var(--ink); }
.pdp__ruo { display: flex; gap: 10px; align-items: flex-start; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.pdp__ruo .ic { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.pdp__details { margin-top: 88px; }
.ptabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 40px; overflow-x: auto; scrollbar-width: none; }
.ptabs::-webkit-scrollbar { display: none; }
.ptab { position: relative; padding: 16px 20px; font-weight: 600; font-size: 16px; color: var(--muted); white-space: nowrap; transition: color .2s; }
.ptab span { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; margin-left: 4px; border-radius: 11px; background: var(--soft); font-size: 12px; color: var(--ink); }
.ptab::after { content: ""; position: absolute; left: 20px; right: 20px; bottom: -1px; height: 2px; background: var(--ink); transform: scaleX(0); transition: transform .3s var(--ease); }
.ptab.is-active { color: var(--ink); }
.ptab.is-active::after { transform: none; }
.ptab:hover { color: var(--ink); }
.pdp__desc { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: start; }
.specs { position: sticky; top: calc(var(--header-h) + 24px); border-radius: var(--r-lg); background: var(--soft); padding: 26px; }
.specs h2 { font-size: 18px; margin-bottom: 14px; }
.specs dl { display: grid; }
.specs dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-2); font-size: 14.5px; }
.specs dt { color: var(--muted); }
.specs dd { color: var(--ink); font-weight: 500; }
.specs dd a { text-decoration: underline; text-underline-offset: 3px; }
.shipinfo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.shipinfo > div { padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.shipinfo .ic { width: 26px; height: 26px; color: var(--red); margin-bottom: 14px; }
.shipinfo h3 { font-size: 18px; margin-bottom: 8px; }
.shipinfo p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.shipinfo a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.reviews { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.reviews__summary { position: sticky; top: calc(var(--header-h) + 24px); padding: 26px; border-radius: var(--r-lg); background: var(--soft); }
.reviews__avg { font-size: 60px; font-weight: 600; color: var(--ink); letter-spacing: -.05em; line-height: 1; margin-bottom: 10px; }
.reviews__summary .muted { margin-top: 8px; font-size: 14.5px; }
.reviews__bars { list-style: none; display: grid; gap: 8px; margin-top: 18px; }
.reviews__bars li { display: grid; grid-template-columns: 50px 1fr 20px; gap: 10px; align-items: center; font-size: 13.5px; color: var(--muted); }
.reviews__bars .bar { height: 6px; border-radius: 6px; background: #e3e1db; overflow: hidden; }
.reviews__bars .bar span { display: block; height: 100%; background: var(--gold); border-radius: inherit; }
.reviews__note { display: flex; gap: 8px; align-items: flex-start; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-2); font-size: 13.5px; color: var(--muted); }
.reviews__note .ic { width: 18px; height: 18px; flex: none; color: var(--ok); }
.commentlist { list-style: none; display: grid; gap: 0; }
.review { padding: 22px 0; border-bottom: 1px solid var(--line); }
.review:first-child { padding-top: 0; }
.review__head { display: flex; gap: 14px; align-items: flex-start; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 600; flex: none; }
.review__name { color: var(--ink); font-weight: 600; margin-right: 8px; }
.review__verified { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--ok); font-weight: 600; }
.review__verified .ic { width: 14px; height: 14px; stroke-width: 2.4; }
.review__meta { display: flex; align-items: center; gap: 12px; margin-top: 4px; font-size: 13.5px; color: var(--muted); }
.review__text { margin-top: 12px; padding-left: 58px; color: var(--text); font-size: 15.5px; }
.review__text p { margin: 0; }
.review__text--empty { color: var(--faint); font-style: italic; font-size: 14.5px; }
.reviews__empty { display: flex; gap: 12px; align-items: center; padding: 22px; border-radius: var(--r); border: 1px dashed var(--line-2); color: var(--muted); }
.reviews__empty .ic { color: var(--faint); }

.pairs { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: center; margin-top: 88px; padding: 40px; border-radius: var(--r-xl); background: var(--soft); }
.pairs__intro p:not(.eyebrow) { margin-top: 12px; color: var(--muted); }
.pairs__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pair { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: var(--r); background: #fff; }
.pair__media { width: 64px; height: 64px; border-radius: 12px; background: var(--tile); display: grid; place-items: center; overflow: hidden; }
.pair__media img { width: 88%; mix-blend-mode: multiply; }
.pair__body { display: grid; gap: 2px; min-width: 0; }
.pair__body a { font-weight: 600; color: var(--ink); font-size: 14.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pair__body span { font-size: 14px; color: var(--muted); }
.pair__add { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; transition: background .2s; }
.pair__add:hover { background: #2a2a2e; }
.pair__add .ic { width: 18px; height: 18px; }
.pair__add.loading { opacity: .6; }
.pair__add.added { background: var(--ok); }

.stickybuy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .35s var(--ease); }
.stickybuy.is-on { transform: none; }
.stickybuy__info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.stickybuy__info img { width: 44px; height: 44px; border-radius: 10px; background: var(--tile); mix-blend-mode: multiply; object-fit: contain; }
.stickybuy__info strong { display: block; color: var(--ink); font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.stickybuy__info span { font-size: 14px; color: var(--muted); }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(245, 244, 240, .98); display: grid; place-items: center; padding: 40px; animation: fade .25s; }
.lightbox img { max-height: 88vh; width: auto; mix-blend-mode: multiply; }
.lightbox .icon-btn { position: absolute; top: 16px; right: 16px; background: #fff; box-shadow: var(--sh-sm); }

/* ---------- 24. Prose (live copy) ---------- */
.prose { color: var(--text); font-size: 17px; line-height: 1.75; max-width: 72ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(24px, 2.4vw, 32px); margin-top: 1.9em; letter-spacing: -.03em; line-height: 1.15; }
.prose h3 { font-size: 20px; margin-top: 1.6em; letter-spacing: -.02em; }
.prose h4 { font-size: 17px; margin-top: 1.4em; }
.prose > :first-child { margin-top: 0; }
.prose h2 + *, .prose h3 + * { margin-top: .6em; }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(216, 6, 33, .45); text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: text-decoration-color .2s; }
.prose a:hover { text-decoration-color: var(--red); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: .45em; padding-left: .2em; }
.prose ul li::marker { color: var(--red); }
.prose ol li::marker { color: var(--ink); font-weight: 600; }
.prose em { color: var(--muted); }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--red); color: var(--ink); font-size: 1.05em; }
.prose table { font-size: 15px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: block; overflow-x: auto; }
.prose th, .prose td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--soft); color: var(--ink); font-weight: 600; white-space: nowrap; }
.prose tr:last-child td { border-bottom: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.prose img { border-radius: var(--r); }
.prose figure { margin: 1.6em 0; }
.prose .wp-block-table { overflow-x: auto; }

/* ---------- 25. Page head & document layout ---------- */
.pagehead { background: var(--soft); padding: 28px 0 48px; margin-bottom: 56px; }
.pagehead .crumbs { margin-bottom: 28px; }
.pagehead h1 { font-size: clamp(36px, 4.6vw, 62px); letter-spacing: -.045em; line-height: 1.02; max-width: 20ch; }
.pagehead__lede { margin-top: 16px; font-size: 18.5px; color: var(--muted); max-width: 680px; line-height: 1.6; }
.pagehead__lede a { color: var(--ink); text-decoration: underline; }
.pagehead__meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; font-size: 14px; color: var(--muted); }
.pagehead__meta span { display: inline-flex; align-items: center; gap: 6px; }
.pagehead__meta .ic { width: 16px; height: 16px; }
.pagehead .chips { margin-top: 28px; margin-bottom: 0; }
.pagehead--center { text-align: center; }
.pagehead--center h1, .pagehead--center .pagehead__lede { margin-inline: auto; }
.pagehead--center .crumbs ol { justify-content: center; }
.doc { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 72px; align-items: start; padding-bottom: 48px; }
.doc--solo { grid-template-columns: minmax(0, 1fr); max-width: 860px; }
.doc__side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 16px; }
.toc__title { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ol { list-style: none; display: grid; gap: 2px; border-left: 1.5px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 16px; margin-left: -1.5px; border-left: 1.5px solid transparent; font-size: 14.5px; color: var(--muted); line-height: 1.4; transition: color .15s, border-color .15s; }
.toc a:hover { color: var(--ink); }
.toc a.is-active { color: var(--ink); border-left-color: var(--red); font-weight: 500; }
.sidecta { display: grid; gap: 6px; padding: 20px; border-radius: var(--r); background: var(--ink); color: #fff; transition: transform .3s var(--ease); }
a.sidecta:hover { transform: translateY(-2px); }
.sidecta .eyebrow { margin: 0; color: #ff5a6e; }
.sidecta strong { font-size: 18px; letter-spacing: -.02em; }
.sidecta .link-arrow { color: #bdbdc3; font-size: 14px; }
.sidecta--plain { background: var(--soft); color: var(--text); font-size: 14.5px; }
.sidecta--plain strong { color: var(--ink); font-size: 16px; }
.sidecta--plain a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.article__hero { margin-top: -24px; margin-bottom: 56px; }
.article__hero img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--r-xl); }

/* ---------- 26. About ---------- */
.abouthero { background: var(--soft); padding: 28px 0 0; }
.abouthero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; margin-top: 28px; }
.abouthero h1 { font-size: clamp(38px, 5vw, 70px); letter-spacing: -.045em; line-height: 1; }
.abouthero__lede { font-size: 18.5px; line-height: 1.65; color: var(--muted); }
.stats { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border-top: 1px solid var(--line-2); }
.stats li { padding: 28px 24px 36px 0; }
.stats li + li { padding-left: 24px; border-left: 1px solid var(--line-2); }
.stats b { display: block; font-size: clamp(34px, 3.6vw, 52px); font-weight: 600; color: var(--ink); letter-spacing: -.045em; line-height: 1; }
.stats li > span { display: block; margin-top: 8px; color: var(--muted); font-size: 15px; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value { padding: 26px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.value__ic { width: 48px; height: 48px; border-radius: 14px; background: var(--soft); display: grid; place-items: center; color: var(--red); margin-bottom: 18px; }
.value h2 { font-size: 19px; margin-bottom: 8px; }
.value p { font-size: 15px; color: var(--muted); }
.cta--split { margin-top: 24px; }

/* ---------- 27. FAQ page ---------- */
.faqsearch { position: relative; max-width: 560px; margin: 30px auto 0; }
.faqsearch .ic { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.faqsearch input { width: 100%; height: 58px; padding: 0 22px 0 52px; border-radius: var(--pill); border: 1.5px solid var(--line-2); background: #fff; font-size: 16.5px; outline: none; transition: border-color .2s, box-shadow .2s; }
.faqsearch input:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(13, 13, 14, .06); }
.faqpage { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 64px; align-items: start; padding-bottom: 48px; }
.faqgroup + .faqgroup { margin-top: 48px; }
.faqgroup h2 { display: flex; align-items: center; gap: 12px; font-size: 26px; margin-bottom: 18px; }
.faqgroup__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--soft); display: grid; place-items: center; color: var(--red); }
.faqpage__side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 16px; }
.faqpage__none { padding: 24px; border-radius: var(--r); background: var(--soft); }
.faqpage__none a { text-decoration: underline; color: var(--ink); }
.minifacts { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r); }
.minifacts > div { display: flex; gap: 12px; align-items: center; padding: 16px 18px; font-size: 14.5px; color: var(--muted); }
.minifacts > div + div { border-top: 1px solid var(--line); }
.minifacts .ic { color: var(--ink); }
.minifacts strong { color: var(--ink); }

/* ---------- 28. Contact ---------- */
.contact { display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 56px; align-items: start; padding-bottom: 48px; }
.contact__info { display: grid; gap: 12px; }
.infocard { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); transition: border-color .2s; }
a.infocard:hover { border-color: var(--ink); }
.infocard__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--soft); display: grid; place-items: center; color: var(--red); flex: none; }
.infocard strong { display: block; color: var(--ink); }
.infocard span span { display: block; color: var(--muted); font-size: 14.5px; margin-top: 2px; word-break: break-word; }
.contact__links { display: grid; gap: 4px; margin-top: 12px; }
.contact__links a { display: flex; align-items: center; gap: 10px; padding: 10px 4px; font-weight: 500; color: var(--ink); }
.contact__links .ic { width: 18px; height: 18px; color: var(--muted); }
.contact__form { padding: 36px; border-radius: var(--r-xl); background: var(--soft); }
.contact__form h2 { font-size: 26px; margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-status { margin-top: 16px; font-size: 15px; }
.form-status.is-ok { padding: 16px 18px; border-radius: var(--r); background: var(--ok-soft); color: #0e5a33; }
.form-status.is-err { color: var(--red); }

/* ---------- 29. Forms (Woo + theme) ---------- */
.form-row { margin: 0 0 16px; display: block; }
.form-row label, .woocommerce-form-row label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-row label .required, .required { color: var(--red); text-decoration: none; border: 0; }
.form-row label .optional { color: var(--faint); font-weight: 400; }
.input-text, .form-row input[type=text], .form-row input[type=email], .form-row input[type=tel], .form-row input[type=password], .form-row input[type=number], .form-row textarea, .form-row select, .contact__form input, .contact__form select, .contact__form textarea, .comment-form select, .comment-form textarea {
	width: 100%; min-height: 50px; padding: 12px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line-2); background: #fff; color: var(--ink); font-size: 15.5px; outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.form-row textarea, .contact__form textarea, .comment-form textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.form-row select, .contact__form select, .comment-form select { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d0d0e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 16px no-repeat; padding-right: 40px; }
.input-text:focus, .form-row input:focus, .form-row textarea:focus, .form-row select:focus, .contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(13, 13, 14, .06); }
.input-text::placeholder, textarea::placeholder { color: #a9a9b0; }
.woocommerce-invalid input.input-text, .woocommerce-invalid select { border-color: var(--red); }
.form-row .checkbox, label.checkbox, .woocommerce-form__label-for-checkbox { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 400 !important; color: var(--text) !important; cursor: pointer; font-size: 14.5px !important; line-height: 1.5; }
input[type=checkbox], input[type=radio] { width: 20px; height: 20px; accent-color: var(--ink); flex: none; margin: 1px 0 0; }
.woocommerce-input-wrapper { display: block; }
.select2-container { width: 100% !important; }
.select2-container--default .select2-selection--single { height: 50px; border-radius: var(--r-sm); border: 1.5px solid var(--line-2); display: flex; align-items: center; padding: 0 8px; }
.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--ink); line-height: 1.2; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; right: 8px; }
.select2-container--default.select2-container--open .select2-selection--single { border-color: var(--ink); }
.select2-dropdown { border: 1.5px solid var(--ink); border-radius: var(--r-sm); overflow: hidden; }
.select2-search--dropdown .select2-search__field { border: 1.5px solid var(--line-2); border-radius: 8px; padding: 8px 10px; }
.select2-results__option { padding: 9px 12px; }
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] { background: var(--ink); }

/* notices */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
	margin: 0 0 24px; padding: 16px 20px; border-radius: var(--r); font-size: 15px; border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.woocommerce-message { border-color: #bfe3cf; background: var(--ok-soft); }
.woocommerce-error { border-color: #f4c3ca; background: var(--red-soft); flex-direction: column; align-items: flex-start; gap: 6px; color: #7a0413; }
.woocommerce-error li { list-style: none; }
.woocommerce-error a { color: inherit; }
.woocommerce-error strong { color: #5c020e; }
.checkout-inline-error-message, .woocommerce-invalid .woocommerce-input-wrapper + p { font-size: 13.5px; color: var(--red); margin-top: 6px; }
.coupon-error-notice { font-size: 13.5px; color: var(--red); margin-top: 8px; width: 100%; }
.woocommerce-info { background: var(--soft); border-color: transparent; }
.woocommerce-message .button, .woocommerce-info .button, .notice-link { order: 2; min-height: 38px; padding: 0 16px; font-size: 14px; background: var(--ink); color: #fff; border-radius: var(--pill); display: inline-flex; align-items: center; font-weight: 600; }
.woocommerce-info a:not(.button) { text-decoration: underline; font-weight: 600; }
.woocommerce-form-coupon-toggle .woocommerce-info { justify-content: flex-start; }
.preview-note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 20px; margin-bottom: 24px; border-radius: var(--r); background: #fff8e6; border: 1px solid #f3dfa5; color: #5d4400; font-size: 14.5px; line-height: 1.55; }
.preview-note .ic { width: 20px; height: 20px; flex: none; margin-top: 1px; color: #b07a00; }
.preview-note strong { color: #3f2e00; }

/* ---------- 30. Woo shell, cart, checkout, account ---------- */
.wooshell { padding-top: 32px; padding-bottom: 32px; }
.pagehead-slim { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 28px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.pagehead-slim h1 { font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -.04em; }
.progress { list-style: none; display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--faint); }
.progress li { display: inline-flex; align-items: center; gap: 8px; }
.progress li + li::before { content: ""; width: 28px; height: 1.5px; background: var(--line-2); margin-right: 4px; }
.progress span { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--line-2); font-weight: 600; font-size: 12.5px; }
.progress .ic { width: 14px; height: 14px; stroke-width: 2.4; }
.progress .is-current { color: var(--ink); font-weight: 600; }
.progress .is-current span { background: var(--ink); border-color: var(--ink); color: #fff; }
.progress .is-done { color: var(--ink); }
.progress .is-done span { background: var(--ok); border-color: var(--ok); color: #fff; }

.cartpage { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 48px; align-items: start; }
.cartpage__main > .shipbar { padding: 18px 20px; border-radius: var(--r); background: var(--soft); margin-bottom: 20px; }
.cartlist { list-style: none; border-top: 1px solid var(--line); }
.cartrow { display: grid; grid-template-columns: 112px minmax(0, 1fr) auto 110px; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cartrow__media { width: 112px; height: 112px; border-radius: var(--r); background: var(--tile); display: grid; place-items: center; overflow: hidden; }
.cartrow__media img { width: 84%; height: 84%; object-fit: contain; mix-blend-mode: multiply; }
.cartrow__body { display: grid; gap: 3px; min-width: 0; justify-items: start; }
.cartrow__name { font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -.015em; line-height: 1.3; }
.cartrow__var, .cartrow__each { font-size: 14px; color: var(--muted); }
.cartrow__remove { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13.5px; color: var(--muted); }
.cartrow__remove .ic { width: 16px; height: 16px; }
.cartrow__remove:hover { color: var(--red); }
.cartrow__qty .quantity { height: 46px; }
.cartrow__qty .qty-btn { width: 32px; height: 32px; }
.cartrow__total { text-align: right; font-weight: 600; color: var(--ink); font-size: 17px; }
.cart-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 22px; }
.coupon { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; max-width: 460px; }
.coupon .input-text { flex: 1; min-width: 0; }
.coupon .input-text { min-height: 48px; border-radius: var(--pill); padding: 0 20px; }
.cart-update { opacity: .8; }
.cartpage__side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 16px; }
.cart_totals, .co__summary { padding: 28px; border-radius: var(--r-lg); background: var(--soft); }
.cart_totals h2 { font-size: 22px; margin-bottom: 16px; }
.cart_totals table, .woocommerce-checkout-review-order-table { font-size: 15px; }
.cart_totals th, .cart_totals td, .woocommerce-checkout-review-order-table th, .woocommerce-checkout-review-order-table td { padding: 12px 0; border-bottom: 1px solid var(--line-2); text-align: left; vertical-align: top; }
.cart_totals th, .woocommerce-checkout-review-order-table tfoot th { font-weight: 500; color: var(--muted); width: 40%; }
.cart_totals td, .woocommerce-checkout-review-order-table td:last-child { text-align: right; color: var(--ink); }
.cart_totals .order-total th, .cart_totals .order-total td, .woocommerce-checkout-review-order-table .order-total th, .woocommerce-checkout-review-order-table .order-total td { border-bottom: 0; padding-top: 18px; font-size: 18px; color: var(--ink); font-weight: 600; }
.cart_totals .order-total td strong, .order-total .amount { font-size: 22px; letter-spacing: -.02em; }
#shipping_method { list-style: none; display: grid; gap: 8px; text-align: left; }
#shipping_method li { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
#shipping_method label { color: var(--ink); }
.woocommerce-shipping-destination, .woocommerce-shipping-contents { font-size: 13.5px; color: var(--muted); margin-top: 8px; text-align: right; }
.shipping-calculator-button { font-size: 13.5px; text-decoration: underline; text-underline-offset: 3px; color: var(--ink); display: inline-block; margin-top: 6px; }
.shipping-calculator-form { margin-top: 12px; text-align: left; }
.wc-proceed-to-checkout { padding-top: 16px; }
.wc-proceed-to-checkout .checkout-button { width: 100%; min-height: 56px; font-size: 16px; }
.cart_totals .woocommerce-remove-coupon { font-size: 13px; color: var(--muted); margin-left: 6px; }
.sidetrust { list-style: none; display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); }
.sidetrust li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; font-size: 14px; color: var(--muted); line-height: 1.45; }
.sidetrust li + li { border-top: 1px solid var(--line); }
.sidetrust .ic { color: var(--ink); margin-top: 1px; }
.sidetrust strong { color: var(--ink); }

.checkout_coupon { display: flex; gap: 8px; align-items: flex-end; max-width: 520px; margin-bottom: 24px; padding: 18px; border-radius: var(--r); background: var(--soft); flex-wrap: wrap; }
.checkout_coupon p:not(.form-row) { width: 100%; font-size: 14px; color: var(--muted); }
.checkout_coupon .form-row { margin: 0; flex: 1; }
.checkout_coupon .form-row-last { flex: none; }
.co { display: grid; grid-template-columns: minmax(0, 1fr) 460px; gap: 48px; align-items: start; }
.co__step { padding: 30px; border-radius: var(--r-lg); border: 1px solid var(--line); margin-bottom: 20px; }
.co__h { display: flex; align-items: center; gap: 12px; font-size: 21px; margin-bottom: 22px; letter-spacing: -.02em; }
.co__h span { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 14px; display: grid; place-items: center; }
.co__hint { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); margin: -8px 0 18px; }
.co__hint .ic { width: 18px; height: 18px; color: var(--ink); flex: none; margin-top: 1px; }
.woocommerce-billing-fields h3, .woocommerce-additional-fields h3 { display: none; }
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper, .woocommerce-address-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-row-wide, #billing_email_field, #billing_address_1_field, #billing_address_2_field, #shipping_address_1_field, #shipping_address_2_field, #billing_country_field, #shipping_country_field, #order_comments_field { grid-column: 1 / -1; }
#ship-to-different-address { font-size: 15px; margin-bottom: 14px; }
#ship-to-different-address label { display: flex; gap: 10px; align-items: center; font-weight: 600; color: var(--ink); cursor: pointer; }
.woocommerce-additional-fields { margin-top: 8px; }
.co__side { position: sticky; top: calc(var(--header-h) + 24px); }
.co__summary .co__h { margin-bottom: 16px; }
.woocommerce-checkout-review-order-table thead { display: none; }
.woocommerce-checkout-review-order-table .cart_item td { font-size: 14.5px; }
.woocommerce-checkout-review-order-table .product-name { color: var(--ink); font-weight: 500; }
.woocommerce-checkout-review-order-table .product-quantity { color: var(--muted); font-weight: 400; }
.woocommerce-checkout-review-order-table .variation { display: flex; gap: 4px; margin: 2px 0 0; font-size: 13px; color: var(--muted); font-weight: 400; }
.woocommerce-checkout-review-order-table .variation dt, .woocommerce-checkout-review-order-table .variation dd p { margin: 0; }
#payment { margin-top: 20px; }
.wc_payment_methods { list-style: none; display: grid; gap: 10px; }
.wc_payment_method { padding: 16px 18px; border-radius: var(--r); background: #fff; border: 1.5px solid var(--ink); }
.wc_payment_method > label { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); margin-left: 8px; }
.wc_payment_method input { vertical-align: middle; }
.payment_box { margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.place-order { margin-top: 18px; }
.woocommerce-privacy-policy-text p, .woocommerce-terms-and-conditions-checkbox-text { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.woocommerce-privacy-policy-text a, .woocommerce-terms-and-conditions-checkbox-text a { color: var(--ink); text-decoration: underline; }
.woocommerce-terms-and-conditions-wrapper { display: grid; gap: 12px; margin-bottom: 12px; }
.woocommerce-terms-and-conditions { max-height: 200px; overflow: auto; padding: 14px; border-radius: 10px; background: #fff; font-size: 13px; }
.research-ack { padding: 14px 16px; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--line-2); margin-bottom: 14px; }
.research-ack .required { margin-left: 2px; }
#place_order { width: 100%; min-height: 58px; font-size: 16.5px; }
.co__secure { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.co__secure .ic { width: 16px; height: 16px; }
.blockUI.blockOverlay { background: rgba(255, 255, 255, .6) !important; border-radius: inherit; }

.thanks { max-width: 880px; margin-inline: auto; }
.thanks__hero { text-align: center; padding: 16px 0 36px; display: grid; justify-items: center; gap: 10px; }
.thanks__ic { width: 72px; height: 72px; border-radius: 50%; background: var(--ok); color: #fff; display: grid; place-items: center; margin-bottom: 10px; animation: pop .6s var(--ease); }
.thanks__hero--fail .thanks__ic { background: var(--red); }
.thanks__ic .ic { width: 34px; height: 34px; stroke-width: 2.4; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.08); } }
.thanks__hero h2 { font-size: clamp(28px, 3.2vw, 40px); max-width: 22ch; }
.thanks__hero p:not(.eyebrow) { color: var(--muted); font-size: 16.5px; max-width: 560px; }
.thanks__meta { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: 20px; }
.thanks__meta li { padding: 18px 20px; display: grid; gap: 4px; }
.thanks__meta li + li { border-left: 1px solid var(--line); }
.thanks__meta li > span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.thanks__meta strong { color: var(--ink); font-size: 16.5px; }
.thanks__next { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 8px 0 40px; }
.thanks__next li { display: flex; gap: 12px; align-items: flex-start; padding: 18px; border-radius: var(--r); background: var(--soft); }
.thanks__next strong { display: block; color: var(--ink); font-size: 15px; }
.thanks__next span:not(.step__n) { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }
.thanks__details > p { display: none; }
.woocommerce-order-details, .woocommerce-customer-details { margin-top: 32px; }
.woocommerce-order-details__title, .woocommerce-column__title { font-size: 22px; margin-bottom: 14px; }
.shop_table.order_details, .woocommerce-table, .woocommerce-orders-table { font-size: 15px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; border-collapse: separate; border-spacing: 0; }
.shop_table.order_details th, .shop_table.order_details td, .woocommerce-table th, .woocommerce-table td, .woocommerce-orders-table th, .woocommerce-orders-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.shop_table.order_details thead th, .woocommerce-orders-table thead th { background: var(--soft); color: var(--ink); font-weight: 600; }
.shop_table.order_details tfoot th { color: var(--muted); font-weight: 500; }
.shop_table.order_details tr:last-child td, .shop_table.order_details tfoot tr:last-child th { border-bottom: 0; }
.woocommerce-customer-details address { font-style: normal; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); line-height: 1.7; }
.woocommerce-columns--addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wc-bacs-bank-details-heading, .woocommerce-bacs-bank-details { display: none; }

.auth { display: grid; gap: 20px; max-width: 520px; margin-inline: auto; }
.auth--two { grid-template-columns: 1fr 1fr; max-width: 1000px; }
.auth__card { padding: 36px; border-radius: var(--r-xl); border: 1px solid var(--line); }
.auth__card--soft { background: var(--soft); border-color: transparent; }
.auth__card h2 { font-size: 26px; }
.auth__card > .muted { margin: 8px 0 24px; }
.auth__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 4px 0 20px; font-size: 14.5px; }
.auth__row a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.auth__perks { list-style: none; display: grid; gap: 10px; margin-top: 22px; font-size: 14.5px; color: var(--muted); }
.auth__perks li { display: flex; gap: 10px; align-items: center; }
.auth__perks .ic { color: var(--ink); width: 18px; height: 18px; }
.woocommerce-privacy-policy-text { margin: 4px 0 16px; }
.logged-in.woocommerce-account .woocommerce { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 48px; align-items: start; }
.woocommerce-MyAccount-navigation ul { list-style: none; display: grid; gap: 4px; padding: 12px; border-radius: var(--r-lg); background: var(--soft); }
.woocommerce-MyAccount-navigation a { display: block; padding: 11px 16px; border-radius: var(--r-sm); color: var(--muted); font-weight: 500; transition: background .15s, color .15s; }
.woocommerce-MyAccount-navigation a:hover { color: var(--ink); background: #fff; }
.woocommerce-MyAccount-navigation .is-active a { background: var(--ink); color: #fff; }
.woocommerce-MyAccount-content p { margin-bottom: 14px; }
.woocommerce-MyAccount-content a:not(.button) { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.woocommerce-Address { padding: 22px; border-radius: var(--r); border: 1px solid var(--line); }
.woocommerce-Address-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.woocommerce-Address-title h2 { font-size: 18px; }

/* ---------- 31. 404, results, toast ---------- */
.notfound { padding: 88px 0 40px; text-align: center; }
.notfound__code { display: inline-flex; align-items: center; gap: 12px; font-size: clamp(90px, 14vw, 180px); font-weight: 600; letter-spacing: -.06em; line-height: 1; color: var(--ink); }
.notfound__leaf { width: .7em; height: .7em; color: var(--red); }
.notfound h1 { font-size: clamp(28px, 3vw, 40px); margin-top: 16px; }
.notfound p { color: var(--muted); margin: 12px auto 0; max-width: 520px; font-size: 17px; }
.notfound__search { display: flex; align-items: center; gap: 10px; max-width: 540px; margin: 30px auto 22px; padding: 6px 6px 6px 20px; border: 1.5px solid var(--line-2); border-radius: var(--pill); }
.notfound__search input { flex: 1; border: 0; outline: 0; font-size: 16px; min-width: 0; }
.results { list-style: none; display: grid; gap: 10px; max-width: 860px; }
.result a { display: grid; gap: 4px; padding: 20px 22px; border-radius: var(--r); border: 1px solid var(--line); transition: border-color .2s; }
.result a:hover { border-color: var(--ink); }
.result__type { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.result strong { color: var(--ink); font-size: 18px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 130; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: var(--pill); background: var(--ink); color: #fff; font-weight: 500; font-size: 14.5px; box-shadow: var(--sh-lg); animation: toast .35s var(--ease); }
.toast .ic { width: 18px; height: 18px; color: #7be3a9; }
@keyframes toast { from { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- 32. Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.js .reveal { opacity: 1; transform: none; }
}

/* ---------- 33. Responsive ---------- */
@media (max-width: 1280px) {
	.mainnav__link { padding: 0 11px; font-size: 14.5px; }
	.header__in { gap: 18px; }
	.logo__word { font-size: 15.5px; letter-spacing: .13em; }
	.hero__card { padding-left: 56px; }
	.guides { grid-template-columns: repeat(2, 1fr); }
	.proof { grid-template-columns: 1fr; gap: 28px; }
	.pairs { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 1100px) {
	:root { --header-h: 66px; }
	.mainnav, .header__account { display: none; }
	.site-header .header__menu { display: inline-grid; margin-left: -8px; }
	.header__in { gap: 8px; }
	.header__icons { margin-left: auto !important; }
	.announce__msg:not(.is-active) { display: none; }
	.announce__msg + .announce__msg::before { display: none; }
	.js .announce__msg { display: none; }
	.js .announce__msg.is-active { display: inline-flex; animation: fade .5s; }
	.hero__card { grid-template-columns: 1fr; padding: 56px 40px 0; min-height: 0; gap: 8px; }
	.hero__art { margin-bottom: 0; }
	.hero__art img { max-width: 560px; }
	.trust__grid { grid-template-columns: repeat(2, 1fr); }
	.trust__item:nth-child(3) { border-left: 0; }
	.trust__item:nth-child(n+3) { border-top: 1px solid var(--line); }
	.cats { grid-template-columns: repeat(2, 1fr); }
	.pgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.band__top { grid-template-columns: 1fr; gap: 20px; }
	.band__grid { grid-template-columns: 1fr; }
	.feature, .feature + .feature { padding: 28px 0; border-left: 0; }
	.feature + .feature { border-top: 1px solid #28282c; }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.starter, .faqhome { grid-template-columns: 1fr; gap: 36px; }
	.cta { grid-template-columns: 1fr; padding: 48px 40px; }
	.cta__actions { justify-content: flex-start; }
	.footer__trust { grid-template-columns: repeat(2, 1fr); }
	.footer__grid { grid-template-columns: 1fr 1fr 1fr; }
	.footer__brand { grid-column: 1 / -1; }
	.shophead__row { flex-direction: column; align-items: flex-start; }
	.shophead__facts { display: flex; flex-wrap: wrap; }
	.catcopy { grid-template-columns: 1fr; gap: 16px; }
	.catcopy__aside { position: static; }
	.pdp__desc { grid-template-columns: 1fr; gap: 32px; }
	.specs { position: static; }
	.shipinfo { grid-template-columns: repeat(2, 1fr); }
	.reviews { grid-template-columns: 1fr; gap: 28px; }
	.reviews__summary { position: static; }
	.pairs__list { grid-template-columns: 1fr; }
	.doc { grid-template-columns: 1fr; gap: 28px; }
	.doc__side { position: static; }
	.toc ol { max-height: none; }
	.faqpage, .contact { grid-template-columns: 1fr; gap: 36px; }
	.faqpage__side { position: static; }
	.values { grid-template-columns: repeat(2, 1fr); }
	.abouthero__grid { grid-template-columns: 1fr; gap: 16px; }
	.cartpage, .co { grid-template-columns: 1fr; gap: 28px; }
	.cartpage__side, .co__side { position: static; }
	.logged-in.woocommerce-account .woocommerce { grid-template-columns: 1fr; gap: 24px; }
	.auth--two { grid-template-columns: 1fr; max-width: 560px; }
	.guides--all { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.pdp__grid { grid-template-columns: 1fr; gap: 28px; }
	.pdp__gallery { position: static; }
	.stickybuy { display: flex; }
	body.single-product .site-footer { padding-bottom: 96px; }
	.proof__quotes { grid-template-columns: 1fr; }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.stats li:nth-child(3) { padding-left: 0; border-left: 0; }
	.stats li:nth-child(n+3) { border-top: 1px solid var(--line-2); }
	.thanks__meta { grid-template-columns: 1fr 1fr; }
	.thanks__meta li:nth-child(3) { border-left: 0; }
	.thanks__meta li:nth-child(n+3) { border-top: 1px solid var(--line); }
	.thanks__next { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
	:root { --gut: 16px; --header-h: 60px; }
	body { font-size: 15.5px; }
	.sec { padding-block: 64px; }
	.sec--tight { padding-block: 44px; }
	.sec-head { margin-bottom: 22px; align-items: flex-start; }
	.sec-head .tabs { width: 100%; }
	.announce { font-size: 12.5px; }
	.logo__leaf { width: 26px; height: 26px; }
	.logo__word { font-size: 14px; letter-spacing: .11em; }
	.icon-btn { width: 42px; height: 42px; }
	.hero { padding-top: 10px; }
	.hero .wrap { padding-inline: 10px; }
	.hero__card { padding: 40px 22px 0; border-radius: var(--r-lg); }
	.hero__title { font-size: clamp(38px, 11vw, 52px); }
	.hero__lede { font-size: 16px; margin-top: 18px; }
	.hero__cta { margin-top: 26px; }
	.hero__cta .btn { flex: 1 1 100%; }
	.hero__facts { margin-top: 32px; }
	.hero__facts li { padding-right: 10px; }
	.hero__facts li + li { padding-left: 12px; }
	.hero__facts b { font-size: 21px; }
	.hero__facts span { font-size: 12.5px; }
	.trust { padding-top: 16px; }
	.trust__grid { grid-template-columns: 1fr; }
	.trust__item + .trust__item { border-left: 0; border-top: 1px solid var(--line); }
	.trust__item { padding: 16px 18px; }
	.cats { gap: 10px; }
	.cat, .cat--wide { grid-column: span 1; min-height: 196px; padding: 16px; border-radius: var(--r); }
	.cat--big, .cat--full { grid-column: 1 / -1; min-height: 190px; padding: 18px; border-radius: var(--r); }
	.cat__name, .cat--big .cat__name { font-size: 18px; }
	.cat--big .cat__name { font-size: 23px; }
	.cat__body { max-width: 100%; }
	.cat__blurb { display: none; }
	.cat--big .cat__blurb { display: block; max-width: 58%; }
	.cat__media, .cat--wide .cat__media { width: 60%; right: -8%; bottom: -10%; }
	.cat--big .cat__media, .cat--full .cat__media { width: 38%; right: 3%; bottom: -12%; }
	.pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 12px; }
	.pgrid--rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut); scroll-padding-inline: var(--gut); scrollbar-width: none; padding-bottom: 4px; }
	.pgrid--rail::-webkit-scrollbar { display: none; }
	.pgrid--rail .pcard { flex: 0 0 64%; scroll-snap-align: start; }
	.pcard__media { border-radius: var(--r); }
	.pcard__media .badge { top: 10px; left: 10px; height: 22px; font-size: 10.5px; padding: 0 8px; }
	.pcard__body { padding-top: 12px; }
	.pcard__title { font-size: 15.5px; }
	.pcard__spec { font-size: 13px; }
	.pcard__foot { flex-wrap: wrap; gap: 8px; }
	.pcard__price { font-size: 15.5px; width: 100%; }
	.pcard__add { width: 100%; justify-content: center; height: 40px; }
	.pgrid--rail .pcard__price { width: auto; }
	.pgrid--rail .pcard__add { width: auto; }
	.band { padding-block: 64px; }
	.steps { grid-template-columns: 1fr; }
	.glossary { grid-template-columns: 1fr; }
	.guides, .guides--all { grid-template-columns: 1fr; }
	.proof__big { font-size: 60px; }
	.quote { padding: 22px; }
	.quote blockquote { font-size: 17px; }
	.acc__item summary { padding: 16px 18px; font-size: 15.5px; }
	.acc__body { padding: 0 18px 18px; }
	.cta { padding: 40px 24px; border-radius: var(--r-lg); }
	.cta__actions > * { flex: 1 1 100%; justify-content: center; }
	.footer__trust { grid-template-columns: 1fr; gap: 18px; }
	.footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
	.footer__bottom { flex-direction: column; }
	.shophead { padding: 20px 0 26px; margin-bottom: 20px; }
	.shophead__facts { display: none; }
	.toolbar { padding-bottom: 16px; }
	.woocommerce-ordering select { height: 40px; font-size: 14px; padding-left: 14px; }
	.catcopy { margin-top: 56px; padding-top: 36px; }
	.pdp { padding-top: 14px; }
	.pdp__stage { border-radius: var(--r-lg); }
	.pdp__thumbs { gap: 8px; }
	.pdp__thumb { width: 64px; height: 64px; }
	.pdp__title { font-size: 34px; }
	.pdp__price { font-size: 26px; }
	.pdp__buy { padding: 18px; margin-inline: -4px; }
	.pill { min-width: 0; flex: 1 1 calc(50% - 5px); }
	.pdp__assure { grid-template-columns: 1fr; gap: 10px; }
	.pdp__details { margin-top: 56px; }
	.ptab { padding: 14px 14px; font-size: 15px; }
	.ptab::after { left: 14px; right: 14px; }
	.shipinfo { grid-template-columns: 1fr; }
	.prose { font-size: 16px; }
	.review__text { padding-left: 0; }
	.pairs { padding: 24px 18px; margin-top: 56px; border-radius: var(--r-lg); }
	.pagehead { padding: 20px 0 32px; margin-bottom: 36px; }
	.pagehead .crumbs { margin-bottom: 18px; }
	.pagehead__lede { font-size: 16.5px; }
	.values { grid-template-columns: 1fr; }
	.stats b { font-size: 34px; }
	.stats li { padding: 20px 12px 24px 0; }
	.stats li + li { padding-left: 14px; }
	.contact__form { padding: 22px; border-radius: var(--r-lg); }
	.field-row { grid-template-columns: 1fr; gap: 0; }
	.progress { font-size: 12.5px; gap: 4px; }
	.progress li + li::before { width: 12px; }
	.pagehead-slim { padding-bottom: 20px; margin-bottom: 20px; }
	.cartrow { grid-template-columns: 84px minmax(0, 1fr); gap: 12px 14px; align-items: start; }
	.cartrow__media { width: 84px; height: 84px; grid-row: span 2; }
	.cartrow__qty { grid-column: 2; }
	.cartrow__total { grid-column: 2; text-align: left; margin-top: -4px; }
	.cartrow__qty .quantity { height: 42px; }
	.coupon { max-width: none; width: 100%; }
	.cart-actions .cart-update { width: 100%; }
	.cart_totals, .co__summary { padding: 20px; }
	.co__step { padding: 20px; }
	.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper, .woocommerce-address-fields__field-wrapper { grid-template-columns: 1fr; }
	.auth__card { padding: 24px; border-radius: var(--r-lg); }
	.thanks__meta { grid-template-columns: 1fr; }
	.thanks__meta li + li { border-left: 0; border-top: 1px solid var(--line); }
	.woocommerce-columns--addresses, .woocommerce-Addresses { grid-template-columns: 1fr; }
	.notfound { padding-top: 56px; }
	.notfound__search .btn { min-height: 42px; padding: 0 16px; }
	.search__panel { padding: 16px 0 22px; }
	.search__results { grid-template-columns: 1fr; gap: 4px; }
	.sres { grid-template-columns: 52px 1fr auto; padding: 8px; }
	.sres__img { width: 52px; height: 52px; }
	.shop_table.order_details th, .shop_table.order_details td { padding: 12px; }
}
@media (max-width: 380px) {
	.logo__word { font-size: 12.5px; letter-spacing: .08em; }
	.hero__facts { flex-wrap: wrap; row-gap: 14px; }
}
