/*
  shr-archive-2026.css — WooCommerce archive ("s2u 2026") page components.
  Loaded only when shr_is_archive_v2_enabled() is true, on shop/product_cat/
  product_tag/pwb-brand (functions.php shr_enqueue_shop_css). Legacy
  shr-shop.css keeps styling these archives unmodified while the flag is off.
  Structural primitives (.s2u-container/-section/-kicker/-rule/-h2,
  .s2u-blueprint/-corner, .s2u-lift, .s2u-btn, .s2u-reveal/-stagger) come from
  shr-sections.css/shr-shared.css — only genuinely new bits live here, all
  scoped under .shr-arc*. Product price/add-to-cart markup is core WooCommerce
  output (get_price_html() / woocommerce_template_loop_add_to_cart()) restyled
  via its own classes (.price, .button, .add_to_cart_button, etc.) rather than
  reimplemented, so cart/AJAX behaviour keeps working unmodified.
*/

.shr-arc { background: var(--s2u-bg); }

/* ═══════════ Breadcrumb ═══════════ */
.shr-arc-crumb { border-bottom: 1px solid var(--s2u-divider); padding: 14px clamp(16px, 4vw, 48px); }
.shr-arc-crumb .s2u-container { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--s2u-neutral-600); }
.shr-arc-crumb a { color: var(--s2u-neutral-600); text-decoration: none; }
.shr-arc-crumb a:hover { color: var(--s2u-red); }
.shr-arc-crumb__current { color: var(--s2u-text); font-weight: 600; }

/* ═══════════ Archive header ═══════════ */
.shr-arc-header { padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 48px) 0; }
.shr-arc-header__grid { display: flex; gap: clamp(20px, 3vw, 40px); align-items: flex-start; flex-wrap: wrap; }
.shr-arc-header__logo {
	position: relative; flex: none; width: 110px; height: 110px;
	display: flex; align-items: center; justify-content: center;
	background: #fff; padding: 12px;
}
.shr-arc-header__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.shr-arc-header__text { flex: 1; min-width: 280px; }
.shr-arc-header__h1 {
	font-family: var(--s2u-font-heading); font-weight: 600;
	font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: .01em;
	text-transform: uppercase; color: var(--s2u-text); margin: 0 0 12px;
}
.shr-arc-header__intro { font-size: 15px; line-height: 1.6; color: var(--s2u-neutral-700); max-width: 72ch; }
.shr-arc-header__intro p { margin: 0 0 10px; }
.shr-arc-header__intro p:last-child { margin-bottom: 0; }

/* ═══════════ Quick-nav ═══════════
   Each of the 3 groups (category/brand/tag) is its own independently
   collapsible <details> — the one matching the archive type being viewed
   starts open server-side (see $quick_nav_primary in the template), the
   other two start collapsed with their own Show/Hide toggle. */
.shr-arc-quicknav { padding: clamp(20px, 3vw, 32px) clamp(16px, 4vw, 48px); }
.shr-arc-quicknav__card { border: 1px solid var(--s2u-divider); background: #fff; padding: 0; }
.shr-arc-quicknav__head {
	display: flex; align-items: baseline; gap: 10px 14px; flex-wrap: wrap;
	padding: 10px 16px; border-bottom: 1px solid var(--s2u-divider);
}
.shr-arc-quicknav__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--s2u-text); }
.shr-arc-quicknav__sub { font-size: 12px; color: var(--s2u-neutral-500); }
.shr-arc-quicknav__current { font-size: 12.5px; color: var(--s2u-neutral-600); margin-left: auto; }
.shr-arc-quicknav__group + .shr-arc-quicknav__group { border-top: 1px solid var(--s2u-divider); }
.shr-arc-quicknav__group-summary {
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	padding: 12px 16px; cursor: pointer; list-style: none; user-select: none;
}
.shr-arc-quicknav__group-summary::-webkit-details-marker { display: none; }
.shr-arc-quicknav__group-summary::marker { display: none; }
.shr-arc-quicknav__group-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--s2u-neutral-500); }
.shr-arc-quicknav__group[open] > .shr-arc-quicknav__group-summary .shr-arc-quicknav__group-label { color: var(--s2u-text); }
.shr-arc-quicknav__toggle {
	display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700;
	color: var(--s2u-accent-700); letter-spacing: .04em; text-transform: uppercase;
}
.shr-arc-quicknav__toggle::after { content: 'Hide \25B2'; }
.shr-arc-quicknav__group:not([open]) .shr-arc-quicknav__toggle::after { content: 'Show \25BC'; }
.shr-arc-quicknav__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 14px; }
.shr-arc-chip {
	position: relative; display: inline-flex; align-items: center;
	padding: 6px 14px; font-size: 12.5px; font-weight: 600;
	background: transparent; color: var(--s2u-neutral-700); border: 1px solid var(--s2u-divider);
	text-decoration: none; transition: border-color .16s ease, color .16s ease;
}
.shr-arc-chip__badge {
	position: absolute; top: -7px; left: 8px;
	font-size: 8px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	line-height: 1; color: #fff; background: var(--s2u-red); padding: 2px 5px;
}
.shr-arc-chip:hover { border-color: var(--s2u-red); color: var(--s2u-red); }
.shr-arc-chip--current { background: var(--s2u-text); border-color: var(--s2u-text); color: #fff; }
.shr-arc-chip--current:hover { border-color: var(--s2u-text); color: #fff; }

/* ═══════════ Toolbar ═══════════ */
.shr-arc-grid-section { padding: 0 clamp(16px, 4vw, 48px) clamp(40px, 5vw, 64px); }
.shr-arc-toolbar {
	display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
	border-top: 2px solid var(--s2u-text); padding: 14px 0 22px;
}
.shr-arc-toolbar__count { font-size: 13.5px; color: var(--s2u-neutral-600); font-variant-numeric: tabular-nums; }
.shr-arc-toolbar__sort { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; }
.shr-arc-toolbar__sort-label { color: var(--s2u-neutral-600); letter-spacing: .04em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.shr-arc-toolbar__sort .woocommerce-ordering { margin: 0; }
.shr-arc-toolbar__sort select.orderby {
	border: 1px solid var(--s2u-neutral-400); background: #fff; padding: 8px 12px;
	font-family: var(--s2u-font-body); font-size: 13.5px; color: var(--s2u-text);
	border-radius: 0; cursor: pointer;
}

/* ═══════════ Product grid ═══════════ */
.shr-arc-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 26px; }

.shr-arc-card {
	position: relative; display: flex; flex-direction: column; gap: 11px;
	border: 1px solid var(--s2u-divider); background: #fff; padding: 18px;
}
.shr-arc-card__badge {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	padding: 3px 9px; color: #fff;
}
.shr-arc-card__badge--sale { background: var(--s2u-red); }
.shr-arc-card__badge--oos { background: var(--s2u-neutral-500); }

.shr-arc-card__row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.shr-arc-card__brand { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--s2u-accent-700); }
.shr-arc-card__cut { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--s2u-neutral-600); }

.shr-arc-card__img { display: flex; align-items: center; justify-content: center; width: 100%; height: 180px; }
.shr-arc-card__img img { max-width: 100%; max-height: 180px; width: auto; height: auto; object-fit: contain; }
.shr-arc-card__img--faded { opacity: .55; }

.shr-arc-card__title {
	font-family: var(--s2u-font-heading); font-weight: 600; font-size: 19px; line-height: 1.15;
	letter-spacing: .01em; text-transform: uppercase; color: var(--s2u-text); text-decoration: none; flex: 1;
}
.shr-arc-card__title:hover { color: var(--s2u-red); }

.shr-arc-card__price { min-height: 26px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; font-variant-numeric: tabular-nums; }
.shr-arc-card__price .price { font-family: var(--s2u-font-heading); font-weight: 600; font-size: 21px; color: var(--s2u-text); }
.shr-arc-card__price .price del { font-family: var(--s2u-font-body); font-weight: 400; font-size: 13px; color: var(--s2u-neutral-500); opacity: 1; text-decoration: line-through; margin-right: 4px; }
.shr-arc-card__price .price ins { text-decoration: none; color: var(--s2u-red); }
.shr-arc-card__price-cfp { font-family: var(--s2u-font-heading); font-weight: 600; font-size: 18px; color: var(--s2u-navy2); text-transform: uppercase; letter-spacing: .02em; }

.shr-arc-card__cta { border-top: 1px solid var(--s2u-divider); padding-top: 10px; }
.shr-arc-card__cta .button,
.shr-arc-card__cta-link {
	display: flex; justify-content: space-between; align-items: center;
	width: 100%; font-size: 13px; font-weight: 600; letter-spacing: .04em;
	color: var(--s2u-accent-700); background: none; border: none; padding: 0;
	text-decoration: none; box-shadow: none;
}
.shr-arc-card__cta .button::after,
.shr-arc-card__cta-link::after { content: '\2192'; margin-left: 8px; }
.shr-arc-card__cta .button:hover,
.shr-arc-card__cta-link:hover { color: var(--s2u-red); }
.shr-arc-card__cta .button.disabled,
.shr-arc-card__cta .button.loading { color: var(--s2u-neutral-500); }
.shr-arc-card__cta-link--quote { color: var(--s2u-navy2); }
.shr-arc-card__cta-link--quote:hover { color: var(--s2u-red); }

/* ═══════════ Pagination (core WooCommerce markup) ═══════════
   Storefront's own style.css ships pagination rules with an extra `li`
   ancestor in the selector (e.g. `.woocommerce-pagination .page-numbers li
   .page-numbers.current`), plus a `<style>` block WooCommerce/Storefront
   injects inline in <head> for the same selector — both tie or beat a
   plain 3-class selector on specificity. Every rule below deliberately
   includes `ul.page-numbers li` in the chain so it always wins outright
   rather than depending on cascade/source order. */
.shr-arc-pagination { margin-top: 36px; }
.shr-arc-pagination nav.woocommerce-pagination {
	/* Something floats nav.woocommerce-pagination right (couldn't trace the
	   exact source — not in any enumerable stylesheet, possibly a legacy
	   Storefront/WooCommerce float-layout rule), which shrinks it to
	   content width and defeats text-align centering. Force it back to a
	   normal centered block. */
	float: none !important;
	display: block;
	width: 100%;
	text-align: center;
}
.shr-arc-pagination ul.page-numbers {
	list-style: none; display: inline-flex; gap: 6px; margin: 0; padding: 0; font-variant-numeric: tabular-nums;
}
.shr-arc-pagination ul.page-numbers li { display: inline-flex; }
.shr-arc-pagination ul.page-numbers li .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 10px;
	border: 1px solid var(--s2u-neutral-400); background: #fff; color: var(--s2u-text);
	font-size: 14px; font-weight: 600; text-decoration: none; line-height: 1;
}
.shr-arc-pagination ul.page-numbers li .page-numbers:hover { border-color: var(--s2u-red); color: var(--s2u-red); background: #fff; }
.shr-arc-pagination ul.page-numbers li .page-numbers.current { background: var(--s2u-text); border-color: var(--s2u-text); color: #fff; }
.shr-arc-pagination ul.page-numbers li .page-numbers.dots { border-color: transparent; color: var(--s2u-neutral-500); background: transparent; }

/* ═══════════ Empty state ═══════════ */
.shr-arc-empty { position: relative; padding: clamp(40px, 6vw, 72px) 24px; text-align: center; background: #fff; }
.shr-arc-empty__title {
	font-family: var(--s2u-font-heading); font-weight: 600; font-size: clamp(24px, 3vw, 32px);
	letter-spacing: .02em; text-transform: uppercase; color: var(--s2u-text); margin-bottom: 10px;
}
.shr-arc-empty__text { font-size: 14.5px; color: var(--s2u-neutral-700); margin: 0 auto 22px; max-width: 52ch; }
.shr-arc-empty__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═══════════ Bottom SEO block ═══════════ */
.shr-arc-seo { padding: clamp(32px, 4vw, 48px) clamp(16px, 4vw, 48px) clamp(48px, 6vw, 72px); border-top: 1px solid var(--s2u-divider); }
.shr-arc-seo__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(24px, 4vw, 56px); align-items: start; }
.shr-arc-seo__h2 { font-family: var(--s2u-font-heading); font-weight: 600; font-size: 24px; letter-spacing: .02em; text-transform: uppercase; color: var(--s2u-text); margin: 0 0 12px; }
.shr-arc-seo__copy p { font-size: 14.5px; line-height: 1.65; color: var(--s2u-neutral-700); margin: 0 0 12px; }
.shr-arc-seo__copy p:last-child { margin-bottom: 0; }

/* bottom_description content: authors paste one of two hand-built blocks —
   a native <details>/<summary> FAQ accordion, or the Fellowes promo grid.
   Both already existed pre-2026 (shr-shop.css §13); re-skinned here with
   s2u tokens instead of the legacy orange (#cc5500) accent. */
.shr-arc-seo__copy .faq-section { margin-top: 8px; }
.shr-arc-seo__copy .faq-section h2 {
	font-family: var(--s2u-font-heading); font-weight: 600; font-size: 19px;
	letter-spacing: .02em; text-transform: uppercase; color: var(--s2u-text);
	margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--s2u-red);
}
.shr-arc-seo__copy .faq-section details { margin-bottom: 8px; border: 1px solid var(--s2u-divider); background: #fff; }
.shr-arc-seo__copy .faq-section details summary {
	font-size: 14.5px; font-weight: 700; color: var(--s2u-text);
	padding: 12px 16px; cursor: pointer; list-style: none;
	display: flex; justify-content: space-between; align-items: center; gap: 12px;
	user-select: none; border-left: 3px solid transparent; transition: all .15s ease;
}
.shr-arc-seo__copy .faq-section details summary::-webkit-details-marker { display: none; }
.shr-arc-seo__copy .faq-section details summary::marker { display: none; }
.shr-arc-seo__copy .faq-section details summary::after {
	content: '+'; font-size: 18px; font-weight: 400; color: var(--s2u-accent-700); flex-shrink: 0; line-height: 1;
}
.shr-arc-seo__copy .faq-section details[open] summary::after { content: '\2212'; }
.shr-arc-seo__copy .faq-section details[open] summary,
.shr-arc-seo__copy .faq-section details summary:hover { background: var(--s2u-accent-100); border-left-color: var(--s2u-accent-700); color: var(--s2u-accent-700); }
.shr-arc-seo__copy .faq-section details .faq-body { font-size: 14px; line-height: 1.7; color: var(--s2u-neutral-700); padding: 12px 16px; border-top: 1px solid var(--s2u-divider); }
.shr-arc-seo__copy .faq-section details .faq-body p { margin: 0 0 8px; }
.shr-arc-seo__copy .faq-section details .faq-body p:last-child { margin-bottom: 0; }
.shr-arc-faq-toggle {
	margin-top: 6px;
	/* .s2u-btn--ghost (white text/border) is meant for dark hero/CTA
	   sections — invisible on this light card, so override explicitly
	   rather than use that modifier. */
	background: transparent; border-color: var(--s2u-neutral-400); color: var(--s2u-text);
}
.shr-arc-faq-toggle:hover { border-color: var(--s2u-red); color: var(--s2u-red); background: transparent; }

.shr-arc-seo__copy .fellowes-promo { border: 1px solid var(--s2u-divider); background: #fff; padding: 20px 24px 16px; }
.shr-arc-seo__copy .fellowes-promo__heading {
	font-family: var(--s2u-font-heading); font-weight: 600; font-size: 19px;
	letter-spacing: .02em; text-transform: uppercase; color: var(--s2u-text);
	margin: 0 0 4px; padding-bottom: 10px; border-bottom: 2px solid var(--s2u-red);
}
.shr-arc-seo__copy .fellowes-promo__subheading { font-size: 13px; color: var(--s2u-neutral-600); margin: 0 0 16px; }
.shr-arc-seo__copy .fellowes-promo-cta { display: inline-block; margin: 0 0 16px; font-size: 13.5px; font-weight: 700; color: var(--s2u-red); text-decoration: none; }
.shr-arc-seo__copy .fellowes-promo-cta:hover { text-decoration: underline; }
.shr-arc-seo__copy .fellowes-promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 8px; }
.shr-arc-seo__copy .fellowes-promo-card { border: 1px solid var(--s2u-divider); background: var(--s2u-bg); padding: 12px 14px; }
.shr-arc-seo__copy .fellowes-promo-card h4 { font-size: 13.5px; font-weight: 700; color: var(--s2u-text); margin: 0 0 6px; }
.shr-arc-seo__copy .fellowes-promo-card .fellowes-promo-specs { font-size: 11.5px; color: var(--s2u-neutral-600); line-height: 1.5; margin: 0 0 8px; }
.shr-arc-seo__copy .fellowes-promo-card .fellowes-promo-price { font-size: 15px; font-weight: 700; color: var(--s2u-red); margin: 0 0 4px; }
.shr-arc-seo__copy .fellowes-promo-card .fellowes-promo-foc { font-size: 11.5px; font-weight: 600; color: var(--s2u-neutral-700); margin: 0; }
.shr-arc-seo__copy .fellowes-promo-disclaimer { font-size: 11.5px; color: var(--s2u-neutral-500); margin-top: 8px; }
@media (max-width: 480px) {
	.shr-arc-seo__copy .fellowes-promo-grid { grid-template-columns: 1fr; }
}

.shr-arc-seo__advice {
	border: 1px solid var(--s2u-divider); background: #fff; padding: 20px 24px;
	/* NOT sticky: tried position:sticky here, but body/#page on this site
	   has overflow:hidden auto (likely a horizontal-scroll-bug guard
	   elsewhere), which breaks sticky's scroll-anchor calculation site-wide
	   — the card vanished instead of sticking. Long-content imbalance is
	   instead handled by collapsing the FAQ itself (see .faq-section
	   details:nth-of-type(n+4) below) rather than chasing the reader. */
}
.shr-arc-seo__advice-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--s2u-text); margin-bottom: 14px; }
.shr-arc-seo__advice p { font-size: 14px; line-height: 1.6; color: var(--s2u-neutral-700); margin: 0 0 16px; }

/* ═══════════ Responsive ═══════════ */
@media (max-width: 700px) {
	.shr-arc-toolbar { align-items: flex-start; }
	.shr-arc-card__img { height: 150px; }
}
