/* Shop Filters — "V1 · Simple" presentation layer ----------------------------
 * Implements the Claude Design "Shop Filters - 4 Directions" V1 with the chosen
 * options: pill bar, cozy cards, outlined concern chips + icons, desktop Sort
 * MENU, mobile SPLIT entry (Filters | Sort) opening bottom SHEETS.
 *
 * Reskins the existing custom-select filter controls (#categorySelect /
 * #concernSelect / #productSelect / #sortSelect) that lander-common.js wires, so
 * all filtering keeps working. Per-segment color comes through the existing
 * --shop-accent / --shop-header-bg / --shop-text tokens on .sbr-shop-wrap.
 * Behaviour (count, concern proxy, sheets) lives in assets/js/shop-filters.js.
 * ------------------------------------------------------------------------- */

.sbr-v1, .sbr-v1 * { box-sizing: border-box; }

:root,
.sbr-shop-wrap {
	--v1-ui: 'Open Sans', sans-serif;
	--v1-disp: 'Montserrat', sans-serif;
	--v1-ink: #1f2524;
	--v1-ink2: #3f4d4c;
	--v1-slate: #6b7877;
	--v1-faint: #9aa7a6;
	--v1-line: #e9eceb;
	--v1-line2: #f0f2f1;
}

/* The branded dark band wrapper no longer paints the band itself — the V1 banner
   + bar carry their own surfaces over the mint page. */
.sbr-shop-wrap .sbr-v1-header {
	background: transparent;
	color: var(--v1-ink);
	/* The shared section rule (custom-styles.css) adds margin-top:9.1rem; the fixed
	   header is already cleared by .header-spacer, so drop it — the banner fills the
	   area directly under the nav. */
	margin-top: 0 !important;
	padding: 0 0 4px;
	text-align: left;
}
/* Match the shop CARD content column. Every full-width card renders its content
   (.lander-shortcode) in a 1330px box centered on the product COLUMN, which the
   grid gutter (.product-item-display margin:-20px) shifts 20px left of the viewport
   center. So: width 1330 (width:100% overrides the theme .container's fixed 1170)
   + a 20px left nudge to land edge-for-edge on the cards (measured: 28→1358). */
.sbr-shop-wrap .sbr-v1-header .container.sbr-v1 {
	position: relative;
	left: -20px;
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
}

/* ====================== PROMO BANNER (full-bleed band) ====================== */
/* Full-width dark band flush under the nav (no rounded card / side gutters); the
   text is constrained to the 1180 content column via __inner, the photo bleeds to
   the right viewport edge. */
.sbr-shop-wrap .sbr-v1-banner {
	position: relative;
	overflow: hidden;
	width: 100%;
	/* Match the partner-lander banner band height (.pageheaderTop ≈ 267px). */
	min-height: 267px;
	display: flex;
	align-items: center;
	color: #fff;
	background: var(--shop-header-bg, #3d3f40);
	background-image: linear-gradient(150deg, rgba(255, 255, 255, .07), rgba(0, 0, 0, .26));
}
.sbr-v1-banner__inner {
	position: relative;
	z-index: 2;
	/* Same 1330 content column + 20px grid nudge as the cards/filter bar, so the
	   banner heading lines up with the product cards below. */
	left: -20px;
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
	padding: 40px 0;
}
.sbr-v1-banner__text { max-width: 600px; }
.sbr-v1-banner.has-media .sbr-v1-banner__text { max-width: 560px; }

.sbr-v1-banner .sbr-shop-logo {
	max-height: 46px;
	width: auto;
	display: block;
	margin: 0 0 14px;
}
.sbr-v1-banner__title {
	font-family: var(--v1-disp);
	font-weight: 800;
	font-size: 42px;
	line-height: 1.03;
	letter-spacing: -1.4px;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
}
.sbr-v1-banner__sub {
	font-family: var(--v1-ui);
	font-weight: 500;
	font-size: 16.5px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .9);
	margin: 14px 0 0;
	max-width: 540px;
}
.sbr-v1-banner__sub * { color: inherit; margin: 0; }

.sbr-v1-banner__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 52%;
}
.sbr-v1-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Fade the photo into the banner color on its left edge. */
.sbr-v1-banner__media::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(90deg, var(--shop-header-bg, #3d3f40) 0%, rgba(61, 63, 64, .82) 34%, rgba(61, 63, 64, 0) 84%);
}

/* ============ Rich banner template slot ($has_tpl) ============ */
/* When a category/header banner template is chosen in Shop Presentation it renders
   into #sbr-shop-banner-slot instead of the V1 banner. Those templates are authored
   for the home / sale-page context and carry their own top margin (e.g. the Father's
   Day banner's section has margin-top:92px) to clear a page header. In the shop the
   lander #newsalePage top margin already aligns the first element flush to the real
   (taller-than-its-spacer) fixed header — so strip the template's extra top margin
   and let it sit flush under the nav, exactly like the V1 banner. */
.sbr-shop-wrap #sbr-shop-banner-slot { margin-top: 0; }
.sbr-shop-wrap #sbr-shop-banner-slot > section { margin-top: 0 !important; }

/* ====================== FILTER BAR (pill) ====================== */
.sbr-shop-wrap .sbr-v1-bar {
	/* Sticky is provided by lander-common.js (it adds .is-sticky → position:fixed on
	   scroll); just position:relative here for the dropdown popovers' stacking. */
	position: relative;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 0;
	background: #fff;
	border: 1px solid var(--v1-line);
	/* Joins the banner above (square top) — standalone bars get full radius below. */
	border-radius: 0 0 16px 16px;
	padding: 12px 16px;
	box-shadow: 0 4px 18px rgba(20, 40, 40, .06);
}
/* The bar is a detached, fully-rounded control bar floating below the full-bleed
   banner (the banner now lives outside .container). */
.sbr-shop-wrap .sbr-v1-header > .container.sbr-v1 > .sbr-v1-bar:first-child {
	border-radius: 18px;
	margin-top: 18px;
}
/* On scroll, lander-common.js adds .is-sticky → the shared lander rule makes the
   bar position:fixed; left:0; right:0 (FULL viewport width). Re-constrain it to the
   same 1330 card column — centered with the 20px grid nudge — so the bar keeps its
   exact width when it sticks. (4 classes beats the lander's 3-class+element rule.) */
.sbr-shop-wrap .sbr-v1-bar.pageheaderBotm.is-sticky {
	left: 50%;
	right: auto;
	width: 100%;
	max-width: 1330px;
	transform: translateX(calc(-50% - 20px));
	border-radius: 18px;
	/* The detached-bar :first-child rule adds margin-top:18px (space below the
	   banner); when fixed under the header that becomes a gap — zero it so the bar
	   sticks flush to the header (JS already sets top = header height). */
	margin-top: 0 !important;
}
.sbr-v1-bar__controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sbr-v1-bar__right { display: flex; align-items: center; gap: 16px; }

/* Neutralize the shared custom-select chrome (sale-products-styles-top.css):
   the select_arrow.png background (!important), the 270px min-width, the 48px
   fixed height, and the ::after box that turns into a "×" when open — none of
   which belong on the V1 pills. The pill look comes from the rules below. */
/* Scoped to the control CLASSES (not the bar) so it also applies when the
   controls are relocated into a mobile sheet. */
.sbr-shop-wrap .sbr-v1-drop,
.sbr-shop-wrap .sbr-v1-sort {
	background: none !important;
	min-width: 0;
	height: auto;
	line-height: 1.2;
	padding: 0;
	border-radius: 0;
	text-transform: none;
}
.sbr-shop-wrap .sbr-v1-drop .selected:not([data-count])::after,
.sbr-shop-wrap .sbr-v1-sort .selected::after { content: none; }
.sbr-shop-wrap .sbr-v1-drop.is-open .selected::after { content: none; }
/* Kill the shared widget's blue field-label pseudo (#categorySelect::before =
   "Categories", #productSelect::before = "Discounts") — the V1 label comes from
   the .selected::before (data-label) instead. */
.sbr-shop-wrap #categorySelect::before,
.sbr-shop-wrap #concernSelect::before,
.sbr-shop-wrap #productSelect::before,
.sbr-shop-wrap #sortSelect::before { content: none !important; }

/* --- pill dropdown trigger (Category / Concern / Discount) --- */
.sbr-shop-wrap .sbr-v1-drop { position: relative; }
.sbr-shop-wrap .sbr-v1-drop > .selected {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	border: 1.5px solid var(--v1-line);
	border-radius: 999px;
	background: #fff;
	padding: 10px 36px 10px 15px;
	font-family: var(--v1-ui);
	font-weight: 700;
	color: var(--v1-ink2);
	white-space: nowrap;
	position: relative;
	min-height: 0;
	line-height: 1.2;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%236b7877' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 13px center;
	transition: border-color .15s, background-color .15s;
}
/* Hide the JS-updated selection text; show the field name from data-label. */
.sbr-shop-wrap .sbr-v1-drop > .selected { font-size: 0; }
.sbr-shop-wrap .sbr-v1-drop > .selected::before {
	content: attr(data-label);
	font-size: 13.5px;
}
/* Active (a selection is made): accent ring + count badge from data-count. */
.sbr-shop-wrap .sbr-v1-drop > .selected[data-count] {
	border-color: var(--shop-filter, var(--shop-accent, #9e1e82));
	background-color: color-mix(in srgb, var(--shop-filter, var(--shop-accent, #9e1e82)) 6%, #fff);
	color: var(--v1-ink);
}
.sbr-shop-wrap .sbr-v1-drop > .selected[data-count]::after {
	content: attr(data-count);
	font-size: 11px;
	font-weight: 800;
	line-height: 18px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--shop-filter, var(--shop-accent, #9e1e82));
	color: #fff;
	text-align: center;
	margin-left: 2px;
}
.sbr-shop-wrap .sbr-v1-drop.is-open > .selected,
.sbr-shop-wrap .sbr-v1-drop > .selected:hover { border-color: var(--shop-filter, var(--shop-accent, #9e1e82)); }
.sbr-shop-wrap .sbr-v1-drop.is-open > .selected { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%236b7877' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E"); }

/* --- dropdown popover --- */
.sbr-shop-wrap .sbr-v1-drop .options {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 40;
	min-width: 234px;
	max-height: 340px;
	overflow-y: auto;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--v1-line);
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(20, 40, 40, .18);
}
.sbr-shop-wrap .sbr-v1-drop .options li {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px 10px;
	border-radius: 8px;
	font-family: var(--v1-ui);
	font-weight: 500;
	font-size: 13.5px;
	color: var(--v1-ink2);
	cursor: pointer;
	list-style: none;
}
.sbr-shop-wrap .sbr-v1-drop .options li:hover { background: #f5f7f6; }

/* checkbox marker (Category multi-select uses .cat-check; others get one too) */
.sbr-shop-wrap #categorySelect .options li .cat-check,
.sbr-shop-wrap #productSelect .options li::before,
.sbr-shop-wrap #concernSelect .options li::before {
	content: '';
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border: 2px solid #cfd6d5;
	background: #fff;
	display: inline-flex;
}
/* Category + Concern = square check (both multi-select); Discount = round radio (single). */
.sbr-shop-wrap #categorySelect .options li .cat-check,
.sbr-shop-wrap #concernSelect .options li::before { border-radius: 6px; }
.sbr-shop-wrap #productSelect .options li::before { border-radius: 50%; }

/* Checked: Category + Concern fill with accent + a checkmark. */
.sbr-shop-wrap #categorySelect .options li.cat-selected .cat-check,
.sbr-shop-wrap #concernSelect .options li.is-on::before {
	border-color: var(--shop-filter, var(--shop-accent, #9e1e82));
	background: var(--shop-filter, var(--shop-accent, #9e1e82));
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
.sbr-shop-wrap #categorySelect .options li.cat-selected,
.sbr-shop-wrap #productSelect .options li.is-on,
.sbr-shop-wrap #concernSelect .options li.is-on {
	font-weight: 700;
	color: var(--v1-ink);
}
/* Discount = single-select round radio fill. */
.sbr-shop-wrap #productSelect .options li.is-on::before {
	border-color: var(--shop-filter, var(--shop-accent, #9e1e82));
	border-width: 5px;
}

/* --- result count --- */
.sbr-shop-wrap .sbr-shop-count {
	font-family: var(--v1-ui);
	font-weight: 600;
	font-size: 13px;
	color: var(--v1-slate);
	white-space: nowrap;
}
.sbr-shop-wrap .sbr-shop-count b { color: var(--v1-ink); font-weight: 800; }

/* --- Sort menu --- */
.sbr-shop-wrap .sbr-v1-sort { position: relative; }
.sbr-shop-wrap .sbr-v1-sort > .selected {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	border: 1.5px solid var(--v1-line);
	border-radius: 999px;
	background: #fff;
	padding: 10px 34px 10px 14px;
	font-family: var(--v1-ui);
	font-weight: 700;
	font-size: 13.5px;
	color: var(--v1-ink2);
	white-space: nowrap;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%236b7877' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}
.sbr-shop-wrap .sbr-v1-sort > .selected::before {
	content: 'Sort:';
	color: var(--v1-slate);
	font-weight: 600;
	margin-right: 1px;
}
.sbr-shop-wrap .sbr-v1-sort.is-open > .selected,
.sbr-shop-wrap .sbr-v1-sort > .selected:hover { border-color: var(--shop-filter, var(--shop-accent, #9e1e82)); }
.sbr-shop-wrap .sbr-v1-sort .options {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: auto;
	z-index: 40;
	min-width: 210px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--v1-line);
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(20, 40, 40, .18);
}
.sbr-shop-wrap .sbr-v1-sort .options li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 10px;
	border-radius: 8px;
	font-family: var(--v1-ui);
	font-weight: 500;
	font-size: 13px;
	color: var(--v1-ink2);
	cursor: pointer;
	list-style: none;
}
.sbr-shop-wrap .sbr-v1-sort .options li:hover { background: #f5f7f6; }
.sbr-shop-wrap .sbr-v1-sort .options li.is-on {
	font-weight: 700;
	color: var(--v1-ink);
	background: color-mix(in srgb, var(--shop-filter, var(--shop-accent, #9e1e82)) 5%, #fff);
}
.sbr-shop-wrap .sbr-v1-sort .options li.is-on::after {
	content: '';
	width: 14px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239e1e82' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* --- Reset (V1: icon + label, accent when filters active, dimmed otherwise) --- */
.sbr-shop-wrap .sbr-v1-reset {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	font-family: var(--v1-ui);
	font-weight: 700;
	font-size: 13px;
	padding: 8px 4px;
	/* Idle (no active filters): dimmed + non-interactive, like the design's
	   disabled state. The .is-on class (toggled in shop-filters.js when any
	   category/concern/discount is active) lights it up. */
	/* !important + the legacy #resetDropdowns rule (sale-products-styles-top.css)
	   sets color:#39f + underline at ID specificity; override both. */
	color: var(--v1-faint) !important;
	opacity: 0.55;
	cursor: default;
	pointer-events: none;
	text-decoration: none !important;
	padding: 8px 4px !important;
	transition: color .15s, opacity .15s;
}
.sbr-shop-wrap .sbr-v1-reset span { text-decoration: none; }
.sbr-shop-wrap .sbr-v1-reset svg { display: block; }
.sbr-shop-wrap .sbr-v1-reset.is-on {
	color: var(--shop-filter, var(--shop-accent, #9e1e82)) !important;
	opacity: 1;
	cursor: pointer;
	pointer-events: auto;
}

/* ====================== MOBILE SPLIT TOOLS ====================== */
.sbr-v1-mobtools { display: none; }
.sbr-v1-mobbtn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	border: 1.5px solid var(--v1-line);
	border-radius: 12px;
	padding: 13px;
	font-family: var(--v1-ui);
	font-weight: 700;
	font-size: 14px;
	color: var(--v1-ink);
	cursor: pointer;
}
.sbr-v1-mobbtn svg { color: var(--v1-slate); }
.sbr-v1-mobbtn.is-active { border-color: var(--shop-filter, var(--shop-accent, #9e1e82)); }
.sbr-v1-mobbtn.is-active svg { color: var(--shop-filter, var(--shop-accent, #9e1e82)); }
.sbr-v1-mobbtn__badge[hidden] { display: none; }
.sbr-v1-mobbtn__badge {
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--shop-filter, var(--shop-accent, #9e1e82));
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ====================== CONCERN CHIPS (override base) ====================== */
/* Outlined pills with a Lucide icon. Desktop: wrap. Mobile: horizontal rail. */
.sbr-shop-wrap .sbr-v1-concerns {
	position: relative;
	left: -20px;
	max-width: 1330px;
	margin: 16px auto 4px;
	padding: 0;
}
.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concerns__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 8px;
}
.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concern {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	margin: 0;
	padding: 8px 13px;
	border: 1.5px solid var(--v1-line);
	border-radius: 999px;
	background: #fff;
	color: var(--v1-ink2);
	font-family: var(--v1-ui);
	font-weight: 700;
	font-size: 12.5px;
	line-height: 1.2;
	cursor: pointer;
	transition: border-color .15s, background-color .15s, color .15s;
	-webkit-appearance: none;
	appearance: none;
}
.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concern__icon { color: var(--shop-filter, var(--shop-accent, #9e1e82)); }
.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concern:hover { border-color: var(--shop-filter, var(--shop-accent, #9e1e82)); }
.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concern.is-active {
	background: var(--shop-filter, var(--shop-accent, #9e1e82));
	border-color: var(--shop-filter, var(--shop-accent, #9e1e82));
	color: #fff;
}
.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concern.is-active .sbr-shop-concern__icon { color: #fff; }

/* ====================== BOTTOM SHEETS (mobile) ====================== */
.sbr-v1-sheet { display: none; }
body.sbr-v1-sheet-lock { overflow: hidden; }
/* The sitewide "Available discounts" floating tab would poke through an open
   sheet — hide it for the duration. */
body.sbr-v1-sheet-lock .floting-geha-button,
body.sbr-v1-sheet-lock .have-discount-side-floating-button { display: none !important; }

/* The same root-level fixed chrome that paints over the package popups also
   paints over this bottom sheet: the sheet is stacking-capped by an ancestor
   context, so its z-index (2147483000) can't beat the mobile bottom nav
   (#main-navigation-mobile, z 9999999) — which sits at the viewport bottom and
   covers the sheet's Clear / Show-products buttons — nor the chat launcher
   (#launcher) or the sitewide sale banner (.saleParentWrapper). Hide them while
   the sheet is open, exactly as the popups do (see shop.css "FULL-SCREEN POPUP
   CLEARANCE"); the JS clears the lock on close / resize-to-desktop, restoring
   them. Scoped to the sheet's ≤991px range (it can't open above that). */
@media (max-width: 991px) {
	body.sbr-v1-sheet-lock #main-navigation-mobile,
	body.sbr-v1-sheet-lock #launcher,
	body.sbr-v1-sheet-lock .saleParentWrapper { display: none !important; }
}

@media (max-width: 991px) {
	/* Banner: full-bleed solid band, centered text. Match the lander mobile
	   banner band (.pageheaderTop ≈ 185px). */
	.sbr-shop-wrap .sbr-v1-banner { min-height: 185px; text-align: center; }
	.sbr-v1-banner__inner { padding: 26px 22px; left: 0; }
	/* Drop the desktop 1330 column + 20px nudge on mobile — the list is near
	   full-width, so the filter tools / banner / chips just use a small side gutter. */
	.sbr-shop-wrap .sbr-v1-header .container.sbr-v1 { padding-left: 16px; padding-right: 16px; left: 0; }
	.sbr-v1-banner__text { margin: 0 auto; max-width: 100%; }
	.sbr-v1-banner.has-media .sbr-v1-banner__text { max-width: 100%; }
	.sbr-v1-banner__media { display: none; }
	.sbr-v1-banner .sbr-shop-logo { margin: 0 auto 12px; }
	.sbr-v1-banner__title { font-size: 26px; letter-spacing: -.8px; }
	.sbr-v1-banner__sub { font-size: 13.5px; margin: 10px auto 0; max-width: 320px; }

	/* Hide the desktop pill bar; show the split Filters | Sort buttons. */
	.sbr-shop-wrap .sbr-v1-bar { display: none; }
	.sbr-v1-mobtools {
		display: flex;
		gap: 10px;
		margin-top: 14px;
	}
	/* Sticky Filters | Sort band on scroll (mirrors the desktop sticky bar).
	   shop-filters.js pins this row to the header on scroll; the concern chips are
	   NOT pinned — they scroll up under this solid band. JS sets `top` = header
	   height and shows a placeholder so the flow doesn't jump. */
	.sbr-v1-mobtools.is-stuck {
		position: fixed;
		left: 0;
		right: 0;
		margin: 0;
		z-index: 200;
		padding: 10px 16px;
		background: #fff;
		box-shadow: 0 5px 16px rgba(20, 40, 40, .12);
	}

	/* Concern chips → horizontal scroll rail. */
	.sbr-shop-wrap .sbr-v1-concerns { padding: 0 16px; left: 0; }
	.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concerns__grid {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.sbr-shop-wrap .sbr-v1-concerns .sbr-shop-concerns__grid::-webkit-scrollbar { display: none; }

	/* Sheet shell. */
	.sbr-v1-sheet.is-open { display: block; position: fixed; inset: 0; z-index: 2147483000; }
	.sbr-v1-sheet__scrim { position: fixed; inset: 0; background: rgba(20, 30, 30, .45); animation: sbrV1Fade .2s ease; }
	.sbr-v1-sheet__panel {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		max-height: 86%;
		display: flex;
		flex-direction: column;
		background: #fff;
		border-radius: 22px 22px 0 0;
		box-shadow: 0 -10px 40px rgba(20, 40, 40, .3);
		animation: sbrV1Up .28s cubic-bezier(.16, 1, .3, 1);
	}
	.sbr-v1-sheet__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 18px;
		border-bottom: 1px solid var(--v1-line);
	}
	.sbr-v1-sheet__title { font-family: var(--v1-disp); font-weight: 700; font-size: 18px; color: var(--v1-ink); }
	.sbr-v1-sheet__x {
		border: 0;
		background: #f0f2f1;
		border-radius: 999px;
		width: 30px;
		height: 30px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		color: var(--v1-ink2);
	}
	.sbr-v1-sheet__body { padding: 6px 18px 14px; overflow-y: auto; }
	.sbr-v1-sheet__foot {
		display: flex;
		gap: 10px;
		padding: 12px 18px;
		border-top: 1px solid var(--v1-line);
	}
	.sbr-v1-sheet__clear {
		flex: 0 0 auto;
		background: #f0f2f1;
		border: 0;
		border-radius: 12px;
		padding: 14px 18px;
		font-family: var(--v1-ui);
		font-weight: 700;
		font-size: 14px;
		color: var(--v1-ink2);
		cursor: pointer;
	}
	.sbr-v1-sheet__apply {
		flex: 1;
		background: var(--shop-filter, var(--shop-accent, #9e1e82));
		border: 0;
		border-radius: 12px;
		padding: 14px;
		font-family: var(--v1-ui);
		font-weight: 800;
		font-size: 14.5px;
		color: #fff;
		cursor: pointer;
	}

	/* Inside the sheet the custom-selects become always-open expanded sections.
	   The shared widget bakes in absolute/float/transform positioning all over;
	   force the relocated controls + descendants into clean normal flow. */
	.sbr-v1-sheet__body .custom-select,
	.sbr-v1-sheet__body .custom-select * {
		position: static !important;
		float: none !important;
		transform: none !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		max-height: none !important;
		height: auto !important;
	}
	.sbr-v1-sheet__body .custom-select { display: block; width: 100%; min-width: 0; margin: 0; clear: both; }
	/* The blanket height reset above flattens the fixed-size checkbox marker —
	   re-assert it (radios use ::before pseudos, unaffected by the * rule). */
	.sbr-v1-sheet__body #categorySelect .options li .cat-check { width: 18px !important; height: 18px !important; }
	.sbr-v1-sheet__body .custom-select > .selected {
		font-size: 0;
		display: block;
		text-align: left;
		border: 0;
		background: none;
		padding: 14px 4px 4px;
		pointer-events: none;
	}
	.sbr-v1-sheet__body .custom-select > .selected::before {
		content: attr(data-label);
		font-family: var(--v1-ui);
		font-weight: 800;
		font-size: 10.5px;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: var(--v1-faint);
	}
	/* No count badge inside the sheet: the .selected here is a section LABEL, not
	   the desktop pill, so the data-count pill is redundant. The plain ::after kill
	   is out-specified by the .sbr-v1-drop > .selected[data-count]::after badge
	   rule (0,4,1 vs 0,3,1), so match [data-count] too and force it off. */
	.sbr-v1-sheet__body .custom-select > .selected::after,
	.sbr-v1-sheet__body .custom-select > .selected[data-count]::after { content: none !important; }
	.sbr-v1-sheet__body .custom-select .options {
		position: static !important;
		display: block !important;
		float: none !important;
		width: 100% !important;
		min-width: 0;
		max-height: none !important;
		height: auto !important;
		overflow: visible !important;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
	}
	.sbr-v1-sheet__body .custom-select .options li { padding: 11px 4px; border-radius: 0; font-size: 14px; }
	.sbr-v1-sheet__body #sortSelect .options li { justify-content: flex-start; gap: 12px; }
	.sbr-v1-sheet__body #sortSelect .options li::before {
		content: '';
		width: 19px;
		height: 19px;
		border-radius: 50%;
		border: 2px solid #cfd6d5;
		flex: 0 0 auto;
	}
	.sbr-v1-sheet__body #sortSelect .options li.is-on::before { border: 6px solid var(--shop-filter, var(--shop-accent, #9e1e82)); }
	.sbr-v1-sheet__body #sortSelect .options li.is-on::after { content: none; }
}

@keyframes sbrV1Up { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes sbrV1Fade { from { opacity: 0; } to { opacity: 1; } }

/* Desktop: the mobile-only chrome stays hidden. */
@media (min-width: 992px) {
	.sbr-v1-mobtools { display: none !important; }
	.sbr-v1-sheet { display: none !important; }
}

/* Fix horizontal page scroll on mobile. The shared footer's
   #footer-base-logo-section-wrap is a Foundation column MISSING the .columns
   class, so it has no side padding to absorb its child .row's margin:0 -15px —
   the row then spills 15px past the viewport and the page scrolls sideways.
   Contain that row (shop page only; this file is enqueued only on /shop). */
@media (max-width: 767px) {
	body.woocommerce-shop #footer-base-logo-section-wrap > .row { margin-left: 0; margin-right: 0; }
}
