/* Reachsky — white industrial shell
   Refs: jouav.com (hero/header) + uavmodel.com (commerce white)
   Brand color only on CTAs, prices, and accent text */

:root {
  --bg: #ffffff;
  --surface: #f5f6f8;
  --surface-2: #eef0f3;
  --brand: #0b3a6e;
  --brand-hover: #145a9e;
  --accent: #3d8fd1;
  --accent-soft: rgba(11, 58, 110, 0.08);
  --price: #c4301c;
  --text: #151515;
  --text-muted: #5c6670;
  --line: #e6e8ec;
  --line-strong: #d5dae0;
  --success: #2f9d6a;
  --quote: #0b3a6e;
  --font-display: "Syne", sans-serif;
  --font-ui: "Manrope", "Source Sans 3", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --radius: 2px;
  /* Edge breathing room: floor ~22px; grows with viewport; floats can add --float-safe */
  --gutter: clamp(1.35rem, 4.2vw, 2.75rem);
  --float-safe: 0px;
  --max: 1600px;
  --header-h: 88px;
  --shadow: 0 12px 36px rgba(21, 21, 21, 0.08);
  --header-fg: #ffffff;
  --header-line: rgba(255, 255, 255, 0.22);
  --shell-width: min(var(--max), calc(100% - (var(--gutter) * 2) - var(--float-safe)));
  --shell-margin-left: max(var(--gutter), calc((100% - var(--max) - var(--float-safe)) / 2));
  --shell-margin-right: max(
    calc(var(--gutter) + var(--float-safe)),
    calc((100% - var(--max) - var(--float-safe)) / 2 + var(--float-safe))
  );
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: var(--shell-width);
  margin-left: var(--shell-margin-left);
  margin-right: var(--shell-margin-right);
}

.muted {
  color: var(--text-muted);
}

.visually-hidden,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* —— Header: clear over hero → frosted glass on scroll —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--header-fg);
  background: transparent;
  border-bottom: 1px solid var(--header-line);
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0.02em;
  isolation: isolate;
  transition:
    background 0.6s var(--ease),
    border-color 0.55s var(--ease),
    color 0.45s var(--ease),
    box-shadow 0.6s var(--ease),
    backdrop-filter 0.65s var(--ease),
    -webkit-backdrop-filter 0.65s var(--ease);
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  --header-fg: #121417;
  --header-line: rgba(15, 23, 32, 0.08);
  background: #ffffff;
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(15, 23, 32, 0.04);
}

.site-header.is-scrolled .nav-links a,
.site-header.is-solid .nav-links a,
.site-header.is-search-open .nav-links a,
.site-header.is-scrolled .tool-link,
.site-header.is-solid .tool-link,
.site-header.is-search-open .tool-link,
.site-header.is-scrolled .brand-mark,
.site-header.is-solid .brand-mark,
.site-header.is-search-open .brand-mark {
  opacity: 1;
}

.header-inner {
  width: var(--shell-width);
  margin-left: var(--shell-margin-left);
  margin-right: var(--shell-margin-right);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.brand-mark-logo {
  display: block;
  width: auto;
  height: clamp(1.65rem, 2.4vw, 2.05rem);
  max-width: min(11.5rem, 42vw);
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  transition: filter 0.45s var(--ease);
}

.site-header.is-scrolled .brand-mark-logo,
.site-header.is-solid .brand-mark-logo,
.site-header.is-search-open .brand-mark-logo,
.site-header.is-mega-open .brand-mark-logo {
  filter: none;
}

.nav-links {
  display: none;
  justify-content: center;
  align-items: center;
  gap: clamp(0.45rem, 1.5vw, 1.25rem);
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0.15rem;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  font-weight: 550;
  letter-spacing: 0.02em;
  opacity: 0.92;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-solid .nav-links a:hover {
  color: var(--brand);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-tools > .lang-switch,
.header-tools > .tool-link:not(.tool-quote) {
  position: relative;
}

.header-tools > .lang-switch::after,
.header-tools > .tool-link:not(.tool-quote)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 0.85em;
  background: currentColor;
  opacity: 0.28;
  transform: translateY(-50%);
  pointer-events: none;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.95rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 0.85vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.9;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.tool-link:hover {
  opacity: 1;
}

.site-header.is-scrolled .tool-link:hover,
.site-header.is-solid .tool-link:hover,
.site-header.is-search-open .tool-link:hover {
  color: var(--brand);
}

.tool-link > svg:not(.tool-caret) {
  display: block;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  opacity: 0.92;
}

.tool-caret {
  width: 0.7rem;
  height: 0.7rem;
  opacity: 0.65;
  margin-top: 0.06rem;
  flex-shrink: 0;
}

.tool-search {
  padding-inline: 0.95rem 1.05rem;
}

.tool-cart {
  position: relative;
  padding-inline: 0.95rem 1.15rem;
}

/* —— Site search panel (under header) —— */
.site-search {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 78;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.site-search[hidden] {
  display: none;
}

.site-search.is-open {
  pointer-events: auto;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, 0.42);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.site-search.is-open .site-search-backdrop {
  opacity: 1;
}

.site-search-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(15, 23, 32, 0.12);
  transform: translateY(-0.75rem);
  opacity: 0;
  transition: transform 0.38s var(--ease), opacity 0.32s var(--ease);
}

.site-search.is-open .site-search-panel {
  transform: translateY(0);
  opacity: 1;
}

.site-search-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.65rem;
  width: var(--shell-width);
  margin: 0;
  margin-left: var(--shell-margin-left);
  margin-right: var(--shell-margin-right);
  padding: 1.15rem 0 0.95rem;
  border-bottom: 1px solid var(--line);
}

.site-search-bar-icon {
  display: grid;
  place-items: center;
  color: var(--brand);
}

.site-search-input {
  width: 100%;
  min-width: 0;
  height: 2.8rem;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--text);
}

.site-search-input::placeholder {
  color: #8a93a0;
  font-weight: 400;
}

.site-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.site-search-submit {
  min-height: 2.4rem;
  padding: 0 1.05rem;
  border: 0;
  border-radius: 0.2rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}

.site-search-submit:hover {
  background: var(--brand-hover);
}

.site-search-submit:active {
  transform: scale(0.98);
}

.site-search-close {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0.2rem;
  background: #fff;
  color: #3a4450;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-search-close:hover {
  border-color: rgba(11, 58, 110, 0.35);
  color: var(--brand);
  background: rgba(11, 58, 110, 0.04);
}

.site-search-browse,
.site-search-live {
  width: var(--shell-width);
  margin: 0;
  margin-left: var(--shell-margin-left);
  margin-right: var(--shell-margin-right);
  padding: 1.35rem 0 1.65rem;
}

.site-search-browse {
  display: grid;
  gap: 1.5rem 1.75rem;
}

@media (min-width: 900px) {
  .site-search-browse {
    grid-template-columns: repeat(3, minmax(0, 0.9fr)) minmax(14rem, 1.2fr);
    align-items: start;
  }
}

.site-search-col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a8490;
}

@media (max-width: 899px) {
  .site-search-col--products {
    order: 4;
  }
}

.site-search-reco-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.site-search-reco-head h3 {
  margin: 0;
}

.site-search-reco-nav {
  display: inline-flex;
  gap: 0.3rem;
}

.site-search-reco-btn {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0.2rem;
  background: #fff;
  color: #3a4450;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-search-reco-btn:hover:not(:disabled) {
  border-color: rgba(11, 58, 110, 0.35);
  color: var(--brand);
  background: rgba(11, 58, 110, 0.04);
}

.site-search-reco-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.site-search-reco-viewport {
  overflow: hidden;
  width: 100%;
}

.site-search-reco-track {
  display: flex;
  width: 100%;
  transition: transform 0.4s var(--ease);
  will-change: transform;
}

.site-search-reco-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  min-width: 0;
}

.site-search-reco-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.site-search-reco-dot {
  width: 0.4rem;
  height: 0.4rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8d0d8;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-search-reco-dot.is-active {
  background: var(--brand);
  transform: scale(1.15);
}

.site-search-product {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  background: #fafbfc;
  color: var(--text);
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.site-search-product:hover {
  border-color: rgba(11, 58, 110, 0.28);
  background: #fff;
  color: var(--brand);
  transform: translateY(-1px);
}

.site-search-product-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eef1f4;
}

.site-search-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.site-search-product:hover .site-search-product-media img {
  transform: scale(1.04);
}

.site-search-product-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.site-search-product-kicker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a93a0;
}

.site-search-product-title {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .site-search-product,
  .site-search-product-media img,
  .site-search-reco-track,
  .site-search-reco-dot {
    transition: none;
  }

  .site-search-product:hover {
    transform: none;
  }
}

.site-search-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-search-col li + li {
  margin-top: 0.15rem;
}

.site-search-col:not(.site-search-col--products) a {
  display: block;
  padding: 0.42rem 0;
  border-bottom: 1px solid transparent;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.site-search-col:not(.site-search-col--products) a:hover {
  color: var(--brand);
  border-bottom-color: rgba(11, 58, 110, 0.2);
  padding-left: 0.2rem;
}

.site-search-live[hidden],
.site-search-browse[hidden] {
  display: none;
}

.site-search-live-head {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a8490;
}

.site-search-live-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.site-search-live-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.site-search-live-item--product {
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
}

.site-search-live-thumb {
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: #eef1f4;
  border-radius: 0.15rem;
  flex-shrink: 0;
}

.site-search-live-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-search-live-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.site-search-live-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--price, #c4301c);
  white-space: nowrap;
  text-align: right;
}

.site-search-live-price .woocommerce-Price-amount {
  color: inherit;
}

.site-search-live-status {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-search-live-list a:hover {
  color: var(--brand);
}

.site-search-live-type {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a93a0;
}

.site-search-live-title {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-search-live-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-search-empty {
  margin: 0;
  padding: 0.5rem 0 0.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-header.is-search-open {
  --header-fg: #121417;
  --header-line: rgba(15, 23, 32, 0.08);
  background: #fff;
  box-shadow: none;
}

@media (max-width: 640px) {
  .site-search-bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .site-search-submit {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-search-backdrop,
  .site-search-panel,
  .site-search-submit,
  .site-search-col a {
    transition: none;
  }
}

.tool-cart > svg:not(.tool-caret) {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 0.2rem;
  right: 0.45rem;
  z-index: 1;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.22rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.92);
}

.site-header:not(.is-scrolled):not(.is-solid) .cart-count {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 0 0 1.5px rgba(11, 58, 110, 0.12);
}

.cart-count[hidden] {
  display: none;
}

.tool-quote {
  position: relative;
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.3rem;
  height: auto;
  padding: 0.45rem 1rem;
  margin-left: 0.9rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  opacity: 1;
  line-height: 1.2;
  box-shadow: none;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  transition:
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease),
    -webkit-backdrop-filter 0.35s var(--ease);
}

.tool-quote::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(8, 28, 52, 0.2) 0%, rgba(11, 58, 110, 0.2) 100%),
    url("../assets/images/quote-btn-bg.jpg") center / cover no-repeat;
  filter: blur(8px);
  transform: scale(1.06);
  opacity: 0;
  transition:
    filter 0.35s var(--ease),
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease);
  pointer-events: none;
}

.tool-quote > svg:not(.tool-caret) {
  position: relative;
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.95;
  flex: 0 0 auto;
}

/* Transparent header: quiet glass outline, no photo block */
.site-header:not(.is-scrolled):not(.is-solid):not(.is-search-open):not(.is-mega-open) .tool-quote {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}

.site-header:not(.is-scrolled):not(.is-solid):not(.is-search-open):not(.is-mega-open) .tool-quote::before {
  opacity: 0;
}

.site-header:not(.is-scrolled):not(.is-solid):not(.is-search-open):not(.is-mega-open) .tool-quote:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header:not(.is-scrolled):not(.is-solid):not(.is-search-open):not(.is-mega-open) .tool-quote:hover::before {
  opacity: 0.55;
  filter: none;
  inset: 0;
  transform: none;
}

/* Solid / scrolled header: previous glass + blur + 20% tint */
.site-header.is-scrolled .tool-quote,
.site-header.is-solid .tool-quote,
.site-header.is-search-open .tool-quote,
.site-header.is-mega-open .tool-quote {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(11, 58, 110, 0.2);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.site-header.is-scrolled .tool-quote::before,
.site-header.is-solid .tool-quote::before,
.site-header.is-search-open .tool-quote::before,
.site-header.is-mega-open .tool-quote::before {
  opacity: 1;
  filter: blur(8px);
  transform: scale(1.06);
}

.site-header.is-scrolled .tool-quote:hover,
.site-header.is-solid .tool-quote:hover,
.site-header.is-search-open .tool-quote:hover,
.site-header.is-mega-open .tool-quote:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(11, 58, 110, 0.2);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .tool-quote:hover::before,
.site-header.is-solid .tool-quote:hover::before,
.site-header.is-search-open .tool-quote:hover::before,
.site-header.is-mega-open .tool-quote:hover::before {
  opacity: 1;
  filter: none;
  inset: 0;
  transform: none;
}

.tool-quote:active {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .tool-quote,
  .tool-quote::before {
    transition: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .tool-quote {
    background: rgba(11, 58, 110, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .tool-quote::before {
    filter: none;
    opacity: 0.45;
  }
}

.btn:active {
  opacity: 0.92;
}

/* legacy aliases — keep footer / older markup usable */
.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.2rem;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 1rem;
  font-weight: 500;
}

.btn-header-cta {
  display: none;
}

.lang-switch {
  position: relative;
}

.lang-switch .tool-caret {
  transition: transform 0.45s var(--ease);
}

.lang-switch.is-open .tool-caret {
  transform: rotate(180deg);
}

.lang-flag {
  display: block;
  width: 1.25rem;
  height: 0.85rem;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15, 23, 32, 0.12);
}

.tool-link .lang-flag {
  width: 1.15rem;
  height: 0.78rem;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(2, minmax(7.5rem, 1fr));
  gap: 0.15rem 0.35rem;
  width: max-content;
  max-width: min(22rem, calc(100vw - 1.5rem));
  padding: 0.55rem;
  border-radius: 2px;
  background: #fff;
  border: 1px solid rgba(15, 23, 32, 0.1);
  box-shadow: 0 12px 32px rgba(15, 23, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.25rem);
  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.3s;
}

.lang-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 1.4rem;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid rgba(15, 23, 32, 0.1);
  border-top: 1px solid rgba(15, 23, 32, 0.1);
  transform: rotate(45deg);
}

.lang-switch.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button,
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #333;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
  cursor: pointer;
}

.lang-menu button:hover,
.lang-menu button.is-active,
.lang-menu a:hover,
.lang-menu a.is-active {
  color: var(--text);
  background: #f2f3f5;
}

@media (max-width: 719px) {
  .lang-menu {
    grid-template-columns: 1fr;
    right: -0.5rem;
  }
}

.menu-toggle {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.25s var(--ease), background 0.25s var(--ease);
}

.menu-toggle:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .menu-toggle:hover,
.site-header.is-solid .menu-toggle:hover {
  background: rgba(15, 23, 32, 0.06);
}

.menu-toggle-icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}

.menu-toggle-icon--close {
  position: absolute;
  opacity: 0;
  transform: rotate(-45deg) scale(0.85);
  pointer-events: none;
}

.menu-toggle.is-open .menu-toggle-icon--menu {
  opacity: 0;
  transform: rotate(45deg) scale(0.85);
}

.menu-toggle.is-open .menu-toggle-icon--close {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  :root {
    --header-h: 72px;
  }

  /* nav is display:none — drop the empty middle column or tools sit mid-row */
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .brand-mark-logo {
    height: 1.45rem;
    max-width: min(9.5rem, 48vw);
  }

  .header-tools {
    justify-self: end;
    max-width: 100%;
  }

  .header-tools > .lang-switch::after,
  .header-tools > .tool-link:not(.tool-quote)::after {
    display: none;
  }

  .tool-link {
    padding-inline: 0.5rem;
    font-size: 0.82rem;
    min-height: 2.25rem;
  }

  .tool-cart {
    padding-inline: 0.55rem 0.7rem;
  }

  .cart-count {
    top: 0.1rem;
    right: 0.2rem;
  }

  .menu-toggle {
    margin-left: 0.15rem;
  }
}

@media (max-width: 719px) {
  .lang-switch .tool-link [data-lang-label],
  .lang-switch .tool-link .tool-caret {
    display: none;
  }

  .lang-switch .tool-link {
    padding-inline: 0.4rem;
    gap: 0;
  }

  .tool-link > svg:not(.tool-caret) {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .tool-quote,
  .btn-header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .header-tools > .tool-link.tool-cart::after {
    display: block;
  }
}

@media (min-width: 1440px) {
  .nav-links a,
  .nav-trigger {
    font-size: 0.98rem;
  }

  .tool-link {
    font-size: 0.9rem;
    padding-inline: 1.05rem;
  }

  .tool-link.tool-quote {
    min-height: 2.3rem;
    padding: 0.45rem 1rem;
    font-size: 0.9rem;
    margin-left: 1.05rem;
  }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5.5rem var(--gutter) 2rem;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer nav {
  display: grid;
  gap: 0.2rem;
}

.nav-drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  letter-spacing: -0.02em;
  padding: 0.4rem 0;
}

.nav-drawer a:hover {
  color: var(--brand);
}

.drawer-links {
  display: grid;
  gap: 0.15rem;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.drawer-links > a {
  display: block;
}

.drawer-links .drawer-products {
  margin: 0.35rem 0 0.85rem;
}

.drawer-group {
  display: grid;
  gap: 0.1rem;
  margin: 0.55rem 0 0.25rem;
}

.drawer-group > strong {
  display: block;
  margin: 0 0 0.2rem;
  padding: 0.4rem 0 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
  color: var(--text);
}

.drawer-group a {
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 3.8vw, 1.25rem);
  font-weight: 550;
  letter-spacing: -0.01em;
  padding: 0.35rem 0 0.35rem 0.15rem;
  color: var(--text-muted);
}

.drawer-group a:hover {
  color: var(--brand);
}

.drawer-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
  margin: 0.15rem 0 1.1rem;
  padding: 0.35rem 0 0.9rem;
  border-bottom: 1px solid var(--line);
}

.drawer-cats a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 0.35rem 0;
}

.drawer-cats a:hover {
  color: var(--brand);
}

.drawer-label {
  display: block;
  margin: 0.85rem 0 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a939e;
}

/* Mobile Products accordion */
.nav-drawer {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.drawer-products {
  margin: 0.2rem 0 1rem;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.drawer-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.4rem;
  border-bottom: 1px solid var(--line);
}

.drawer-products-head > span {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5.5vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-drawer .drawer-products-head > a {
  padding: 0.35rem 0;
  color: #002fa7;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.drawer-product + .drawer-product {
  border-top: 1px solid var(--line);
}

.drawer-product-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.65rem 0;
  color: var(--text);
  text-align: left;
}

.drawer-product-trigger > span {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.drawer-product-trigger small {
  color: #002fa7;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.drawer-product-trigger svg {
  flex: 0 0 auto;
  color: #6d7681;
  transition: transform 0.22s var(--ease);
}

.drawer-product-trigger[aria-expanded="true"] {
  color: #002fa7;
}

.drawer-product-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.drawer-product-panel {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 0 0.75rem 2.05rem;
}

.drawer-product-panel[hidden] {
  display: none;
}

.drawer-product-group {
  display: grid;
  align-content: start;
  min-width: 0;
}

.drawer-product-group + .drawer-product-group {
  margin-top: 0.65rem;
}

.drawer-product-group > span {
  padding: 0.7rem 0 0.35rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
}

.nav-drawer .drawer-product-panel a {
  min-height: 2.2rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid #eceef1;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.nav-drawer .drawer-product-panel .drawer-product-all {
  border-bottom: 0;
  color: #002fa7;
  font-weight: 700;
}

@media (min-width: 560px) and (max-width: 1023px) {
  .drawer-product-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }

  .drawer-product-group + .drawer-product-group {
    margin-top: 0;
  }
}

/* —— Resources dropdown —— */
.nav-item.has-drop {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  z-index: 90;
  display: grid;
  gap: 0.15rem;
  min-width: 11.5rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 32, 0.1);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-item.has-drop.is-open .nav-drop-menu {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-menu[hidden] {
  display: none !important;
}

.nav-drop-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 2px;
  color: var(--text) !important;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 1 !important;
  text-decoration: none;
}

.nav-drop-menu a::after {
  display: none !important;
}

.nav-drop-menu a:hover,
.nav-drop-menu a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--brand) !important;
}

.resources-rows {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.resources-rows li {
  border-bottom: 1px solid var(--line);
}

.resources-rows a {
  display: grid;
  gap: 0.3rem;
  padding: 1.1rem 0;
  color: inherit;
}

@media (min-width: 800px) {
  .resources-rows--meta a {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
  }
}

.resources-rows strong {
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.resources-rows span {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.resources-rows a:hover strong {
  color: var(--brand);
}

.resources-note {
  margin: 1.25rem 0 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* —— Downloads request (gated packs) —— */
.dl-section {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 14rem);
}

.dl-layout {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.dl-head {
  max-width: 40rem;
}

.dl-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.dl-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.15rem, 2.4vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 980px) {
  .dl-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .dl-grid {
    grid-template-columns: 1fr;
  }
}

.dl-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  min-width: 0;
}

.dl-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.dl-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}

.dl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.dl-card:hover .dl-card-media img,
.dl-card:focus-visible .dl-card-media img {
  transform: scale(1.04);
}

.dl-card-body {
  display: grid;
  gap: 0.4rem;
  align-content: start;
  padding: 0.95rem 0 0;
}

.dl-card-file {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #7a8490;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dl-card-file svg {
  flex-shrink: 0;
  color: var(--brand);
}

.dl-card-title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text);
}

.dl-card:hover .dl-card-title,
.dl-card:focus-visible .dl-card-title {
  color: var(--brand);
}

.dl-card-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dl-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--brand);
}

.dl-card-action::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.dl-card:hover .dl-card-action::after,
.dl-card:focus-visible .dl-card-action::after {
  transform: translateX(3px) rotate(45deg);
}

.dl-note {
  margin: 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.15rem;
}

.dl-modal[hidden] {
  display: none;
}

.dl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 32, 0.5);
}

.dl-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: min(92vh, 44rem);
  overflow: auto;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 54px rgba(15, 23, 32, 0.18);
}

.dl-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: transparent;
  color: #7a8490;
  cursor: pointer;
}

.dl-modal-close:hover {
  color: var(--text);
}

.dl-modal-head {
  margin: 0 0 1.15rem;
  padding-right: 2rem;
}

.dl-modal-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.dl-modal-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.dl-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 560px) {
  .dl-modal-grid {
    grid-template-columns: 1fr;
  }
}

.dl-field {
  display: grid;
  gap: 0.3rem;
}

.dl-field--full {
  grid-column: 1 / -1;
}

.dl-field > span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: #3d4652;
}

.dl-field abbr {
  text-decoration: none;
  color: var(--brand);
}

.dl-field input,
.dl-field select,
.dl-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
}

.dl-field input:focus,
.dl-field select:focus,
.dl-field textarea:focus {
  outline: 2px solid rgba(11, 58, 110, 0.28);
  outline-offset: 1px;
  border-color: var(--brand);
}

.dl-field textarea {
  min-height: 5rem;
  resize: vertical;
}

.dl-field.is-invalid input,
.dl-field.is-invalid select,
.dl-field.is-invalid textarea {
  border-color: #b42318;
}

.form-consent,
.dl-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent input,
.dl-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand);
}

.form-consent > span,
.dl-consent > span {
  flex: 1 1 auto;
  min-width: 0;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.form-consent a,
.dl-consent a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.form-consent a:hover,
.dl-consent a:hover {
  color: var(--text);
}

.form-consent.is-invalid,
.dl-consent.is-invalid {
  color: #b42318;
}

.contact-form .form-consent {
  margin: 0.85rem 0 1rem;
}

.inquiry .form-consent {
  margin: 0.35rem 0 0.85rem;
}

.dl-modal-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.dl-modal-actions .btn {
  justify-self: start;
  min-height: 2.5rem;
  padding: 0.65rem 1.2rem;
}

.dl-modal-tip {
  margin: 0;
  color: #8a939e;
  font-size: 0.82rem;
  line-height: 1.45;
}

body.dl-modal-open,
body.inquiry-modal-open {
  overflow: hidden;
}

.inquiry-modal .dl-modal-panel {
  width: min(100% - 1.5rem, 42rem);
  max-height: min(96vh, 58rem);
  overflow: auto;
  padding: 1.2rem 1.35rem 1.15rem;
  scrollbar-gutter: stable;
}

.inquiry-modal .dl-modal-head {
  margin: 0 0 0.75rem;
}

.inquiry-modal .dl-modal-title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
}

.inquiry-modal .dl-modal-sub {
  margin: 0;
  max-width: 42rem;
  color: var(--text);
  font-family: var(--font-body, var(--font-ui));
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
}

.inquiry-modal-intro {
  margin: 0.45rem 0 0;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
}

.inquiry-modal-promise {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.inquiry-modal-promise strong {
  color: var(--text);
  font-weight: 650;
}

.inquiry-modal-alt {
  margin: 0;
  color: #8a939e;
  font-size: 0.8rem;
  line-height: 1.45;
}

.inquiry-modal-alt a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.inquiry-modal-alt a:hover {
  color: var(--text);
}

.inquiry-modal .dl-modal-grid {
  gap: 0.55rem 0.8rem;
}

.inquiry-modal .dl-field {
  gap: 0.22rem;
}

.inquiry-modal .dl-field > span {
  font-size: 0.74rem;
}

.inquiry-modal .dl-field input,
.inquiry-modal .dl-field select,
.inquiry-modal .dl-field textarea {
  padding: 0.58rem 0.72rem;
  font-size: 0.92rem;
  border: 1px solid #d5dae3;
  background: #f3f5f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.inquiry-modal .dl-field input:hover,
.inquiry-modal .dl-field select:hover,
.inquiry-modal .dl-field textarea:hover {
  background-color: #eef1f5;
  border-color: #c8ced8;
}

.inquiry-modal .dl-field input:focus,
.inquiry-modal .dl-field select:focus,
.inquiry-modal .dl-field textarea:focus {
  background-color: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 58, 110, 0.12);
}

.inquiry-modal .dl-field select {
  appearance: none;
  background-color: #f3f5f8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23687482' stroke-width='1.4'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 1.9rem;
  cursor: pointer;
}

.inquiry-modal .dl-field select:hover,
.inquiry-modal .dl-field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23687482' stroke-width='1.4'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
}

.inquiry-modal .dl-field textarea {
  min-height: 3.6rem;
  resize: vertical;
}

.inquiry-modal .form-consent,
.inquiry-modal .dl-consent {
  margin: 0.65rem 0 0.7rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.inquiry-modal [data-mz-inquiry-captcha] {
  margin: 0 0 0.75rem;
}

.inquiry-modal .captcha-field,
.inquiry-modal .contact-captcha {
  display: grid;
  gap: 0.22rem;
  margin: 0;
  width: 100%;
}

.inquiry-modal .captcha-field > label,
.inquiry-modal .captcha-field > label > span,
.inquiry-modal .contact-captcha > label,
.inquiry-modal .contact-captcha > label > span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #2a3138;
}

.inquiry-modal .captcha-field abbr {
  text-decoration: none;
  color: #c62828;
  font-weight: 700;
}

.inquiry-modal .captcha-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
}

.inquiry-modal .captcha-row > span,
.inquiry-modal .captcha-row .captcha-question {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 2.55rem;
  padding: 0 0.8rem;
  border: 1px solid #d5dae3;
  border-radius: 2px;
  background: #eef1f5;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}

.inquiry-modal .captcha-row input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  min-height: 2.55rem;
  padding: 0.58rem 0.72rem;
  border: 1px solid #d5dae3;
  border-radius: 2px;
  background: #f3f5f8;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.inquiry-modal .captcha-row input:hover {
  background-color: #eef1f5;
  border-color: #c8ced8;
}

.inquiry-modal .captcha-row input:focus {
  outline: none;
  background-color: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 58, 110, 0.12);
}

.inquiry-modal .captcha-field .form__error,
.inquiry-modal .captcha-field .contact-field-error {
  display: none;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #c62828;
}

.inquiry-modal .captcha-field .form__error.is-visible,
.inquiry-modal .captcha-field.is-invalid .form__error,
.inquiry-modal .captcha-field.is-invalid .contact-field-error {
  display: block;
}

.inquiry-modal .g-recaptcha,
.inquiry-modal .cf-turnstile,
.inquiry-modal .mz-captcha-missing {
  margin-top: 0.15rem;
  max-width: 100%;
  overflow: hidden;
}

.inquiry-modal .dl-modal-actions {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.inquiry-modal .dl-modal-actions .btn-quote {
  min-height: 2.55rem;
}

.inquiry-modal-product {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.7rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.inquiry-modal-thumb {
  flex: 0 0 auto;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e9ee;
}

.inquiry-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inquiry-modal-product-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}

.inquiry-modal-product strong {
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.3;
}

.inquiry-modal-product span {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.inquiry-modal .btn-quote {
  width: 100%;
  justify-content: center;
  border-radius: 2px;
}

/* Desktop: fit in viewport without scrollbar when possible */
@media (min-width: 900px) and (min-height: 860px) {
  .inquiry-modal {
    padding: 0.75rem;
  }

  .inquiry-modal .dl-modal-panel {
    max-height: none;
    overflow: visible;
  }
}

@media (min-width: 900px) and (min-height: 780px) and (max-height: 859px) {
  .inquiry-modal {
    padding: 0.55rem;
  }

  .inquiry-modal .dl-modal-panel {
    max-height: calc(100vh - 1.1rem);
    overflow: auto;
  }

  .inquiry-modal .dl-field textarea {
    min-height: 3.1rem;
  }
}

@media (max-width: 640px) {
  .inquiry-modal .dl-modal-panel {
    width: min(100% - 1rem, 42rem);
    max-height: min(94vh, 58rem);
    padding: 1.05rem 1rem 1rem;
    overflow: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dl-card-media img {
    transition: none;
  }

  .dl-card:hover .dl-card-media img {
    transform: none;
  }
}

/* —— FAQ page —— */
.faq-section {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 16rem);
}

.faq-layout {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: minmax(12.5rem, 16.5rem) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.faq-sidebar {
  min-width: 0;
}

@media (min-width: 900px) {
  .faq-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.1rem);
  }
}

.faq-toc {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.faq-toc a {
  display: block;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #7a8490;
  transition: color 0.2s var(--ease);
}

.faq-toc a:last-child {
  border-bottom: 0;
}

.faq-toc a:hover {
  color: var(--text);
}

.faq-toc a.is-active {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 899px) {
  .faq-toc {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0 1.15rem;
    padding: 0 0 0.85rem;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .faq-toc a {
    flex: 0 0 auto;
    padding: 0.35rem 0;
    border-bottom: 0;
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .faq-toc a.is-active {
    box-shadow: inset 0 -2px 0 var(--brand);
  }
}

.faq-main {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.faq-groups {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.faq-group-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.faq-group {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  margin-top: 0.2rem;
  transform: rotate(225deg);
}

.faq-item summary:hover {
  color: var(--brand);
}

.faq-answer {
  padding: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer img {
  max-width: 100%;
  height: auto;
  margin: 0.5rem 0;
}

.faq-answer table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.65rem 0;
  font-size: 0.9rem;
}

.faq-answer th,
.faq-answer td {
  border: 1px solid var(--line);
  padding: 0.45rem 0.55rem;
  text-align: left;
  vertical-align: top;
}

.faq-answer a {
  color: var(--brand);
  font-weight: 600;
}

.faq-note {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.faq-note a {
  color: var(--brand);
  font-weight: 650;
}

/* —— Blog list + sidebar —— */
.blog-section {
  background: #fff;
}

.blog-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

@media (min-width: 980px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr) minmax(15.5rem, 18.5rem);
    gap: clamp(2.25rem, 4vw, 3.75rem);
  }
}

.blog-main {
  min-width: 0;
  background: transparent;
}

/* —— Blog article (shared layout with list: .blog-layout + sidebar) —— */
.blog-entry {
  display: grid;
  gap: 1.15rem;
  min-width: 0;
}

.blog-entry-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin: 0 0 0.15rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--brand);
  transition: gap 0.2s var(--ease);
}

.blog-entry-back svg {
  transition: transform 0.2s var(--ease);
}

.blog-entry-back:hover svg {
  transform: translateX(-3px);
}

.blog-entry .blog-meta {
  margin: 0;
}

.blog-entry-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
}

.blog-entry-lead {
  margin: 0;
  max-width: 48rem;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.55;
}

.blog-entry-cover {
  display: block;
  margin: 0.35rem 0 0.15rem;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
}

.blog-entry-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-prose {
  display: grid;
  gap: 1rem;
  margin-top: 0.35rem;
  max-width: 48rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-prose > :first-child {
  margin-top: 0;
}

.blog-prose p,
.blog-prose ul,
.blog-prose ol {
  margin: 0;
}

.blog-prose h2 {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
}

.blog-prose ul,
.blog-prose ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.blog-prose li::marker {
  color: var(--brand);
}

.blog-prose a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-prose a:hover {
  color: var(--text);
}

.blog-entry-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.blog-entry-foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--brand);
}

.blog-entry-foot a:hover {
  color: var(--text);
}

.blog-entry-foot-all {
  color: var(--text-muted) !important;
}

.blog-entry-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.65rem;
  margin-top: 0.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.blog-entry-tags-label {
  flex: 0 0 auto;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-entry-tags ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-entry-tags a {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 550;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-entry-tags a:hover {
  color: var(--brand-hover);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-entry-takeaways {
  margin: 0.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
  max-width: 48rem;
}

.blog-entry-takeaways-title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-entry-takeaways ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.blog-entry-takeaways li::marker {
  color: var(--brand);
  font-weight: 700;
}

.blog-entry-faq {
  margin-top: 0.35rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.blog-entry-faq-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--text);
}

.blog-entry-faq-list {
  margin: 0;
  padding: 0;
}

.blog-entry-faq .faq-answer a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-entry-faq .faq-answer a:hover {
  color: var(--text);
}

.blog-related {
  margin-top: 0.35rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
}

.blog-related-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--text);
}

.blog-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  border-top: 1px solid var(--line);
}

.blog-related-list > li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.blog-related-list .blog-post {
  display: grid;
  gap: 1rem;
  height: auto;
  padding: clamp(1rem, 1.8vw, 1.25rem) 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

@media (min-width: 640px) {
  .blog-related-list .blog-post {
    grid-template-columns: 8.75rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
  }
}

.blog-related-list .blog-post-media {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}

.blog-related-list .blog-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-list .blog-post-body {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  align-content: start;
}

.blog-related-list .blog-post-body .blog-meta {
  margin: 0;
}

.blog-related-list .blog-post-body strong {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.25;
}

.blog-related-list .blog-excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.85rem 1.65rem;
  margin: 0 0 1.5rem;
  padding: 0 0 1.15rem;
  border-bottom: 1px solid var(--line);
}

.blog-cat {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.2rem 0 0.35rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8a939e;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.blog-cat::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}

.blog-cat:hover {
  color: var(--text);
}

.blog-cat.is-active {
  color: var(--brand);
}

.blog-cat.is-active::after,
.blog-cat:hover::after {
  transform: scaleX(1);
}

.blog-cat:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.blog-side-cats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.blog-side-cat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: #7a8490;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.blog-side-cat:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}

.blog-side-cat span:last-child {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #9aa3ae;
}

.blog-side-cat:hover {
  color: var(--text);
}

.blog-side-cat.is-active {
  color: var(--brand);
  font-weight: 700;
}

.blog-side-cat.is-active span:last-child {
  color: var(--brand);
}

.blog-side-cat:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.blog-feed-empty {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-meta time {
  color: #8a939e;
}

.blog-meta a {
  color: var(--brand);
  text-decoration: none;
}

.blog-meta a:hover {
  color: var(--brand-hover);
}

.blog-excerpt {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.blog-feed {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
  border-top: 1px solid var(--line);
}

.blog-feed > li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.blog-post {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 2.2vw, 1.45rem) 0;
  color: inherit;
  background: transparent;
  text-decoration: none;
}

@media (min-width: 640px) {
  .blog-post {
    grid-template-columns: 8.75rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
  }
}

.blog-post-media {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
}

.blog-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.blog-post:hover .blog-post-media img {
  transform: scale(1.04);
}

.blog-post-body {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  background: transparent;
}

.blog-post-body .blog-meta {
  margin: 0;
}

.blog-post-body strong {
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.25;
}

.blog-post:hover .blog-post-body strong {
  color: var(--brand);
}

.blog-post-body .blog-excerpt {
  font-size: 0.94rem;
}

.blog-sidebar {
  display: grid;
  gap: 1.15rem;
  min-width: 0;
}

@media (min-width: 980px) {
  .blog-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.1rem);
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 20.5rem);
  }
}

.blog-side-panel {
  padding: 1.05rem 1.05rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 32, 0.04);
}

.blog-side-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.blog-side-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
  text-transform: none;
}

.blog-side-rail-wrap .blog-side-title {
  margin-bottom: 0.85rem;
}

.blog-side-stat {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a939e;
}

.blog-side-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.95rem;
  padding: 0.35rem 0.45rem 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  transition: border-color 0.2s var(--ease);
}

.blog-side-search:focus-within {
  border-color: rgba(11, 58, 110, 0.45);
}

.blog-side-search-icon {
  display: grid;
  place-items: center;
  color: #8a939e;
}

.blog-side-search-input {
  width: 100%;
  min-width: 0;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
}

.blog-side-search-input::placeholder {
  color: #8b93a0;
}

.blog-side-search-go {
  min-height: 1.85rem;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.blog-side-search-go:hover {
  background: var(--brand-hover);
}

.blog-side-empty {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.blog-side-dl-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-side-dl-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.blog-side-dl-list li:last-child a {
  border-bottom: 0;
}

.blog-side-dl-list a:hover {
  color: var(--brand);
}

.blog-side-dl-list strong {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.blog-side-dl-list span {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a939e;
}

.blog-side-dl-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--brand);
  text-decoration: none;
}

.blog-side-dl-more svg {
  transition: transform 0.2s var(--ease);
}

.blog-side-dl-more:hover svg {
  transform: translateX(3px);
}

.blog-side-dl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.85rem;
  padding: 0.8rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #f5f7fa;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.blog-side-dl:hover {
  border-color: rgba(11, 58, 110, 0.35);
  background: #eef3f8;
}

.blog-side-dl-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line);
}

.blog-side-dl-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.blog-side-dl-copy strong {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.blog-side-dl-copy span {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.blog-side-dl-arrow {
  color: var(--brand);
  transition: transform 0.2s var(--ease);
}

.blog-side-dl:hover .blog-side-dl-arrow {
  transform: translateX(3px);
}

.blog-index a.is-blog-hidden,
.blog-feed > li.is-blog-hidden {
  display: none;
}

.blog-index {
  display: grid;
}

.blog-index a {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.72rem 0.45rem 0.72rem 0.35rem;
  margin: 0 -0.35rem;
  border-radius: 2px;
  border-bottom: 1px solid var(--line);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}

.blog-index a:last-child {
  border-bottom: 0;
}

.blog-index a:hover {
  background: var(--accent-soft);
}

.blog-index-num {
  padding-top: 0.12rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--brand);
  opacity: 0.72;
}

.blog-index-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.blog-index-copy strong {
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.blog-index-copy span {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.blog-index a:hover .blog-index-copy strong {
  color: var(--brand);
}

.blog-side-spotlight {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  min-height: 11.5rem;
  border-radius: 2px;
  color: #f4f6f8;
  box-shadow: 0 14px 32px rgba(8, 22, 42, 0.16);
}

.blog-side-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s var(--ease);
}

.blog-side-spotlight-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 22, 42, 0.18) 0%, rgba(8, 22, 42, 0.78) 100%);
}

.blog-side-spotlight-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  align-content: end;
  min-height: 11.5rem;
  padding: 1.05rem 1.05rem 1.15rem;
}

.blog-side-spotlight-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.72);
}

.blog-side-spotlight-body strong {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #fff;
}

.blog-side-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 650;
  color: #fff;
  transition: gap 0.25s var(--ease);
}

.blog-side-spotlight:hover img {
  transform: scale(1.06);
}

.blog-side-spotlight:hover .blog-side-spotlight-cta {
  gap: 0.5rem;
}

.blog-rail {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-rail li + li {
  border-top: 1px solid var(--line);
}

.blog-rail a {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.15rem;
  margin: 0 -0.15rem;
  border-radius: 2px;
  transition: background 0.22s var(--ease);
}

.blog-rail a:hover {
  background: var(--accent-soft);
}

.blog-rail-thumb {
  display: block;
  overflow: hidden;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 2px;
  background: var(--surface-2);
}

.blog-rail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-rail a:hover .blog-rail-thumb img {
  transform: scale(1.06);
}

.blog-rail-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.blog-rail-copy strong {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.blog-rail-copy span {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.blog-rail a:hover .blog-rail-copy strong {
  color: var(--brand);
}

.blog-rail-arrow {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--text-muted);
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.blog-rail a:hover .blog-rail-arrow {
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
  transform: translateX(2px);
}

.blog-side-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 2px;
  color: #f4f6f8;
  box-shadow: 0 16px 36px rgba(8, 22, 42, 0.18);
}

.blog-side-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-side-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.85);
}

.blog-side-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(11, 58, 110, 0.92) 0%, rgba(8, 28, 54, 0.88) 55%, rgba(8, 22, 42, 0.94) 100%);
}

.blog-side-cta-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.1rem 1.25rem;
}

.blog-side-cta-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
}

.blog-side-cta-copy {
  margin: 0 0 0.35rem;
  color: rgba(244, 246, 248, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.blog-side-cta .btn {
  width: 100%;
  justify-content: center;
}

.btn-light {
  --btn-bg: #ffffff;
  --btn-fg: var(--brand);
}

.btn-light:hover {
  background: #f0f4f8;
  color: var(--brand-hover);
}

@media (prefers-reduced-motion: reduce) {
  .blog-post-media img,
  .blog-side-spotlight img,
  .blog-rail-thumb img,
  .blog-rail-arrow,
  .blog-side-spotlight-cta {
    transition: none;
  }

  .blog-post:hover .blog-post-media img,
  .blog-side-spotlight:hover img,
  .blog-rail a:hover .blog-rail-thumb img,
  .blog-rail a:hover .blog-rail-arrow {
    transform: none;
  }
}

/* —— Products mega menu (DJI-style catalog panel) —— */
.nav-item.has-mega {
  display: flex;
  align-items: center;
}

.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.5rem 0.15rem;
  margin: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  font-weight: 550;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0.92;
  cursor: pointer;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 1.1rem;
  bottom: 0.15rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  opacity: 0.85;
}

.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  opacity: 1;
}

.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-trigger:hover,
.site-header.is-solid .nav-trigger:hover,
.site-header.is-mega-open .nav-trigger {
  color: var(--brand);
}

.nav-caret {
  width: 0.65rem;
  height: 0.65rem;
  opacity: 0.65;
  transition: transform 0.35s var(--ease);
}

.nav-trigger[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}

.mega-menu {
  --mega-new: #d96b2c;
  position: fixed;
  inset: 0;
  z-index: 75;
  display: grid;
  align-content: start;
  pointer-events: none;
}

.mega-menu[hidden] {
  display: none;
}

.mega-menu.is-open {
  pointer-events: auto;
}

.mega-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 32, 0.18);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.mega-menu.is-open .mega-backdrop {
  opacity: 1;
}

.mega-panel {
  position: relative;
  z-index: 1;
  margin-top: var(--header-h);
  width: 100%;
  max-height: min(78dvh, 52rem);
  display: grid;
  grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 28px 64px rgba(15, 23, 32, 0.14);
  opacity: 0;
  transform: translateY(-0.6rem);
  transition:
    opacity 0.35s var(--ease),
    transform 0.4s var(--ease);
  overflow: hidden;
}

.mega-menu.is-open .mega-panel {
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-mega-open {
  --header-fg: #121417;
  --header-line: rgba(15, 23, 32, 0.08);
  background: #ffffff;
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(15, 23, 32, 0.04);
  color: var(--header-fg);
}

.site-header.is-mega-open .nav-links a,
.site-header.is-mega-open .tool-link,
.site-header.is-mega-open .brand-mark {
  opacity: 1;
}

.mega-side {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.35rem 1rem 1.15rem 1.2rem;
  background: #fafbfc;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.mega-group-label {
  margin: 0 0 0.45rem 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a929c;
}

.mega-cat-list {
  display: grid;
  gap: 0.1rem;
}

.mega-cat {
  width: 100%;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.45rem;
  border-radius: 4px;
  text-align: left;
  color: var(--text);
  transition: background 0.25s var(--ease);
}

.mega-cat:hover,
.mega-cat.is-active {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 32, 0.06);
}

.mega-cat-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: visible;
}

.mega-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mega-cat-text {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.mega-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mega-new);
  white-space: nowrap;
}

.mega-cat .mega-badge {
  justify-self: end;
}

.mega-side-foot {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.65rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--brand);
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.mega-side-foot:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  box-shadow: none;
}

.mega-side-foot:active {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.mega-side-foot svg {
  flex-shrink: 0;
  stroke-width: 1.8;
  transition: transform 0.2s var(--ease);
}

.mega-side-foot:hover svg {
  transform: translateX(3px);
}

.mega-main {
  grid-column: 2;
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.75rem 1.5rem 1.5rem;
  background: #fff;
}

.mega-pane {
  display: grid;
  gap: 1.6rem;
  animation: mega-pane-in 0.35s var(--ease);
}

.mega-pane[hidden] {
  display: none;
}

@keyframes mega-pane-in {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.mega-block-head h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.mega-view-all svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke-width: 1.8;
  transition: transform 0.2s var(--ease);
}

.mega-view-all:hover {
  color: var(--brand-hover);
}

.mega-view-all:hover svg {
  transform: translateX(3px);
}

.mega-view-all:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.mega-block-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

/* Flatten wrapper so feature + tiles share one 6-col / 2-row grid */
.mega-tiles {
  display: contents;
}

.mega-feature,
.mega-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 0 0.85rem;
  background: var(--surface);
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
  min-width: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.mega-feature:hover,
.mega-tile:hover {
  background: var(--surface-2);
}

.mega-feature:active,
.mega-tile:active {
  transform: scale(0.985);
}

.mega-feature-media,
.mega-tile-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin: 0;
  background: #eef0f3;
}

.mega-feature-media img,
.mega-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mega-feature .mega-badge,
.mega-tile .mega-badge {
  justify-content: center;
  margin: 0.15rem 0 -0.1rem;
  padding-inline: 0.65rem;
}

.mega-feature-title,
.mega-tile-label {
  padding-inline: 0.45rem;
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 0.7vw, 0.82rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text);
}

.mega-feature-desc {
  display: none;
}

@media (max-width: 1440px) {
  .mega-block-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

@media (max-width: 1280px) {
  .mega-panel {
    grid-template-columns: minmax(13.5rem, 15.5rem) minmax(0, 1fr);
  }

  .mega-block-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .mega-block-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .mega-menu {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-pane {
    animation: none;
  }
}

/* Product directory mega — REACHSKY brand (matches site tokens) */
.mega-menu {
  --mega-blue: var(--brand);
}

.mega-panel {
  height: min(78dvh, 46rem);
  max-height: min(78dvh, 46rem);
  padding-left: var(--shell-margin-left);
  padding-right: var(--shell-margin-right);
  grid-template-columns: minmax(15.5rem, 16.75rem) minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 22px 48px rgba(11, 58, 110, 0.1);
  overflow: hidden;
}

.mega-side {
  gap: 0;
  padding: 1.25rem 0.9rem 0.6rem;
  background: #fff;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.mega-side-head {
  padding: 0 0 0.55rem;
  border-bottom: 0;
  margin-bottom: 0.15rem;
}

.mega-side-head p,
.mega-directory-head p {
  margin: 0 0 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mega-side-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.mega-cat-list {
  display: grid;
  gap: 0;
  border-top: 0;
  flex: 0 0 auto;
  overflow: visible;
}

.mega-cat {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  min-height: 0;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  text-align: left;
  transition: color 0.18s var(--ease);
}

.mega-cat::before {
  display: none;
}

.mega-cat:hover,
.mega-cat.is-active {
  color: var(--brand);
  background: transparent;
  box-shadow: none;
}

.mega-cat:hover::before,
.mega-cat.is-active::before {
  opacity: 0;
}

.mega-cat-thumb {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.mega-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mega-cat-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.mega-cat-copy strong {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: inherit;
}

.mega-cat-copy small {
  display: none;
}

.mega-side-foot {
  position: relative;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--brand);
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
  overflow: hidden;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.mega-side-foot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  pointer-events: none;
}

.mega-side-foot:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  box-shadow: none;
}

.mega-side-foot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.mega-side-foot:active {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  box-shadow: none;
}

.mega-side-foot svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke-width: 1.8;
  transition: transform 0.2s var(--ease);
}

.mega-side-foot:hover svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: no-preference) {
  .mega-side-foot::after {
    animation: mega-side-foot-sheen 2.6s ease-in-out infinite;
  }

  .mega-side-foot svg {
    animation: mega-side-foot-arrow 1.35s var(--ease) infinite;
  }

  .mega-side-foot:hover::after,
  .mega-side-foot:focus-visible::after {
    animation: none;
    opacity: 0;
  }

  .mega-side-foot:hover svg,
  .mega-side-foot:focus-visible svg {
    animation: none;
    transform: translateX(3px);
  }
}

@keyframes mega-side-foot-sheen {
  0%,
  58% {
    transform: translateX(-130%);
  }
  78%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes mega-side-foot-arrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-side-foot,
  .mega-side-foot svg {
    transition: none;
  }

  .mega-side-foot::after {
    display: none;
  }

  .mega-side-foot:hover svg {
    transform: none;
  }
}

.mega-main {
  padding: 0;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mega-main::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.mega-pane {
  grid-template-columns: minmax(0, 1fr) minmax(13.5rem, 15.5rem);
  gap: 0;
  min-height: 100%;
  height: auto;
  align-items: start;
  animation: mega-pane-in 0.24s var(--ease);
}

.mega-pane--directory-only {
  grid-template-columns: minmax(0, 1fr);
}

.mega-directory {
  min-width: 0;
  padding: clamp(0.95rem, 1.3vw, 1.25rem) clamp(1.15rem, 1.9vw, 1.85rem) 1.05rem;
}

.mega-directory-head {
  max-width: 46rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.mega-directory-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.mega-directory-head > span {
  display: block;
  max-width: 52ch;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.5;
}

.mega-subgroups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(2.25rem, 3.8vw, 3.5rem);
  row-gap: 2.15rem;
  padding-top: 1.5rem;
}

.mega-subgroups[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 52rem;
  column-gap: clamp(2.75rem, 5vw, 4.5rem);
}

.mega-subgroup {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.15rem;
}

.mega-subgroup h4 {
  margin: 0 0 0.85rem;
  padding: 0 0 0.6rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-transform: none;
}

.mega-subgroup a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.35rem;
  margin: 0;
  padding: 0.5rem 1.2rem 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color 0.18s var(--ease);
}

.mega-subgroup a::after,
.mega-spotlight-body > a::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  width: 0.38rem;
  height: 0.38rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 0.4;
  transform: rotate(45deg);
  transition: opacity 0.18s var(--ease), right 0.18s var(--ease);
}

.mega-subgroup a:hover {
  color: var(--brand);
}

.mega-subgroup a:hover::after,
.mega-spotlight-body > a:hover::after {
  opacity: 0.9;
  right: 0;
}

.mega-directory-foot {
  margin-top: 2.25rem;
  padding-top: 0.35rem;
}

.mega-directory-foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.mega-directory-foot a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke-width: 1.8;
  transition: transform 0.2s var(--ease);
}

.mega-directory-foot a:hover {
  color: var(--brand-hover);
}

.mega-directory-foot a:hover svg {
  transform: translateX(3px);
}

.mega-spotlights {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  align-self: start;
  min-width: 0;
  margin: 0.85rem 0.85rem 0.85rem 0;
}

.mega-spotlight {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.mega-spotlight-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: none;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.mega-spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mega-spotlight-body {
  display: grid;
  align-content: start;
  gap: 0.22rem;
  padding: 0.7rem 0.85rem 0.8rem;
  background: #fff;
}

.mega-spotlight-body p {
  margin: 0;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mega-spotlight-body h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mega-spotlight-body > span {
  display: none;
}

.mega-spotlight-body > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.3rem;
  padding: 0 1.1rem 0 0;
  border: 0;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 0.2s var(--ease);
}

.mega-spotlight-body > a:hover {
  color: var(--brand-hover);
}

.mega-spotlight-body > a > span {
  display: none;
}

.mega-spotlight-body > a::after {
  right: 0;
  opacity: 1;
}

@media (max-width: 1280px) {
  .mega-panel {
    grid-template-columns: 13.5rem minmax(0, 1fr);
  }

  .mega-pane {
    grid-template-columns: minmax(0, 1fr) 14rem;
  }

  .mega-directory {
    padding-inline: 1.25rem;
  }

  .mega-subgroups {
    column-gap: 2rem;
    row-gap: 1.85rem;
  }

  .mega-subgroups[data-count="2"] {
    column-gap: 2.75rem;
  }

  .mega-spotlights {
    margin: 0.85rem 0.85rem 0.85rem 0;
  }
}

@media (max-width: 1100px) {
  .mega-panel {
    grid-template-columns: 12.75rem minmax(0, 1fr);
  }

  .mega-pane {
    grid-template-columns: minmax(0, 1fr) 12.75rem;
  }

  .mega-subgroup a {
    font-size: 0.9rem;
  }
}

@media (max-width: 1199px) {
  .mega-panel {
    grid-template-columns: minmax(15.5rem, 16.75rem) minmax(0, 1fr);
  }

  .mega-pane {
    grid-template-columns: minmax(0, 1fr);
  }

  .mega-spotlights {
    display: none;
  }
}

@media (max-height: 760px) {
  .mega-panel {
    height: min(82dvh, 42rem);
    max-height: min(82dvh, 42rem);
  }

  .mega-side {
    overflow: hidden;
  }

  .mega-main {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-spotlight-body > a,
  .mega-subgroup a {
    transition: none;
  }
}

/* —— Full-bleed hero (JOUAV pattern) ——
 * Keep edge-to-edge cover + crossfade, but:
 * 1) lock height with svh/dvh (+ vh fallback) so mobile chrome / desktop
 *    browsers don’t crop differently;
 * 2) cap extreme tall viewports so 16:9 art isn’t over-cropped;
 * 3) bias object-position toward subject; Ken Burns scales the <img> only.
 */
.hero {
  --hero-focus: center 38%;
  --hero-h: 100vh; /* old Safari / Firefox fallback */
  --hero-h: 100svh; /* stable mobile (ignores dynamic chrome) */
  --hero-h: 100dvh; /* prefer dynamic when supported */
  /* Cap tall windows (~1.56∶1): shows more of 16∶9 slides without letterboxing on normal laptops */
  --hero-h-capped: min(var(--hero-h), 64vw);
  position: relative;
  height: var(--hero-h-capped);
  min-height: var(--hero-h-capped);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--hero-focus);
  transform: scale(1.035);
  transform-origin: center center;
  transition: transform 7.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: calc(var(--hero-overlay, 48) / 100);
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.78) 0%, rgba(7, 12, 18, 0.4) 42%, rgba(7, 12, 18, 0.92) 100%),
    radial-gradient(80% 70% at 50% 45%, rgba(7, 12, 18, 0.32) 0%, rgba(7, 12, 18, 0.88) 100%);
}

.hero-scrim {
  display: none;
}

.hero-content {
  width: min(1080px, calc(100% - (var(--gutter) * 2) - var(--float-safe)));
  margin-left: max(var(--gutter), calc((100% - 1080px - var(--float-safe)) / 2));
  margin-right: max(calc(var(--gutter) + var(--float-safe)), calc((100% - 1080px - var(--float-safe)) / 2 + var(--float-safe)));
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero-content-panel {
  grid-area: 1 / 1;
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  align-self: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.hero-content-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}

.hero .hero-title {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f7fafc;
  text-wrap: balance;
}

.hero-lead {
  margin: 0;
  max-width: min(100%, 72ch);
  width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.45;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.hero-actions .btn {
  flex: 0 0 auto;
  height: auto;
}

.btn {
  --btn-bg: var(--brand);
  --btn-fg: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:hover {
  background: var(--brand-hover);
  color: #fff;
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn-brand {
  --btn-bg: var(--brand);
  --btn-fg: #ffffff;
}

.btn-brand:hover {
  background: var(--brand-hover);
}

.btn-quote {
  --btn-bg: var(--quote);
  --btn-fg: #ffffff;
}

.btn-block {
  width: 100%;
}

.hero-pager {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(34rem, calc(100% - (var(--gutter) * 2) - var(--float-safe)));
  transform: translateX(calc(-50% - var(--float-safe) / 2));
}

.hero-page {
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.hero-page-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: rgba(8, 12, 18, 0.35);
  opacity: 0.48;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.hero-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-page:hover .hero-page-media,
.hero-page.is-active .hero-page-media {
  opacity: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

@property --hero-ring {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

.hero-page-ring {
  --hero-ring: 0;
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 2px;
  pointer-events: none;
  background: conic-gradient(
    from -90deg,
    #fff calc(var(--hero-ring) * 1%),
    rgba(255, 255, 255, 0.28) 0
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.hero-page.is-active .hero-page-ring {
  background: conic-gradient(
    from -90deg,
    #fff calc(var(--hero-ring) * 1%),
    rgba(255, 255, 255, 0.4) 0
  );
}

.hero-page.is-running .hero-page-ring {
  animation: hero-ring-fill 5.6s linear forwards;
}

.hero-page.is-done .hero-page-ring {
  --hero-ring: 100;
  animation: none;
}

@keyframes hero-ring-fill {
  from {
    --hero-ring: 0;
  }
  to {
    --hero-ring: 100;
  }
}

@media (max-width: 719px) {
  .hero {
    /* Keep long procurement copy and both CTAs clear of the thumbnail pager. */
    --hero-h-capped: 35rem;
    --hero-h-capped: max(50svh, 35rem);
    --hero-h-capped: max(50dvh, 35rem);
    height: var(--hero-h-capped);
    min-height: var(--hero-h-capped);
    place-items: center;
  }

  .hero-slide img {
    object-position: var(--hero-focus-mobile, var(--hero-focus));
  }

  .hero-content {
    width: min(34rem, calc(100% - (var(--gutter) * 2) - var(--float-safe)));
    margin-left: max(var(--gutter), calc((100% - 34rem - var(--float-safe)) / 2));
    margin-right: max(calc(var(--gutter) + var(--float-safe)), calc((100% - 34rem - var(--float-safe)) / 2 + var(--float-safe)));
    text-align: center;
    justify-items: center;
  }

  .hero-content-panel {
    gap: 0.65rem;
  }

  .hero-brand {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .hero .hero-title {
    font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    margin-top: 0.15rem;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    min-height: 2.5rem;
    padding: 0.55rem 0.86rem;
    font-size: 0.86rem;
  }

  .hero-pager {
    gap: 0.4rem;
    width: min(22rem, calc(100% - (var(--gutter) * 2) - var(--float-safe)));
    bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.35s var(--ease);
  }

  .hero-slide img,
  .hero-slide.is-active img {
    transform: none;
    transition: none;
  }
}

.hero-content-panel.is-active > * {
  opacity: 0;
  transform: translateY(0.85rem);
  animation: rise 0.85s var(--ease) forwards;
}

.hero-content-panel.is-active > *:nth-child(1) { animation-delay: 0.08s; }
.hero-content-panel.is-active > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content-panel.is-active > *:nth-child(3) { animation-delay: 0.28s; }
.hero-content-panel.is-active > *:nth-child(4) { animation-delay: 0.38s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— White page sections (UAVMODEL commerce) —— */
.section {
  padding-block: clamp(3.5rem, 7vw, 5.75rem);
  background: var(--bg);
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

/* —— Featured in videos (VEVOR Firework embed look) —— */
/* Videos page: static grid list + pagination (no horizontal scroll) */
.video-library-section {
  background: #fff;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.video-library-head {
  max-width: 42rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
}

.video-library-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.video-library-head p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.video-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
}

@media (min-width: 720px) {
  .video-library-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .video-library-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.video-library-grid .video-card {
  flex: none;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 5;
  scroll-snap-align: unset;
}

.video-library-grid .video-card[hidden] {
  display: none;
}

.video-library-pager {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.video-feed-section {
  background: #fff;
  border-block: 0;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.video-feed-head {
  max-width: 42rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  text-align: left;
}

.video-feed-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.video-feed-head p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.video-feed-foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.video-feed-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  border: 1.5px solid var(--brand);
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    gap 0.2s var(--ease);
}

.video-feed-all svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke-width: 1.8;
}

.video-feed-all:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  gap: 0.6rem;
}

.home-faq-foot {
  margin-top: 1.35rem;
}

.home-faq-all {
  display: inline;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

.home-faq-all:hover {
  color: var(--brand-hover);
}

.video-feed {
  position: relative;
}

.video-feed-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-feed-track::-webkit-scrollbar {
  display: none;
}

.video-card {
  position: relative;
  flex: 0 0 240px;
  width: 240px;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
  scroll-snap-align: start;
  cursor: pointer;
  color: #fff;
}

.video-card-poster,
.video-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-media {
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.video-card iframe.video-card-media {
  border: 0;
  background: #000;
  object-fit: unset;
  pointer-events: none;
}

.video-card.is-playing iframe.video-card-media {
  pointer-events: auto;
  z-index: 2;
}

.video-card.is-playing .video-card-media {
  opacity: 1;
}

.video-card.is-playing .video-card-poster {
  opacity: 0;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.video-card-play svg {
  display: block;
  width: 48px;
  height: 48px;
}

.video-card.is-playing .video-card-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}

.video-card-shop {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(64, 64, 64, 0.5);
  color: #fff;
  transition: background 0.2s var(--ease);
}

.video-card-shop:hover {
  background: rgba(40, 40, 40, 0.72);
}

.video-card-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-feed-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.video-feed-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.video-feed-nav--prev {
  left: 8px;
}

.video-feed-nav--next {
  right: 8px;
}

.video-feed-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

@media (max-width: 719px) {
  .video-feed-track {
    padding-inline: 2.75rem;
    scroll-padding-inline: 2.75rem;
  }

  .video-feed-nav {
    width: 36px;
    height: 36px;
  }

  .video-feed-nav--prev {
    left: 4px;
  }

  .video-feed-nav--next {
    right: 4px;
  }

  .video-card {
    flex: 0 0 42vw;
    width: 42vw;
    height: calc(42vw * 400 / 240);
    min-width: 150px;
    max-width: 200px;
  }
}

.modes-section {
  background:
    radial-gradient(120% 80% at 50% 0%, #f4f7fb 0%, #ffffff 52%, #ffffff 100%);
}

.modes-head a {
  color: var(--brand);
  font-weight: 650;
  text-decoration: none;
}

.modes-head a:hover {
  color: var(--brand-hover);
}

.modes {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .modes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.mode {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 5 / 3;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: #1a222c;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.mode-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.mode-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 18, 26, 0.08) 0%, rgba(12, 18, 26, 0.22) 42%, rgba(12, 18, 26, 0.88) 100%);
  pointer-events: none;
}

.mode-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  display: grid;
  gap: 0.45rem;
  align-content: end;
}

.mode .mono {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.15rem;
  letter-spacing: 0.14em;
}

.mode h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.mode p {
  margin: 0;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.5;
}

.mode:hover .mode-bg {
  transform: scale(1.06);
}

@media (hover: hover) and (pointer: fine) {
  .mode:focus-within .mode-bg {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mode-bg,
  .mode:hover .mode-bg {
    transition: none;
    transform: none;
  }
}

/* Category showcase */
.category-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.category-strip::before,
.category-strip::after {
  content: none;
}

.category-strip .shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.35rem);
}

.category-intro {
  width: min(100%, 58rem);
  margin-inline: auto;
  text-align: center;
}

.category-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #23272d;
}

.category-intro p {
  width: min(100%, 48rem);
  margin: 0.9rem auto 0;
  color: #4f5964;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
  width: min(100%, 90rem);
  margin-inline: auto;
}

/* Desktop: all 8 L1 categories in one row */
@media (min-width: 1080px) {
  .category-carousel:not(.is-carousel) .category-list {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.2vw, 1.15rem);
    width: min(100%, 96rem);
    align-items: start;
  }

  .category-carousel:not(.is-carousel) .category-media {
    width: clamp(7.25rem, 8.8vw, 9.5rem);
  }

  .category-carousel:not(.is-carousel) .category-list a {
    min-height: 0;
    padding-inline: 0.2rem;
    font-size: clamp(0.84rem, 0.95vw, 1rem);
  }

  .category-carousel:not(.is-carousel) .category-name {
    margin-top: 0.95rem;
  }

  .category-carousel:not(.is-carousel) .category-meta {
    display: none;
  }
}

@media (min-width: 720px) and (max-width: 1079.98px) {
  .category-carousel:not(.is-carousel) .category-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.1rem, 2vw, 1.75rem) clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .category-carousel:not(.is-carousel) .category-media {
    width: clamp(6.5rem, 9.5vw, 9.75rem);
  }

  .category-carousel:not(.is-carousel) .category-list a {
    min-height: 0;
    padding-inline: 0.25rem;
    font-size: clamp(0.82rem, 1.05vw, 0.98rem);
  }
}

.category-list a {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0;
  min-height: clamp(11.5rem, 17vw, 15.25rem);
  padding: 0.5rem 0.45rem 0;
  border-top: 0;
  color: #20252b;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.category-name {
  margin-top: 1rem;
  line-height: 1.2;
}

.category-meta {
  display: block;
  margin-top: 0.4rem;
  color: #66717d;
  font-family: var(--font-ui);
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.category-list a::after {
  content: none;
}

.category-list a:hover {
  color: var(--brand);
  transform: translateY(-2px);
}

.category-media {
  position: relative;
  width: clamp(8rem, 12vw, 11.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(246, 248, 250, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(11, 58, 110, 0.04),
    0 14px 34px rgba(11, 26, 44, 0.028);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.category-media,
.media-core {
  isolation: isolate;
}

.category-media::after,
.media-core::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  pointer-events: none;
}

.category-media.is-loading::after,
.media-core.is-loading::after {
  opacity: 1;
  animation: image-skeleton 1.15s linear infinite;
}

.category-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}

.category-list a:hover .category-media {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(11, 58, 110, 0.07),
    0 18px 42px rgba(11, 26, 44, 0.045);
}

.category-list a:hover .category-media img {
  filter: saturate(1.03) contrast(1.05);
  transform: scale(1.035);
}

.product-tile .media-core,
.gallery-main .media-core {
  cursor: zoom-in;
}

.product-card-media .media-core {
  cursor: pointer;
}

@keyframes image-skeleton {
  to {
    transform: translateX(100%);
  }
}

.category-carousel {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.category-carousel-ui {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.category-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.category-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border-radius: 999px;
  background: #c5ccd4;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.category-dots button.is-active {
  width: 1.15rem;
  background: var(--brand);
}

.category-nav {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #3a424c;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.category-nav:hover {
  color: var(--brand);
  border-color: rgba(11, 58, 110, 0.35);
  background: #f7f9fb;
}

.category-nav:active {
  transform: scale(0.96);
}

/* Overflow / tablet+phone: single-row carousel */
.category-carousel.is-carousel {
  gap: 1.15rem;
}

.category-carousel.is-carousel .category-list {
  --category-gap: 0.75rem;
  display: flex;
  grid-template-columns: none;
  gap: var(--category-gap);
  width: auto;
  max-width: none;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.category-carousel.is-carousel .category-list::-webkit-scrollbar {
  display: none;
}

/* Responsive carousel: always show 3 cards in view */
.category-carousel.is-carousel .category-list a {
  flex: 0 0 calc((100% - (var(--category-gap) * 2)) / 3);
  min-height: 0;
  min-width: 0;
  gap: 0;
  font-size: clamp(0.78rem, 2.4vw, 1rem);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.category-carousel.is-carousel .category-name {
  margin-top: 0.65rem;
}

.category-carousel.is-carousel .category-meta {
  margin-top: 0.28rem;
  font-size: clamp(0.62rem, 1.75vw, 0.74rem);
}

.category-carousel.is-carousel .category-media {
  width: clamp(4.75rem, 22vw, 9.5rem);
}

.category-carousel.is-carousel .category-carousel-ui {
  display: flex;
}

@media (max-width: 1079px) {
  .category-strip .shell {
    overflow: visible;
  }

  .category-carousel.is-carousel {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
  }

  .category-carousel.is-carousel .category-list {
    padding-inline: var(--gutter);
    scroll-padding-inline: var(--gutter);
  }

  .category-carousel.is-carousel .category-carousel-ui {
    padding-inline: var(--gutter);
  }
}

@media (max-width: 719px) {
  .category-strip {
    padding-block: 3rem;
  }

  .category-strip::before,
  .category-strip::after {
    display: none;
  }

  .category-intro h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .category-carousel.is-carousel .category-list a {
    min-height: 0;
  }

  .category-carousel.is-carousel .category-media {
    width: clamp(4.5rem, 24vw, 7.25rem);
  }

  .category-carousel.is-carousel .category-meta {
    display: none;
  }
}

/* Legacy category links fallback */
.category-strip > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.featured-section {
  background: #f5f6f8;
  border-block: 1px solid var(--line);
}

.featured-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  align-items: end;
}

@media (min-width: 900px) {
  .featured-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
  }
}

.featured-head-copy h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.featured-head-copy p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.featured-head-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 22rem);
}

@media (max-width: 899px) {
  .featured-head-actions {
    display: none;
  }
}

@media (min-width: 900px) {
  .featured-head-actions {
    justify-content: flex-end;
  }
}

.featured-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0 0.15rem 0 0.1rem;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 32, 0.16);
  border-radius: 0;
  background: transparent;
  transition: border-color 0.28s var(--ease);
}

.featured-search:focus-within {
  border-bottom-color: var(--brand);
}

.featured-search-input {
  width: 100%;
  min-width: 0;
  height: 2.65rem;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.featured-search-input::placeholder {
  color: #8b93a0;
  font-weight: 400;
}

.featured-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.4rem;
  background:
    linear-gradient(45deg, transparent 42%, #8a93a0 42%, #8a93a0 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, #8a93a0 42%, #8a93a0 58%, transparent 58%);
  cursor: pointer;
}

.featured-search-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}

.featured-search:focus-within .featured-search-line {
  transform: scaleX(1);
}

.featured-search-go {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.2rem;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}

.featured-search-go:hover {
  background: var(--brand-hover);
}

.featured-search-go:active {
  transform: scale(0.96);
}

.featured-search-empty {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.featured-foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.featured-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  border: 1.5px solid var(--brand);
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    gap 0.2s var(--ease);
}

.featured-all svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke-width: 1.8;
}

.featured-all:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  gap: 0.6rem;
}

@media (prefers-reduced-motion: reduce) {
  .featured-search,
  .featured-search-line,
  .featured-search-go {
    transition: none;
  }

  .featured-search-go:active {
    transform: none;
  }

  .featured-all {
    transition: none;
  }
}

/* Procurement certainty: soft surface trays, not control-sheet boxes. */
.procurement-section {
  --procurement-surface: #edf2f6;
  --procurement-surface-strong: #e4ecf3;
  --procurement-panel: #ffffff;
  --procurement-line: #d7e0e8;
  --procurement-ink: #122536;
  --procurement-muted: #5a6b7a;
  --procurement-accent: var(--brand);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  background:
    linear-gradient(180deg, #f7f9fb 0%, #eef3f7 52%, #f7f9fb 100%);
  color: var(--procurement-ink);
}

.procurement-shell {
  display: grid;
  gap: clamp(1.35rem, 2.4vw, 1.85rem);
  border: 0;
  background: transparent;
}

.procurement-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(7.5rem, 10.5rem) minmax(17rem, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--procurement-panel);
}

.procurement-head-copy {
  min-width: 0;
}

.procurement-head-media {
  margin: 0;
  max-width: 10.5rem;
  width: 100%;
  justify-self: center;
  align-self: center;
  overflow: visible;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
}

.procurement-head-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.procurement-context {
  margin: 0 0 0.85rem;
  color: var(--procurement-accent);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.procurement-head-copy h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--procurement-ink);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.procurement-lead {
  margin: 1.1rem 0 0;
  max-width: 42ch;
  color: var(--procurement-muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.procurement-head-panel {
  display: grid;
  gap: 1.2rem;
  justify-items: stretch;
  max-width: none;
  padding: 1.25rem 1.35rem 1.35rem;
  border: 0;
  background: #f4f7fa;
}

.procurement-commitment {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.procurement-commitment-label {
  color: var(--procurement-accent);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.procurement-commitment-text {
  color: #3d5161;
  font-size: 0.92rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.procurement-cta {
  display: inline-flex;
  min-height: 48px;
  width: 100%;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 750;
  white-space: nowrap;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}

.procurement-cta svg {
  flex: 0 0 auto;
  transition: transform 0.22s var(--ease);
}

.procurement-cta:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.procurement-cta:hover svg {
  transform: translateX(3px);
}

.procurement-cta:active {
  transform: translateY(0);
}

.procurement-cta:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.procurement-timing {
  border-top: 0;
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--procurement-panel);
}

.procurement-block-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.procurement-block-label span {
  color: var(--procurement-muted);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.procurement-block-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: color-mix(in srgb, var(--procurement-line) 75%, transparent);
}

.procurement-timing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1.1rem 0 0;
}

.procurement-timing-item {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  min-height: 12.5rem;
  padding: 1.25rem 1.3rem 1.35rem;
  border: 0;
  background: #f4f7fa;
  overflow: hidden;
}

.procurement-timing-item + .procurement-timing-item {
  border-left: 0;
}

.procurement-timing-item.is-primary {
  background: #eef3f7;
}

.procurement-timing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.38;
  pointer-events: none;
  transform: scale(1.06);
}

.procurement-timing-item.is-primary .procurement-timing-bg {
  object-position: 68% center;
}

.procurement-timing-item:nth-child(3) .procurement-timing-bg {
  object-position: 62% center;
}

.procurement-timing-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 249, 251, 0.82) 42%, rgba(247, 249, 251, 0.42) 100%);
}

.procurement-timing-item.is-primary::after {
  background:
    linear-gradient(115deg, rgba(238, 243, 247, 0.95) 0%, rgba(228, 236, 243, 0.84) 40%, rgba(228, 236, 243, 0.45) 100%);
}

.procurement-timing-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.procurement-timing-label {
  margin: 0;
  color: var(--procurement-accent);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 750;
}

.procurement-timing-value {
  margin: 0;
  color: var(--procurement-ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.procurement-timing-note {
  margin: 0;
  max-width: 28ch;
  color: var(--procurement-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.procurement-details {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.85fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  border-top: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--procurement-panel);
}

.procurement-terms,
.procurement-docs {
  min-width: 0;
  padding: 0;
}

.procurement-docs {
  border-left: 0;
  background: #f4f7fa;
  padding: 1.25rem 1.35rem 1.35rem;
}

.procurement-terms h3,
.procurement-docs h3,
.procurement-quality h3 {
  margin: 0;
  color: var(--procurement-ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.procurement-terms-list {
  display: grid;
  gap: 0;
  margin: 1.35rem 0 0;
  padding: 0;
}

.procurement-term {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.28fr) minmax(0, 1fr);
  gap: 0.85rem 1.5rem;
  align-items: start;
  padding: 0.95rem 0;
  border-top: 1px solid color-mix(in srgb, var(--procurement-line) 80%, transparent);
}

.procurement-term:first-child {
  border-top: 0;
  padding-top: 0;
}

.procurement-terms dt {
  margin: 0;
  color: var(--procurement-accent);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 750;
}

.procurement-terms dd {
  margin: 0;
  color: #334e61;
  font-size: 0.95rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.procurement-docs-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.procurement-docs-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #2c4558;
  font-size: 0.94rem;
  line-height: 1.45;
}

.procurement-docs-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border: 0;
  border-radius: 0;
  background: color-mix(in srgb, var(--procurement-accent) 72%, #fff);
  transform: none;
}

.procurement-docs-note {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--procurement-line) 75%, transparent);
  color: var(--procurement-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.procurement-quality {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: stretch;
  padding: clamp(1.75rem, 3.2vw, 2.75rem) clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid color-mix(in srgb, var(--procurement-line) 78%, transparent);
  background: var(--procurement-panel);
}

.procurement-quality-media {
  margin: 0;
  overflow: hidden;
  background: #eef2f5;
}

.procurement-quality-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  object-position: center;
}

.procurement-quality-main {
  display: grid;
  gap: 1.35rem;
  min-width: 0;
  align-content: start;
}

.procurement-quality-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--procurement-line) 85%, transparent);
}

.procurement-quality-label {
  margin: 0 0 0.55rem;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.procurement-quality-intro h3,
.procurement-quality h3 {
  margin: 0;
  max-width: 16ch;
  color: var(--procurement-ink);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.procurement-quality-accent {
  color: var(--brand);
}

.procurement-quality-lead {
  margin: 0.85rem 0 0;
  max-width: 46ch;
  color: var(--procurement-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.procurement-quality-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  margin-top: 0.15rem;
  padding: 0.7rem 1.15rem;
  background: var(--procurement-ink);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.procurement-quality-cta svg {
  flex: 0 0 auto;
  transition: transform 0.2s var(--ease);
}

.procurement-quality-cta:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.procurement-quality-cta:hover svg {
  transform: translate(2px, -2px);
}

.procurement-quality-cta:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand) 55%, transparent);
  outline-offset: 3px;
}

.procurement-quality-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.75rem;
  margin: 0;
}

.procurement-quality-fact {
  display: grid;
  grid-template-columns: 1.85rem minmax(0, 1fr);
  gap: 0.55rem 0.8rem;
  align-items: start;
  margin: 0;
  padding: 0;
}

.procurement-quality-fact-icon {
  display: grid;
  place-items: start center;
  width: 1.85rem;
  color: var(--brand);
  padding-top: 0.1rem;
}

.procurement-quality-fact-icon svg {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
}

.procurement-quality-fact-body {
  min-width: 0;
  display: grid;
  gap: 0.28rem;
}

.procurement-quality-facts dt {
  margin: 0;
  color: var(--procurement-ink);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.procurement-quality-facts dd {
  margin: 0;
  color: var(--procurement-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .procurement-quality {
    grid-template-columns: 1fr;
    padding-inline: 1.15rem;
  }

  .procurement-quality-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .procurement-quality-intro h3,
  .procurement-quality h3 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .procurement-quality-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .procurement-quality-cta {
    justify-self: start;
  }

  .procurement-quality-facts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .procurement-quality-cta,
  .procurement-quality-cta svg {
    transition: none;
  }

  .procurement-quality-cta:hover,
  .procurement-quality-cta:hover svg {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .procurement-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.9fr);
  }

  .procurement-head-media {
    grid-column: 1 / -1;
    max-width: 8.5rem;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .procurement-head,
  .procurement-details {
    grid-template-columns: 1fr;
  }

  .procurement-head {
    align-items: start;
  }

  .procurement-head-media {
    grid-column: auto;
    max-width: 7.5rem;
    justify-self: start;
  }

  .procurement-head-copy h2 {
    max-width: 14ch;
  }

  .procurement-docs {
    border-top: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .procurement-section {
    padding-block: 3rem;
  }

  .procurement-shell {
    border-inline: 0;
    gap: 1rem;
  }

  .procurement-head,
  .procurement-timing,
  .procurement-details,
  .procurement-quality {
    padding-inline: 1.15rem;
  }

  .procurement-head-copy h2 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .procurement-timing-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .procurement-timing-item + .procurement-timing-item {
    border-left: 0;
  }

  .procurement-term {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .procurement-cta,
  .procurement-cta svg {
    transition: none;
  }

  .procurement-cta:hover,
  .procurement-cta:hover svg {
    transform: none;
  }
}

.product-card.is-search-hidden {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  background: #fff;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  color: var(--text);
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-card-visual {
  position: relative;
  flex: 0 0 auto;
}

.product-card-media {
  display: block;
  flex: 0 0 auto;
  background: #fff;
}

.product-card-media .media-core {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.product-card-media img {
  width: 78%;
  height: 78%;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.product-card:not(.product-card--hover-gallery):hover .product-card-media img {
  transform: scale(1.04);
}

/* Hover gallery: crossfade to 2nd album image */
.product-card-media .media-core.has-hover-alt {
  position: relative;
}

.product-card-media .media-core.has-hover-alt .product-card-img {
  grid-area: 1 / 1;
  justify-self: center;
  align-self: center;
}

.product-card-media .media-core.has-hover-alt .product-card-img--alt {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  /* Specificity must beat .media-core.has-hover-alt .product-card-img--alt { opacity: 0 } */
  .product-card--hover-gallery:hover .product-card-media .media-core.has-hover-alt .product-card-img--primary,
  .product-card--hover-gallery:focus-within .product-card-media .media-core.has-hover-alt .product-card-img--primary {
    opacity: 0;
    transform: none;
  }

  .product-card--hover-gallery:hover .product-card-media .media-core.has-hover-alt .product-card-img--alt,
  .product-card--hover-gallery:focus-within .product-card-media .media-core.has-hover-alt .product-card-img--alt {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card-media img,
  .product-card-media .media-core.has-hover-alt .product-card-img--alt {
    transition: none;
  }
}

.product-card-cart {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid #c8ced6;
  background: #fff;
  color: #080405;
  box-shadow: none;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.product-card-cart svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}

.product-card-cart svg path {
  fill: currentColor;
}

.product-card:hover .product-card-cart,
.product-card:focus-within .product-card-cart {
  color: var(--brand);
  border-color: var(--brand);
}

.product-card-cart:focus-visible {
  outline: 1px solid var(--brand);
  outline-offset: 2px;
}

.product-card-rule {
  display: block;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1px;
  margin: 0.15rem 0 0 0.9rem;
  background: #c8ced6;
  align-self: flex-start;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0;
  min-height: 0;
  padding: 0.85rem 0.9rem 1rem;
}

.product-kicker {
  margin: 0 0 0.15rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #8a929c;
  line-height: 1.35;
}

.product-card-title {
  display: block;
  margin: 0 0 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: #151515;
  transition: color 0.25s var(--ease);
}

a.product-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.28em * 2);
}

.product-card-title:hover {
  color: var(--brand);
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.55rem;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--text-muted);
}

.product-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.product-star {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  background: #d5d9d9;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  color: transparent;
}

.product-star svg {
  display: none;
}

.product-star.is-on {
  background: #e8a317;
  color: transparent;
}

.product-star.is-half {
  background: linear-gradient(90deg, #e8a317 50%, #d5d9d9 50%);
}

.product-rating-count {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 0.55rem;
}

.price-now {
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  color: var(--price, #c4301c);
  font-variant-numeric: tabular-nums;
}

.price-was {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 400;
  color: #9aa3ad;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-variant-numeric: tabular-nums;
}

.product-social-scroll {
  position: relative;
  flex: 1 1 9rem;
  min-width: 8.5rem;
  max-width: 14rem;
  height: 1.35rem;
  margin-left: auto;
  overflow: hidden;
  text-align: right;
}

.product-social-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform 0.55s var(--ease);
}

.product-social-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  height: 1.35rem;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #080405;
  white-space: nowrap;
}

.product-social-icon {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  color: #080405;
}

.product-social-item.is-cart,
.product-social-item.is-views {
  color: #080405;
}

@media (prefers-reduced-motion: reduce) {
  .product-social-track {
    transition: none;
  }
}

.product-card-actions {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  margin-top: auto;
  width: 100%;
}

.product-card-actions .product-inquire {
  margin-top: 0;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.product-card-add {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  min-height: 2.35rem;
  padding: 0;
  border: 1px solid #c8ced6;
  background: #fff;
  color: #151515;
  cursor: pointer;
  transition: none;
}

.product-card-add svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

.product-card-add svg path {
  fill: currentColor;
}

.product-card-add:hover,
.product-card:hover .product-card-add,
.product-card:focus-within .product-card-add {
  color: var(--brand-hover);
  border-color: var(--brand-hover);
  background: #fff;
}

.product-card-add:focus-visible {
  outline: 1px solid var(--brand);
  outline-offset: 2px;
}

.product-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(11, 58, 110, 0.22);
  background: #f3f6f9;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand);
  text-align: center;
  cursor: pointer;
  transition: none;
}

.product-inquire-label {
  display: inline;
}

.product-inquire svg {
  flex: 0 0 auto;
  opacity: 0.75;
  transition: none;
}

.product-inquire:hover,
.product-card:hover .product-inquire,
.product-card:focus-within .product-inquire {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.product-inquire:hover svg,
.product-card:hover .product-inquire svg,
.product-card:focus-within .product-inquire svg {
  opacity: 1;
}

.product-card--more {
  background: #fff;
}

.product-card-more-copy {
  display: grid;
  gap: 0.45rem;
  flex: 0 0 auto;
  padding: 1rem 1rem 0.85rem;
}

.product-card--more .product-kicker {
  color: #5c6670;
}

.product-card--more .product-card-title {
  font-size: 1.12rem;
  max-width: 12ch;
  min-height: 0;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.product-card-more-go {
  width: 2rem;
  height: 2rem;
  margin-top: 0.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.product-card--more:hover .product-card-more-go {
  background: var(--brand);
  transform: translateX(2px);
}

.product-card-more-media {
  position: relative;
  display: block;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

.product-card-more-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.08) saturate(1.1) brightness(0.98);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  /* Wider inquire CTA + quote icon; cart stays square */
  .product-card-actions {
    justify-content: stretch;
    gap: 0.4rem;
  }

  .product-card-actions .product-inquire {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    min-height: 2.35rem;
    padding: 0 0.65rem;
    gap: 0;
  }

  .product-inquire-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .product-inquire svg {
    width: 1.15rem;
    height: 1.15rem;
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
    gap: 0.5rem;
  }

  .product-card-body {
    padding: 0.65rem 0.55rem 0.75rem;
  }

  .product-card-rule {
    margin-left: 0.55rem;
  }

  .product-card-title {
    font-size: 0.88rem;
  }

  .product-kicker {
    font-size: 0.68rem;
  }
}

.media-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.media-core {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--surface);
  overflow: hidden;
}

.media-core img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: transform 0.55s var(--ease);
}

.price {
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  color: var(--price, #c4301c);
}

.stars {
  color: #c4a35a;
  font-size: 0.88rem;
}

.stars span {
  color: var(--text-muted);
  margin-left: 0.25rem;
}

/* Legacy product-tile (PDP related lists / older markup) */
.product-tile {
  display: grid;
  gap: 0.75rem;
  transition: transform 0.4s var(--ease);
}

.product-tile:hover {
  transform: translateY(-3px);
}

.product-tile:hover .media-core img {
  transform: scale(1.04);
}

.product-meta h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.product-meta .row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

/* —— About Reachsky (reference layout) —— */
.about-section {
  background: #f3f5f7;
  border-block: 0;
  overflow: visible;
}

.about-stage {
  position: relative;
}

.about-split {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-items: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

@media (min-width: 960px) {
  .about-split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.about-split-copy {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(18rem, 36vw, 28rem);
  padding: clamp(0.35rem, 1vw, 0.75rem) 0;
}

.about-split-copy::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2%;
  left: auto;
  z-index: -1;
  width: min(125%, 38rem);
  height: min(100%, 26rem);
  transform: translateY(-50%);
  background: url("../assets/images/about-map-bg.png?v=5") right center / contain no-repeat;
  opacity: 0.85;
  pointer-events: none;
}

.about-watermark {
  position: absolute;
  left: -0.1em;
  top: 0.1em;
  z-index: -1;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 14vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(15, 23, 32, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.about-kicker {
  position: relative;
  margin: 0 0 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
}

.about-split-copy h2 {
  position: relative;
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #151515;
  text-wrap: balance;
}

.about-lead {
  position: relative;
  margin: 0.55rem 0 0;
  max-width: 28ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #3d4650;
}

.about-rule {
  position: relative;
  width: 2.75rem;
  height: 3px;
  margin: 1.1rem 0 1.25rem;
  border: 0;
  background: var(--brand);
}

.about-rich p {
  position: relative;
  margin: 0 0 1.55rem;
  max-width: min(100%, 58rem);
  color: #5c6670;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-rich p:last-child {
  margin-bottom: 1.55rem;
}

.about-more {
  position: relative;
  gap: 0.45rem;
  min-height: 2.7rem;
  padding-inline: 1.35rem;
  border-radius: 2px;
  background: #0a2f5c;
}

.about-more:hover {
  background: var(--brand-hover);
}

.about-more svg {
  transition: transform 0.25s var(--ease);
}

.about-more:hover svg {
  transform: translateX(2px);
}

.about-split-media {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e8ebef;
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.08);
  position: relative;
}

.about-split-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-split:hover .about-split-media:not(.about-media-carousel) img {
  transform: scale(1.03);
}

.about-media-carousel {
  display: grid;
}

.about-media-slides {
  position: relative;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.about-media-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.about-media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-ui {
  position: absolute;
  z-index: 2;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  pointer-events: none;
}

.about-media-nav,
.about-media-dots {
  pointer-events: auto;
}

.about-media-nav {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 32, 0.14);
}

.about-media-nav:hover {
  background: #fff;
  color: var(--brand);
}

.about-media-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.38);
}

.about-media-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.about-media-dots button.is-active {
  background: #fff;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .about-media-slide {
    transition: none;
  }
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1rem;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  border-top: 1px solid rgba(15, 23, 32, 0.1);
  background: transparent;
  box-shadow: none;
}

@media (min-width: 720px) {
  .about-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .about-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    text-align: center;
  }
}

.about-metric {
  min-width: 0;
}

@media (min-width: 1100px) {
  .about-metric {
    display: grid;
    justify-items: center;
  }
}

.about-metric-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: inherit;
  gap: 0.12rem;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 1100px) {
  .about-metric-value {
    justify-content: center;
  }
}

.about-metric-suffix {
  font-size: 0.52em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-metric-label {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: #151515;
}

@media (prefers-reduced-motion: reduce) {
  .about-split-media img,
  .about-split:hover .about-split-media:not(.about-media-carousel) img,
  .about-more svg,
  .about-more:hover svg {
    transition: none;
    transform: none;
  }
}

/* —— Advantages (6-up) —— */
.advantages-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.advantages-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.advantages-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 720px) {
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.advantage-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.45rem 1.15rem 1.45rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

@media (min-width: 720px) {
  .advantage-item {
    padding: 1.55rem 1.35rem 1.55rem 0;
  }

  .advantage-item:nth-child(2n) {
    padding-left: 1.35rem;
    border-left: 1px solid var(--line);
  }
}

@media (min-width: 1024px) {
  .advantage-item {
    padding: 1.65rem 1.5rem 1.65rem 0;
  }

  .advantage-item:nth-child(2n) {
    padding-left: 0;
    border-left: 0;
  }

  .advantage-item:nth-child(3n + 2),
  .advantage-item:nth-child(3n + 3) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
  }
}

.advantage-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--brand);
  flex-shrink: 0;
}

.advantage-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 58, 110, 0.08);
  border-radius: 999px;
  transform: translate(4px, 4px);
  transition: transform 0.3s var(--ease);
}

.advantage-item:hover .advantage-icon::before {
  transform: translate(0, 0);
}

.advantage-icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  transition: transform 0.3s var(--ease);
}

.advantage-item:hover .advantage-icon svg {
  transform: scale(0.88);
}

@media (prefers-reduced-motion: reduce) {
  .advantage-icon::before,
  .advantage-icon svg {
    transition: none;
  }

  .advantage-item:hover .advantage-icon svg {
    transform: none;
  }
}

.advantage-copy h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.advantage-copy p {
  margin: 0;
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* —— OEM band: viewport-fixed backdrop (clip-path keeps it inside the section) —— */
.oem-section {
  position: relative;
  isolation: isolate;
  /* clip fixed child to this section; body overflow-x:hidden breaks background-attachment:fixed */
  clip-path: inset(0);
  border: 0;
  background: #071525;
  padding-block: clamp(5rem, 11vw, 8rem);
  color: #fff;
}

.oem-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--oem-bg-image, url("../assets/images/oem-band-bg.webp")) center / cover no-repeat;
  pointer-events: none;
}

.oem-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 70% at 50% 48%, rgba(4, 12, 24, 0.28) 0%, rgba(4, 12, 24, 0.72) 62%, rgba(4, 12, 24, 0.88) 100%),
    linear-gradient(180deg, rgba(4, 12, 24, 0.55) 0%, rgba(4, 12, 24, 0.28) 42%, rgba(4, 12, 24, 0.62) 100%);
}

.oem-shell {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.oem-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  background: transparent;
}

.oem-band h2 {
  display: grid;
  gap: 0.2em;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: #fff;
  text-wrap: balance;
}

.oem-title-lead {
  display: block;
  font-size: clamp(2.35rem, 5.4vw, 3.85rem);
  letter-spacing: -0.045em;
}

.oem-title-sub {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(236, 242, 248, 0.78);
}

.oem-rule {
  width: 2.75rem;
  height: 2px;
  margin: 1.35rem 0 1.25rem;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
}

.oem-band p {
  margin: 0 0 1.85rem;
  color: rgba(232, 238, 245, 0.78);
  max-width: 42ch;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.oem-cta {
  min-height: 3rem;
  padding-inline: 1.7rem;
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(4, 12, 24, 0.35);
}

.oem-cta:hover {
  transform: translateY(-1px);
}

.oem-cta:active {
  transform: translateY(0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .oem-cta:hover,
  .oem-cta:active {
    transform: none;
  }
}

/* —— Support: downloads + contact panels —— */
/* —— Technical insights / blog Q&A —— */
.insights-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.insights-layout {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: start;
}

@media (min-width: 960px) {
  .insights-layout {
    grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.insights-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.insights-head p {
  margin: 0 0 1.25rem;
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.insights-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap 0.25s var(--ease);
}

.insights-all:hover {
  gap: 0.55rem;
}

.insights-feed {
  border-top: 1px solid var(--line);
  min-height: 8rem;
}

.insights-item {
  border-bottom: 1px solid var(--line);
}

.insights-item[open] .insights-q svg {
  transform: rotate(45deg);
}

.insights-q {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
  list-style: none;
}

.insights-q::-webkit-details-marker {
  display: none;
}

.insights-q svg {
  flex-shrink: 0;
  color: var(--brand);
  transition: transform 0.25s var(--ease);
}

.insights-a {
  padding: 0 0 1.2rem;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.insights-a p {
  margin: 0 0 0.75rem;
}

.insights-a p:last-child {
  margin-bottom: 0;
}

.insights-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #9aa3ad;
}

.insights-meta a {
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
}

.insights-status {
  padding: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* —— Partners / customer logo wall —— */
.partners-section {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.partners-title {
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: center;
  color: var(--text);
  text-wrap: balance;
}

.partners-carousel {
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
  }
}

@media (min-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.75rem 2rem;
  }
}

.partners-grid li {
  display: grid;
  place-items: center;
  min-height: 3.5rem;
  padding: 0.35rem 0.5rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.partners-grid img {
  display: block;
  width: min(100%, 9.5rem);
  height: 2.5rem;
  object-fit: contain;
}

.partners-nav {
  display: none;
  place-items: center;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #222;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.partners-nav--prev {
  left: 0;
}

.partners-nav--next {
  right: 0;
}

.partners-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Mobile / tablet: fixed 3-row logo carousel */
@media (max-width: 899px) {
  .partners-section {
    padding-block: clamp(2.5rem, 5vw, 3.25rem);
  }

  .partners-title {
    margin-bottom: 1.25rem;
  }

  .partners-carousel {
    padding-inline: 2.4rem;
  }

  .partners-nav {
    display: grid;
  }

  .partners-grid {
    --partners-gap: 0.7rem;
    --partners-row: 3.1rem;
    display: grid;
    grid-template-columns: none;
    grid-template-rows: repeat(3, var(--partners-row));
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--partners-gap) * 2)) / 3);
    gap: var(--partners-gap);
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: calc((var(--partners-row) * 3) + (var(--partners-gap) * 2));
    padding: 0.15rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .partners-grid::-webkit-scrollbar {
    display: none;
  }

  .partners-grid li {
    min-height: 0;
    height: 100%;
    padding: 0.2rem;
    scroll-snap-align: start;
  }

  .partners-grid img {
    width: min(100%, 7.5rem);
    height: 2.15rem;
  }
}

.support-panels {
  padding-block: clamp(4rem, 7vw, 5.75rem);
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.support-panels-head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 46ch;
}

.support-panels-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.support-panels-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.support-panels-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .support-panels-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    align-items: stretch;
  }
}

.support-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.35rem;
  min-height: 100%;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-panel-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.support-panel-copy p {
  margin: 0;
  max-width: 38ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.support-download-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.support-download-list li + li {
  border-top: 1px solid var(--line);
}

.support-download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0.1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.support-download-list a:hover {
  color: var(--brand);
}

.support-download-meta {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #8a929c;
}

.support-panel--contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: #0a2f5a;
  border-color: transparent;
  color: #fff;
  border-radius: 2px;
}

.support-panel--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 11px,
      rgba(255, 255, 255, 0.028) 11px,
      rgba(255, 255, 255, 0.028) 12px
    );
  pointer-events: none;
}

.support-panel--contact::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -35%;
  z-index: 0;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 143, 209, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.support-contact-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.45rem, 2.6vw, 1.95rem) clamp(1.45rem, 2.6vw, 1.95rem) 1.35rem;
}

@media (min-width: 520px) {
  .support-contact-stage {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem 1.75rem;
  }
}

.support-contact-stat {
  display: grid;
  gap: 0.2rem;
  min-width: 5.5rem;
  padding-right: 0.25rem;
}

.support-contact-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: #fff;
}

.support-contact-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.support-panel--contact .support-panel-copy h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.3vw, 1.75rem);
  color: #fff;
}

.support-panel--contact .support-panel-copy p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

.support-contact-scope {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 clamp(1.45rem, 2.6vw, 1.95rem);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.support-contact-scope li {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.92rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.4;
}

.support-contact-scope li:last-child {
  border-bottom: 0;
}

.support-contact-idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}

.support-contact-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: 1.05rem clamp(1.45rem, 2.6vw, 1.95rem);
  background: #fff;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.support-contact-cta svg {
  flex: 0 0 auto;
  transition: transform 0.28s var(--ease);
}

.support-contact-cta:hover {
  background: #e8eef5;
  color: var(--brand-hover);
}

.support-contact-cta:hover svg {
  transform: translateX(4px);
}

.support-contact-cta:active {
  transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
  .support-contact-cta,
  .support-contact-cta svg {
    transition: none;
  }

  .support-contact-cta:hover svg {
    transform: none;
  }
}

@media (max-width: 719px) {
  .support-panels {
    padding-block: 3.25rem;
  }
}

/* —— Footer: brand-aligned commerce layout —— */
/* —— Trust / service strip above footer —— */
.trust-bar {
  background: #f4f6f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.35rem, 2.8vw, 1.85rem);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-bar-item:nth-child(even) {
  padding-left: 0.85rem;
  border-left: 1px solid var(--line-strong);
}

@media (min-width: 640px) {
  .trust-bar-grid {
    row-gap: 1.35rem;
  }

  .trust-bar-item:nth-child(even) {
    padding-left: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 0;
  }
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .trust-bar-item {
    gap: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .trust-bar-item {
    padding-inline: 1.35rem;
    border-left: 1px solid var(--line-strong);
  }

  .trust-bar-item:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .trust-bar-item:last-child {
    padding-right: 0;
  }

  .trust-bar-item:nth-child(even) {
    padding-left: 1.35rem;
  }
}

.trust-bar-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brand);
}

.trust-bar-icon svg {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
}

.trust-bar-icon svg path {
  fill: currentColor;
}

.trust-bar-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.trust-bar-copy strong {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text);
}

.trust-bar-copy span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-muted);
}

.site-footer {
  --footer-accent: var(--brand-hover);
  --footer-muted: rgba(255, 255, 255, 0.62);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-ui);
  border-top: 0;
  background: #000;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.88) 50%, rgba(0, 0, 0, 0.92) 100%),
    url("../assets/images/footer-global-service.webp") center / cover no-repeat;
  pointer-events: none;
}

.footer-mid {
  width: var(--shell-width);
  margin-left: var(--shell-margin-left);
  margin-right: var(--shell-margin-right);
}

.footer-main {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 56px 0 40px;
}

@media (min-width: 1100px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
  }
}

.footer-links-wrap {
  display: grid;
  gap: 36px;
  min-width: 0;
}

.footer-brand-block {
  max-width: 34rem;
}

.footer-brand {
  display: inline-flex;
  line-height: 0;
  margin-bottom: 1rem;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 2rem;
  max-width: 11.5rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand-copy {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-brand-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
}

@media (min-width: 800px) {
  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 48px;
  }
}

.footer-col {
  margin: 0;
}

.footer-col dt {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.footer-col dd {
  margin: 0 0 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-trust {
  display: grid;
  gap: 22px;
  max-width: 46rem;
}

.footer-pay-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-pay-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-pay-panel img {
  height: 30px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 2px;
  padding: 3px 5px;
}

.footer-sec-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-sec {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-sec-panel {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.footer-sec-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  opacity: 0.95;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

a.footer-sec-badge:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-sec-badge img {
  height: 28px;
  width: auto;
  display: block;
  border: 0;
  border-radius: 0;
}

.footer-bar-copy .footer-sec {
  margin-left: 0.25rem;
}

@media (max-width: 719px) {
  .footer-sec-badge img {
    height: 24px;
  }
}

.footer-aside {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.footer-contact-title,
.footer-subscribe-title,
.footer-social-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-contact-list li {
  display: grid;
  gap: 0.15rem;
  margin: 0;
}

.footer-contact-list li > span:first-child {
  color: var(--footer-muted);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact-list a,
.footer-contact-list li > span:last-child {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.4;
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.footer-subscribe {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 3px 3px 3px 14px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.footer-subscribe input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: #8a9199;
}

.footer-subscribe input:focus {
  outline: none;
}

.footer-subscribe button {
  flex-shrink: 0;
  height: 40px;
  padding: 0 1.15rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease);
}

.footer-subscribe button:hover {
  background: var(--brand-hover);
}

.footer-subscribe button:active {
  transform: scale(0.98);
}

.footer-subscribe .cnc-form-toast-anchor,
.footer-subscribe .cnc-newsletter-submit-anchor {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.footer-subscribe .cnc-newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  transform: none;
  box-shadow: none;
}

.footer-subscribe .cnc-newsletter-submit:hover:not(:disabled),
.footer-subscribe .cnc-newsletter-submit:active:not(:disabled) {
  transform: none;
  box-shadow: none;
}

.footer-subscribe .cnc-newsletter-submit__spinner {
  display: none;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
}

.footer-subscribe.is-loading .cnc-newsletter-submit__spinner {
  display: inline-block;
  animation: mz-footer-sub-spin 0.7s linear infinite;
}

@keyframes mz-footer-sub-spin {
  to {
    transform: rotate(360deg);
  }
}

.footer-subscribe-tip {
  margin: 10px 0 0;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 1.45;
}

.footer-subscribe-tip b {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-subscribe-tip a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-subscribe-tip a:hover {
  color: var(--accent);
}

.footer-social-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-social-panel a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  color: #151515;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-social-panel a svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.footer-social-panel a:hover {
  background: var(--brand);
  color: #fff;
}

.footer-social-panel a:active {
  transform: scale(0.96);
}

.footer-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-ratings img {
  display: block;
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.footer-bar {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
}

.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 18px 0 28px;
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.4;
}

.footer-bar-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.footer-bar-copy-text {
  display: inline;
}

.footer-bar-copy-text p {
  display: inline;
  margin: 0;
}

.footer-bar-copy-text p + p::before {
  content: " · ";
}

.footer-ssl {
  color: rgba(255, 255, 255, 0.72);
}

.footer-ssl::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.35em;
  vertical-align: -0.05em;
  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='black' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='1.5'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%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='black' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='1.5'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-bar-inner button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.footer-bar-inner button:hover {
  color: #fff;
}

.footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
  margin-left: auto;
}

.footer-bar-links a {
  color: var(--footer-muted);
  transition: color 0.2s var(--ease);
}

.footer-bar-links a:hover {
  color: #fff;
}

@media (max-width: 719px) {
  .footer-main {
    padding: 36px 0 28px;
  }

  .footer-col dt,
  .footer-pay-title,
  .footer-sec-title,
  .footer-contact-title,
  .footer-subscribe-title,
  .footer-social-title {
    font-size: 15px;
  }

  .footer-col a {
    font-size: 13px;
  }
}

/* —— Intent popup: B2C vs B2B path picker —— */
.intent-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.intent-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.intent-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.intent-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  max-height: min(92dvh, 46rem);
  overflow: auto;
  padding: clamp(1.35rem, 3.5vw, 2.4rem);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(11, 58, 110, 0.06) 0%, rgba(255, 255, 255, 0) 42%),
    #fff;
  box-shadow: 0 28px 80px rgba(8, 12, 18, 0.28);
  color: var(--text);
  transform: translateY(0.75rem) scale(0.985);
  transition: transform 0.45s var(--ease);
}

.intent-popup.is-open .intent-popup-dialog {
  transform: none;
}

.intent-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #151515;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.intent-popup-close:hover {
  background: rgba(15, 23, 32, 0.06);
  color: var(--brand);
}

.intent-popup-head {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.intent-popup-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.intent-popup-head h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #121417;
}

.intent-popup-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.intent-popup-paths {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .intent-popup-paths {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

.intent-path {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.2rem 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.intent-path-label {
  margin: 0;
  justify-self: start;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.intent-path h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #121417;
}

.intent-path > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.intent-path ul {
  margin: 0.15rem 0 0.35rem;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.intent-path li + li {
  margin-top: 0.25rem;
}

.intent-path-cta {
  justify-self: stretch;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 600;
}

.intent-popup-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.intent-popup-foot p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.intent-popup-foot a {
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.intent-popup-foot a:hover {
  color: var(--brand-hover);
}

@media (prefers-reduced-motion: reduce) {
  .intent-popup,
  .intent-popup-dialog {
    transition: none;
  }

  .intent-popup-dialog {
    transform: none;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 10050;
  transform: translateX(-50%) translateY(120%);
  box-sizing: border-box;
  max-width: min(26rem, calc(100vw - 2rem));
  padding: 0.72rem 1.15rem;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 32px rgba(21, 21, 21, 0.14);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.38s var(--ease),
    opacity 0.22s var(--ease),
    visibility 0.22s;
}

.toast.is-on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toast--ok {
  border-color: #b7dfc8;
  color: #1d5c38;
  background: #f4fbf7;
}

.toast--err {
  border-color: #ecc8c8;
  color: #8f1f1f;
  background: #fff6f6;
}

.toast--info {
  border-color: var(--line-strong);
  color: var(--text);
  background: #fff;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(0.8rem, 2vw, 1.4rem);
  background: rgba(4, 7, 12, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease);
}

.image-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-viewer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.image-viewer-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.image-viewer-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.viewer-btn {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.viewer-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.48);
}

.viewer-btn:active {
  transform: translateY(1px);
}

.viewer-btn::before,
.viewer-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.viewer-btn[data-viewer-zoom-in]::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.viewer-btn[data-viewer-close]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.viewer-btn[data-viewer-close]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.viewer-btn[data-viewer-reset]::before {
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.viewer-btn[data-viewer-reset]::after {
  width: 0.42rem;
  transform: translate(0.12rem, 0.34rem) rotate(45deg);
}

.viewer-btn[data-viewer-prev]::before,
.viewer-btn[data-viewer-next]::before {
  width: 0.72rem;
  height: 0.72rem;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  background: transparent;
}

.viewer-btn[data-viewer-prev]::before {
  transform: translate(-38%, -50%) rotate(45deg);
}

.viewer-btn[data-viewer-next]::before {
  transform: translate(-62%, -50%) rotate(225deg);
}

.viewer-btn[data-viewer-prev]::after,
.viewer-btn[data-viewer-next]::after {
  display: none;
}

.image-viewer-stage {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.image-viewer-stage img,
.image-viewer-stage video {
  max-width: min(92vw, 1280px);
  max-height: calc(100dvh - 7rem);
  object-fit: contain;
}

.image-viewer-stage img {
  transform: scale(var(--viewer-scale, 1));
  transform-origin: center;
  transition: transform 0.18s var(--ease), opacity 0.2s var(--ease);
  opacity: 0;
}

.image-viewer-stage video {
  width: min(92vw, 960px);
  background: #000;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.image-viewer.is-ready .image-viewer-stage img,
.image-viewer.is-ready .image-viewer-stage video {
  opacity: 1;
}

.image-viewer.is-video [data-viewer-zoom-in],
.image-viewer.is-video [data-viewer-zoom-out],
.image-viewer.is-video [data-viewer-reset] {
  display: none;
}

.review-media-thumb.is-video {
  cursor: pointer;
}

@media (max-width: 719px) {
  .image-viewer {
    padding: 0.8rem;
  }

  .image-viewer-bar {
    align-items: flex-start;
  }

  .image-viewer-tools {
    gap: 0.3rem;
  }

  .viewer-btn {
    width: 2.35rem;
    height: 2.35rem;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
  /* blur(0) still enables filter and flickers when nested <details> resize */
  filter: none;
}

/* PDP */
.pdp-page {
  padding-top: var(--header-h);
  background: var(--bg);
  min-height: 60dvh;
  max-width: 100%;
  overflow-x: clip;
}

.pdp-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: clamp(5.5rem, 9vw, 6.75rem);
  overflow: hidden;
  color: #f4f6f8;
}

.pdp-hero:has(.pdp-hero-search--ajax) {
  overflow: visible;
}

.pdp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pdp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.pdp-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  background:
    linear-gradient(90deg, rgba(8, 22, 42, 0.88) 0%, rgba(8, 22, 42, 0.62) 48%, rgba(8, 22, 42, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 22, 42, 0.28) 0%, rgba(8, 22, 42, 0.5) 100%);
}

.pdp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-block: 0.95rem;
}

.pdp-hero-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.pdp-hero-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(244, 246, 248, 0.72);
}

.pdp-hero-crumb a {
  color: rgba(244, 246, 248, 0.8);
  text-decoration: none;
}

.pdp-hero-crumb a:hover {
  color: #fff;
}

.pdp-hero-label {
  margin: 0.3rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.78);
}

.pdp-hero-search {
  position: relative;
  flex: 0 1 17.5rem;
  min-width: 12rem;
  max-width: 20rem;
}

.pdp-hero-search-bar {
  display: flex;
  align-items: stretch;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.pdp-hero-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0 0.75rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  outline: none;
}

.pdp-hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.pdp-hero-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s var(--ease);
}

.pdp-hero-search-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.pdp-hero-search:focus-within .pdp-hero-search-bar {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.pdp-hero-search--ajax {
  z-index: 30;
}

.pdp-hero-search-results {
  top: calc(100% + 0.45rem);
  min-width: 18rem;
  border-radius: 2px;
}

.pdp {
  padding-top: 1.75rem;
  padding-bottom: 0.5rem;
  background: var(--bg);
}

@media (max-width: 720px) {
  .pdp-hero {
    min-height: 0;
  }

  .pdp-hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding-block: 0.85rem;
  }

  .pdp-hero-search {
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  .pdp {
    padding-top: 1.25rem;
  }
}

.pdp-main {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 2.5rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 900px) {
  .pdp-main {
    /* Fluid gallery | info — scales with shell, no fixed 34rem gallery trap */
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.35rem, 2.8vw, 2.75rem);
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .pdp-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: clamp(1.75rem, 3.2vw, 3rem);
  }
}

/* Bundle: mobile-first stack; widen with container + viewport fallbacks */
.pdp-bundle {
  min-width: 0;
  max-width: 100%;
  container-type: inline-size;
  container-name: pdp-bundle;
}

.pdp-bundle-row {
  display: grid;
  gap: 0.9rem;
  align-items: start;
  min-width: 0;
}

.pdp-bundle-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
}

.pdp-bundle-plus {
  display: none;
  place-items: center;
  flex: 0 0 auto;
  width: 1rem;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  color: #8a939e;
  align-self: center;
  user-select: none;
}

.pdp-bundle-item,
.pdp-bundle-item.is-locked {
  min-width: 0;
  max-width: none;
  width: 100%;
}

.pdp-bundle-card {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.45rem 0.55rem;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: 0.6rem 0.7rem 0.6rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}

.pdp-bundle-item.is-locked .pdp-bundle-card {
  cursor: default;
  background: #f8f9fb;
}

.pdp-bundle-card:has(input:checked) {
  border-color: rgba(11, 58, 110, 0.38);
}

.pdp-bundle-check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pdp-bundle-check input {
  width: 0.95rem;
  height: 0.95rem;
  accent-color: var(--brand);
  cursor: pointer;
}

.pdp-bundle-item.is-locked .pdp-bundle-check input {
  cursor: default;
}

.pdp-bundle-thumb {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #f3f5f7;
  overflow: hidden;
  flex-shrink: 0;
}

.pdp-bundle-thumb img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.pdp-bundle-meta {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  align-content: center;
}

.pdp-bundle-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--text);
}

.pdp-bundle-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brand);
  white-space: nowrap;
}

.pdp-bundle-summary {
  display: grid;
  gap: 0.4rem;
  align-content: start;
  justify-items: stretch;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 1rem 1.05rem 1.1rem;
  border: 0;
  border-radius: 2px;
  background: #eef2f6;
  box-shadow: none;
}

.pdp-bundle-total {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7380;
}

.pdp-bundle-total strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: none;
  color: var(--text);
  overflow-wrap: anywhere;
}

.pdp-bundle-count {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.pdp-bundle-summary .btn {
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.9rem;
  font-weight: 650;
}

/* Mid: one horizontal row (scroll if needed) — never wrap “+” onto its own line */
@container pdp-bundle (min-width: 560px) {
  .pdp-bundle-items {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.45rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
  }

  .pdp-bundle-plus {
    display: grid;
  }

  .pdp-bundle-item,
  .pdp-bundle-item.is-locked {
    flex: 0 0 min(15rem, 78vw);
    width: auto;
    max-width: 16.5rem;
  }

  .pdp-bundle-item.is-locked {
    flex-basis: min(16rem, 82vw);
    max-width: 18rem;
  }

  .pdp-bundle-name {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

/* Wide panel: cards + summary side-by-side */
@container pdp-bundle (min-width: 860px) {
  .pdp-bundle-row {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 16.5rem);
    gap: 1.1rem 1.25rem;
    align-items: center;
  }

  .pdp-bundle-item,
  .pdp-bundle-item.is-locked {
    flex-basis: 14.25rem;
    max-width: 15.5rem;
  }

  .pdp-bundle-item.is-locked {
    flex-basis: 15.25rem;
    max-width: 17rem;
  }

  .pdp-bundle-summary {
    min-height: 100%;
    align-content: center;
    padding: 1.1rem 1.2rem 1.15rem;
  }

  .pdp-bundle-thumb {
    width: 3.15rem;
    height: 3.15rem;
  }
}

/* Viewport fallbacks (no container query support / nested shells) */
@media (min-width: 720px) {
  .pdp-bundle-items {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.45rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
  }

  .pdp-bundle-plus {
    display: grid;
  }

  .pdp-bundle-item,
  .pdp-bundle-item.is-locked {
    flex: 0 0 14.5rem;
    width: auto;
    max-width: 16rem;
  }

  .pdp-bundle-item.is-locked {
    flex-basis: 15.5rem;
    max-width: 17.5rem;
  }
}

@media (min-width: 900px) {
  .pdp-bundle-row {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 16.5rem);
    gap: 1.1rem 1.25rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .pdp-bundle-item {
    flex-basis: 14.75rem;
    max-width: 16rem;
  }

  .pdp-bundle-item.is-locked {
    flex-basis: 16rem;
    max-width: 18rem;
  }
}

/* Force stack on small viewports even if CQ unsupported */
@media (max-width: 719px) {
  .pdp-bundle-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdp-bundle-items {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    overflow: visible;
  }

  .pdp-bundle-plus {
    display: none;
  }

  .pdp-bundle-item,
  .pdp-bundle-item.is-locked {
    width: 100%;
    max-width: none;
    flex: none;
  }
}

.pdp-gallery {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  container-type: inline-size;
  container-name: pdp-gallery;
}

@media (min-width: 900px) {
  .pdp-gallery {
    position: sticky;
    top: calc(var(--header-h) + 0.85rem);
    align-self: start;
    z-index: 2;
    max-height: calc(100dvh - var(--header-h) - 1.5rem);
    overflow: auto;
  }
}

.pdp-gallery-stage {
  position: relative;
  border-radius: 2px;
  background: #f3f5f7;
  border-color: #e4e7ec;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.gallery-main .media-core {
  aspect-ratio: 1;
  width: 100%;
  max-width: 100%;
  max-height: min(40rem, 70dvh);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 42%),
    #f3f5f7;
}

.gallery-main .media-core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Main stage hover chrome: prev/next, zoom, wheel hint */
.pdp-gallery-ui {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.pdp-gallery-btn {
  pointer-events: auto;
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #151515;
  box-shadow: 0 6px 18px rgba(21, 21, 21, 0.12);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.pdp-gallery-btn svg {
  display: block;
}

.pdp-gallery-btn--zoom {
  top: 0.85rem;
  right: 0.85rem;
}

.pdp-gallery-btn--prev,
.pdp-gallery-btn--next {
  top: 50%;
  transform: translateY(-50%) scale(0.94);
}

.pdp-gallery-btn--prev {
  left: 0.75rem;
}

.pdp-gallery-btn--next {
  right: 0.75rem;
}

.pdp-gallery-hint {
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 4px 14px rgba(21, 21, 21, 0.08);
  color: rgba(21, 21, 21, 0.72);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.pdp-gallery-hint-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: rgba(21, 21, 21, 0.78);
}

.pdp-gallery-hint-icon svg {
  display: block;
  overflow: visible;
}

.pdp-gallery-hint-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: pdp-wheel-nudge 1.35s var(--ease) infinite;
}

@keyframes pdp-wheel-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(1.6px);
  }
}

.pdp-gallery-btn:hover {
  background: #fff;
  border-color: rgba(11, 58, 110, 0.28);
  color: var(--brand);
}

.pdp-gallery-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .pdp-gallery-stage:hover .pdp-gallery-btn,
  .pdp-gallery-stage:focus-within .pdp-gallery-btn {
    opacity: 1;
    transform: scale(1);
  }

  .pdp-gallery-stage:hover .pdp-gallery-btn--prev,
  .pdp-gallery-stage:hover .pdp-gallery-btn--next,
  .pdp-gallery-stage:focus-within .pdp-gallery-btn--prev,
  .pdp-gallery-stage:focus-within .pdp-gallery-btn--next {
    transform: translateY(-50%) scale(1);
  }

  .pdp-gallery-stage:hover .pdp-gallery-hint,
  .pdp-gallery-stage:focus-within .pdp-gallery-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (hover: none), (pointer: coarse) {
  .pdp-gallery-btn {
    opacity: 0.96;
    transform: scale(1);
  }

  .pdp-gallery-btn--prev,
  .pdp-gallery-btn--next {
    transform: translateY(-50%) scale(1);
  }

  .pdp-gallery-hint {
    opacity: 0.9;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-gallery-btn,
  .pdp-gallery-hint {
    transition: none;
  }

  .pdp-gallery-hint-wheel {
    animation: none;
  }
}

@media (max-width: 640px) {
  .pdp-gallery-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

  .pdp-gallery-hint {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
    bottom: 0.6rem;
  }
}

.pdp-thumbs-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr) 1.35rem;
  align-items: center;
  gap: 0.2rem;
  min-width: 0;
  width: 100%;
}

.pdp-thumbs-carousel:not(.is-overflow) {
  grid-template-columns: minmax(0, 1fr);
}

.pdp-thumbs-carousel:not(.is-overflow) .pdp-thumbs-nav {
  display: none;
}

.pdp-thumbs-nav {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: clamp(3.25rem, 18cqi, 6.5rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(21, 21, 21, 0.38);
  box-shadow: none;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.pdp-thumbs-nav svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.pdp-thumbs-nav:hover {
  color: var(--brand);
  background: transparent;
}

.pdp-thumbs-nav:active {
  transform: scale(0.94);
}

.pdp-thumbs-nav[hidden] {
  display: none;
}

.pdp-thumbs-nav:disabled,
.pdp-thumbs-nav[aria-disabled="true"] {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.pdp-thumbs,
.thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.35rem, 1.2cqi, 0.55rem);
  margin-top: 0;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pdp-thumbs::-webkit-scrollbar,
.thumbs::-webkit-scrollbar {
  display: none;
}

.pdp-thumbs button,
.thumbs button {
  --pdp-thumb-size: clamp(3.75rem, 18cqi, 7.25rem);
  flex: 0 0 auto;
  width: var(--pdp-thumb-size);
  height: var(--pdp-thumb-size);
  aspect-ratio: 1;
  padding: clamp(0.2rem, 0.8cqi, 0.35rem);
  border-radius: 2px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  opacity: 0.78;
  scroll-snap-align: start;
  transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}

/* Fallback when container queries unavailable */
@supports not (width: 1cqi) {
  .pdp-thumbs button,
  .thumbs button {
    --pdp-thumb-size: clamp(3.75rem, 14vw, 7.25rem);
  }

  .pdp-thumbs-nav {
    height: clamp(3.25rem, 14vw, 6.5rem);
  }
}

.pdp-thumbs button:hover,
.thumbs button:hover {
  opacity: 1;
  border-color: rgba(11, 58, 110, 0.22);
  background: #fff;
}

.pdp-thumbs button.is-active,
.thumbs button.is-active {
  opacity: 1;
  border-color: rgba(11, 58, 110, 0.32);
  background: #fff;
}

.pdp-thumbs img,
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-info {
  position: relative;
  min-width: 0;
  padding-top: 0.15rem;
  display: grid;
  gap: 0;
  align-content: start;
}

.pdp-adjacent {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pdp-adjacent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line-strong, #d5dae0);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  box-shadow: none;
  transition:
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.pdp-adjacent-btn:hover,
.pdp-adjacent-btn:focus-visible {
  border-color: rgba(11, 58, 110, 0.35);
  color: var(--brand);
  background: #fff;
}

.pdp-adjacent-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.pdp-adjacent-icon {
  display: grid;
  place-items: center;
}

.pdp-adjacent-icon svg {
  display: block;
}

.pdp-adjacent-preview {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.45rem);
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 10rem);
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  max-width: min(15.5rem, 72vw);
  padding: 0.4rem 0.6rem 0.4rem 0.4rem;
  border: 1px solid var(--line, #e6e8ec);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.18s var(--ease),
    transform 0.18s var(--ease),
    visibility 0.18s;
}

.pdp-adjacent-preview img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  background: #f3f5f7;
  border-radius: 4px;
}

.pdp-adjacent-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--text);
  text-align: left;
}

@media (hover: hover) and (pointer: fine) {
  .pdp-adjacent-btn:hover .pdp-adjacent-preview,
  .pdp-adjacent-btn:focus-visible .pdp-adjacent-preview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (hover: none), (pointer: coarse) {
  .pdp-adjacent-btn:focus-visible .pdp-adjacent-preview,
  .pdp-adjacent-btn:active .pdp-adjacent-preview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.pdp-info:has(.pdp-adjacent) > .pdp-kicker,
.pdp-info:has(.pdp-adjacent) > h1 {
  padding-right: 5.2rem;
}

@media (max-width: 640px) {
  .pdp-adjacent-btn {
    width: 2rem;
    height: 2rem;
  }

  .pdp-info:has(.pdp-adjacent) > .pdp-kicker,
  .pdp-info:has(.pdp-adjacent) > h1 {
    padding-right: 4.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-adjacent-btn,
  .pdp-adjacent-preview {
    transition: none;
  }
}

.pdp-pay {
  margin-top: 1.35rem;
  padding: 1.15rem 0 0;
  border-top: 0;
  background: transparent;
}

.pdp-pay-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.pdp-pay-lock {
  display: grid;
  place-items: center;
  color: var(--brand);
}

.pdp-pay-title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--text-muted);
}

.pdp-pay-panel {
  gap: 6px;
}

.pdp-pay-panel img {
  height: 26px;
  width: auto;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.pdp-policy {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.65rem 1rem;
}

@media (min-width: 640px) {
  .pdp-policy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pdp-policy li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  margin: 0;
  min-width: 0;
}

.pdp-policy-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0;
  border-radius: 2px;
  background: transparent;
  overflow: hidden;
}

.pdp-policy-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-policy-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.pdp-policy-copy strong {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.pdp-policy-copy span,
.pdp-policy-body {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.pdp-policy-body p {
  margin: 0 0 0.25rem;
}

.pdp-policy-body p:last-child {
  margin-bottom: 0;
}

.pdp-policy-body a {
  color: var(--brand, #0b3a6e);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pdp-pay-extra {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line, #e6e8ec);
  color: var(--text-muted, #5c6670);
  font-size: 0.84rem;
  line-height: 1.5;
}

.pdp-pay-extra p {
  margin: 0 0 0.45rem;
}

.pdp-pay-extra p:last-child {
  margin-bottom: 0;
}

.pdp-pay-extra a {
  color: var(--brand, #0b3a6e);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pdp-folds {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  overflow-anchor: none;
}

.pdp-fold {
  border-bottom: 1px solid var(--line);
  overflow-anchor: none;
}

.pdp-fold > summary,
.pdp-fold-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pdp-fold > summary::-webkit-details-marker {
  display: none;
}

.pdp-fold > summary::after {
  content: "";
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.pdp-fold[open] > summary::after {
  margin-top: 0.2rem;
  transform: rotate(225deg);
}

.pdp-fold > summary:hover {
  color: var(--brand);
}

.pdp-fold-body {
  padding: 0 0 1.15rem;
}

.pdp-details-lead {
  margin: 0 0 1rem;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pdp-details-lead:last-of-type {
  margin-bottom: 1.15rem;
}

.pdp-details-sub {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.pdp-fold-body .faq-list {
  border-top: 0;
}

.pdp-fold-body .faq-item:first-child summary {
  padding-top: 0.35rem;
}

.pdp-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.pdp-info h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.pdp-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0.85rem 0 0;
}

.pdp-stock {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--success);
}

.pdp-price {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.85rem 0 0.75rem;
  color: var(--price, #c4301c);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.pdp-price .woocommerce-Price-amount,
.pdp-price .woocommerce-Price-currencySymbol,
.pdp-price bdi {
  color: inherit;
}

.pdp-coupon {
  margin: 0 0 0.75rem;
  padding: 0;
  max-width: 100%;
  border: 0;
  background: transparent;
}

.pdp-coupon-list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdp-coupon-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  min-width: 0;
  margin: 0;
}

.pdp-coupon-item + .pdp-coupon-item {
  padding-top: 0.3rem;
  border-top: 0;
}

.pdp-coupon-eyebrow {
  flex: 0 0 auto;
  margin: 0;
  padding-right: 0.15rem;
  color: var(--brand, #0b3a6e);
  font-family: var(--font-ui, Manrope, sans-serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.pdp-coupon-eyebrow::after {
  content: "·";
  margin-left: 0.45rem;
  color: var(--text-muted, #5c6670);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pdp-coupon-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-muted, #5c6670);
  font-family: var(--font-ui, Manrope, sans-serif);
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.2;
}

.pdp-coupon-code {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.1rem 0.45rem;
  border: 1px dashed rgba(11, 58, 110, 0.32);
  background: #fff;
  color: var(--brand, #0b3a6e);
  font-family: var(--font-mono, "IBM Plex Mono", monospace);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.pdp-coupon-copy {
  flex: 0 0 auto;
  appearance: none;
  min-height: 1.55rem;
  padding: 0.12rem 0.55rem;
  border: 1px solid var(--brand, #0b3a6e);
  background: var(--brand, #0b3a6e);
  color: #fff;
  font-family: var(--font-ui, Manrope, sans-serif);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s var(--ease, ease), border-color 0.2s var(--ease, ease);
}

.pdp-coupon-copy:hover {
  background: var(--brand-hover, #145a9e);
  border-color: var(--brand-hover, #145a9e);
}

.pdp-coupon-copy.is-copied {
  border-color: var(--success, #2f9d6a);
  background: var(--success, #2f9d6a);
}

.pdp-sku-line {
  margin: 0.55rem 0 0.65rem;
  color: #5c6670;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

.pdp-sku-label {
  margin-right: 0.25rem;
  font-weight: 650;
}

.pdp-copy {
  color: var(--text-muted);
  margin: 0;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pdp-copy p {
  margin: 0 0 0.35rem;
}

.pdp-copy p:last-child {
  margin-bottom: 0;
}

.pdp-buy {
  padding-top: 0.15rem;
  border-top: 0;
}

.pdp-field {
  margin-bottom: 1.1rem;
}

.pdp-field--variants {
  margin-bottom: 1.25rem;
}

.pdp-field--qty {
  margin-bottom: 0;
}

.field-label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7380;
}

.variant-status {
  margin-bottom: 0.65rem;
  letter-spacing: 0.08em;
}

.variant-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.variant-row button {
  display: grid;
  gap: 0.15rem;
  justify-items: start;
  flex: 0 0 auto;
  width: auto;
  min-width: 9.5rem;
  max-width: 16.5rem;
  min-height: 3.4rem;
  padding: 0.6rem 1.05rem;
  border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
  font: inherit;
  text-align: left;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.variant-kv {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.2;
}

.variant-price {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.variant-row button.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--accent-soft);
}

.variant-row button.is-active .variant-price {
  color: var(--brand);
}

.variant-row button:hover {
  border-color: rgba(11, 58, 110, 0.45);
}

.sku-line--volume {
  margin-top: 0.85rem;
}

.pdp-actions {
  --pdp-action-h: 3rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: end;
  margin-bottom: 0.85rem;
}

.pdp-cta-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem;
  align-items: stretch;
  min-width: 0;
}

.pdp-actions.is-quote .pdp-cta-group {
  grid-template-columns: minmax(0, 1fr);
}

.pdp-actions.is-quote [data-purchase-cta],
.pdp-actions.is-quote [data-pdp-add-to-cart],
[data-purchase-cta].is-cart-hidden,
[data-purchase-cta][hidden],
[data-pdp-add-to-cart][hidden] {
  display: none !important;
}

.qty-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: var(--pdp-action-h);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.qty-row button {
  width: 2.55rem;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s var(--ease);
}

.qty-row button:hover {
  background: var(--surface);
}

.qty-row input {
  width: 3.4rem;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}

.qty-row input::-webkit-outer-spin-button,
.qty-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-cta {
  width: 100%;
  height: var(--pdp-action-h);
  min-height: var(--pdp-action-h);
  padding-block: 0;
  justify-content: center;
  border-radius: 2px;
}

.pdp-cta-inquiry {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.pdp-cta-inquiry:hover {
  background: var(--accent-soft);
  color: var(--brand);
  border-color: var(--brand);
}

.pdp-actions.is-quote .pdp-cta-inquiry {
  background: var(--quote);
  color: #fff;
  border-color: var(--quote);
}

.pdp-actions.is-quote .pdp-cta-inquiry:hover {
  background: var(--brand-hover);
  color: #fff;
  border-color: var(--brand-hover);
}

.sku-line {
  margin: 0;
  color: #6b7380;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.pdp-oem-link {
  display: inline-flex;
  margin-top: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.pdp-oem-link:hover {
  color: var(--brand-hover);
}

@media (max-width: 560px) {
  .variant-row {
    display: flex;
  }

  .variant-row button {
    flex: 1 1 calc(50% - 0.25rem);
    max-width: none;
  }

  .pdp-actions {
    grid-template-columns: 1fr;
  }

  .pdp-cta-group {
    grid-template-columns: 1fr;
  }

  .pdp-actions:not(.is-quote) .pdp-cta-group {
    grid-template-columns: 1fr 1fr;
  }

  .pdp-field--qty .qty-row {
    width: 100%;
  }

  .qty-row input {
    flex: 1 1 auto;
    width: auto;
  }
}

.panel {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.75rem 0.35rem;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  width: 38%;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
}

.pdp-section-lead {
  margin: -0.35rem 0 1.15rem;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pdp-apps-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .pdp-apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.pdp-app {
  display: grid;
  grid-template-columns: minmax(7.5rem, 10.5rem) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.pdp-app-media {
  display: block;
  min-height: 7.5rem;
  background: #eef0f3;
  overflow: hidden;
}

.pdp-app-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pdp-app-copy {
  display: grid;
  gap: 0.35rem;
  align-content: center;
  padding: 1rem 1.1rem 1.1rem;
}

.pdp-app-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.pdp-app-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .pdp-app {
    grid-template-columns: 1fr;
  }

  .pdp-app-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

.pdp-faq-list {
  margin: 0;
}

.pdp-faq .faq-answer a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pdp-faq .faq-answer a:hover {
  color: var(--brand-hover);
}

.pdp-related-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.pdp-related-head h2 {
  margin: 0;
}

.pdp-related-more {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

.pdp-related-more:hover {
  color: var(--brand-hover);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.product-grid--pdp-related {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.product-grid--pdp-related .product-card {
  border: 1px solid var(--line);
  background: #fff;
}

.product-grid--pdp-related .product-card:hover {
  border-color: rgba(11, 58, 110, 0.35);
}

@media (min-width: 900px) {
  .product-grid--pdp-related {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.inquiry {
  margin-top: 1.25rem;
  padding: 1.15rem 1.1rem;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  background: #f5f6f8;
  display: none;
}

.inquiry.is-open {
  display: grid;
  gap: 0.75rem;
}

.inquiry > strong {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--text);
}

.inquiry-lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.inquiry-field {
  display: grid;
  gap: 0.3rem;
}

.inquiry-field > span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 550;
  color: #3d4652;
}

.inquiry input,
.inquiry textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.inquiry input::placeholder,
.inquiry textarea::placeholder {
  color: #8a929c;
}

.inquiry input:focus,
.inquiry textarea:focus {
  outline: 2px solid rgba(11, 58, 110, 0.28);
  outline-offset: 1px;
  border-color: var(--brand);
}

.inquiry textarea {
  min-height: 5rem;
  resize: vertical;
}

.inquiry .btn-quote {
  width: 100%;
  justify-content: center;
  margin-top: 0.15rem;
  border-radius: 2px;
}

/* Amazon-style customer reviews */
.reviews-section.panel {
  margin-top: 2.5rem;
  margin-bottom: 2.75rem;
  padding-top: 2.1rem;
  padding-bottom: 2.5rem;
}

.reviews-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .reviews-layout {
    grid-template-columns: minmax(14rem, 18.5rem) minmax(0, 1fr);
    gap: 2.5rem 3rem;
    align-items: start;
  }

  .reviews-summary {
    position: sticky;
    top: calc(var(--header-h) + 0.85rem);
    align-self: start;
    z-index: 1;
  }

  .reviews-layout.is-empty {
    align-items: stretch;
  }

  .reviews-layout.is-empty .reviews-main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .reviews-layout.is-empty .reviews-empty {
    flex: 1 1 auto;
  }
}

.reviews-summary h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.reviews-summary-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.reviews-summary-avg {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.reviews-summary-avg strong {
  font-weight: 700;
}

.reviews-summary-count {
  margin: 0.35rem 0 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reviews-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.reviews-star {
  width: 1.05rem;
  height: 1.05rem;
  background: #d5d9d9;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.reviews-star.is-on {
  background: #e8a317;
}

.reviews-star.is-half {
  background: linear-gradient(90deg, #e8a317 50%, #d5d9d9 50%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.pdp-rating.product-rating {
  margin: 0;
  text-decoration: none;
  gap: 0.5rem;
}

.pdp-rating .reviews-stars {
  gap: 0.12rem;
}

.pdp-rating .product-rating-count {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.pdp-rating:hover .product-rating-count {
  color: var(--brand);
}

.reviews-histogram {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  pointer-events: none;
}

.reviews-histogram li {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr) 2.4rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.86rem;
}

.reviews-hist-track {
  display: block;
  height: 1.1rem;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  overflow: hidden;
}

.reviews-hist-track > span {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(180deg, var(--accent) 0%, var(--brand) 100%);
}

.reviews-hist-pct {
  text-align: right;
  color: var(--text-muted);
}

.reviews-summary-note {
  margin: 0.95rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  color: var(--brand);
}

.reviews-summary-cta {
  margin-top: 1.15rem;
  padding-top: 1.05rem;
  border-top: 1px solid #e7e7e7;
}

.reviews-summary-cta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
}

.reviews-summary-cta p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.reviews-write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.55rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.reviews-write-btn:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

.review-composer {
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.review-composer[hidden] {
  display: none;
}

.review-composer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.review-composer-head h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
}

.review-composer-close {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #565959;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.review-composer-close:hover {
  background: #f0f2f2;
  color: var(--text);
}

.review-composer-form {
  display: grid;
  gap: 0.95rem;
}

.review-composer-stars {
  margin: 0;
  padding: 0;
  border: 0;
}

.review-composer-stars legend,
.review-composer-field > span,
.review-composer-media-head > span:first-child {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.review-rate {
  display: inline-flex;
  gap: 0.2rem;
}

.review-rate-btn {
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  background: #d5d9d9;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  cursor: pointer;
}

.review-rate-btn.is-on,
.review-rate-btn.is-hover {
  background: #e8a317;
}

.review-composer-field {
  display: grid;
  gap: 0.35rem;
}

.review-composer-field input,
.review-composer-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.review-composer-field input:focus,
.review-composer-field textarea:focus {
  outline: 2px solid rgba(11, 58, 110, 0.22);
  outline-offset: 1px;
  border-color: var(--brand);
}

.review-composer-field textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.5;
}

.review-composer-media-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.45rem;
}

.review-composer-media-hint {
  font-size: 0.78rem;
  color: #8a929c;
}

.review-media-drop {
  position: relative;
  border: 1px dashed #c7cbd1;
  border-radius: 8px;
  background: #fafbfc;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.review-media-drop.is-dragover {
  border-color: var(--brand);
  background: var(--accent-soft);
}

.review-media-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.review-media-trigger {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  color: var(--text);
}

.review-media-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7e7e7;
  color: var(--brand);
}

.review-media-trigger strong {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 650;
}

.review-media-trigger em {
  font-style: normal;
  font-size: 0.8rem;
  color: #8a929c;
}

.review-media-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.55rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.review-media-list[hidden] {
  display: none;
}

.review-media-item {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f6f8;
}

.review-media-item img,
.review-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-media-item.is-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.7rem;
  border-color: transparent transparent transparent #fff;
  transform: translate(-35%, -50%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.review-media-remove {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  z-index: 1;
  width: 1.35rem;
  height: 1.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 17, 17, 0.72);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
}

.review-composer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.review-composer-submit {
  min-width: 9.5rem;
  border-radius: var(--radius);
}

.review-composer-cancel {
  --btn-bg: #fff;
  --btn-fg: var(--brand);
  width: auto;
  min-width: 6.5rem;
  border-color: var(--brand);
  border-radius: var(--radius);
  box-shadow: none;
}

.review-composer-cancel:hover {
  background: var(--accent-soft);
  color: var(--brand);
  border-color: var(--brand);
}

.review-captcha-row {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
}

.review-captcha-row input {
  flex: 1 1 auto;
  min-width: 0;
}

.review-captcha-code {
  flex: 0 0 auto;
  min-width: 6.5rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand);
  font-family: var(--font-mono, var(--font-ui));
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.review-captcha-code:hover {
  border-color: var(--brand);
  background: var(--accent-soft);
}

.review-composer-field.is-invalid input,
.review-captcha .is-invalid input {
  border-color: #b42318;
}

.review-composer-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.review-media-thumb {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: 1px solid #d5d9d9;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f6f8;
  cursor: zoom-in;
}

.review-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-media-thumb.is-video .review-media-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(15, 17, 17, 0.55);
}

.review-media-thumb.is-video .review-media-play::before {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.32rem 0 0.32rem 0.48rem;
  border-color: transparent transparent transparent #fff;
  transform: translate(-40%, -50%);
}

.reviews-main-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.35rem;
}

.reviews-main-head h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
}

.reviews-empty {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.85fr);
  gap: 1.35rem 2rem;
  align-items: stretch;
  min-height: 16rem;
  padding: 1.45rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 42%);
}

.reviews-empty-primary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reviews-empty-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--brand);
}

.reviews-empty-copy {
  min-width: 0;
}

.reviews-empty-copy h3 {
  margin: 0.15rem 0 0.45rem;
  color: var(--text);
  font-family: var(--font-display, Syne, sans-serif);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.reviews-empty-copy p {
  margin: 0 0 1rem;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.reviews-empty .reviews-write-btn {
  width: auto;
  min-width: 12.5rem;
}

.reviews-empty-tips {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  margin: 0;
  padding: 0.15rem 0 0.15rem 1.35rem;
  list-style: none;
  border-left: 1px solid var(--line);
}

.reviews-empty-tips li {
  display: grid;
  gap: 0.2rem;
}

.reviews-empty-tips strong {
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reviews-empty-tips span {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.reviews-layout.is-empty .reviews-histogram {
  opacity: 0.55;
}

.reviews-layout.is-empty .reviews-summary-note {
  display: none;
}

@media (max-width: 900px) {
  .reviews-empty {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .reviews-empty-tips {
    padding: 1.1rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

.reviews-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.reviews-sort select {
  min-height: 2rem;
  padding: 0.25rem 1.6rem 0.25rem 0.55rem;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  background: #f0f2f2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%23555' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 0.45rem center;
  appearance: none;
  -webkit-appearance: none;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  cursor: pointer;
}

.reviews {
  display: grid;
}

.review {
  padding: 1.15rem 0;
  border-bottom: 1px solid #e7e7e7;
}

.review:last-child {
  border-bottom: 0;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #f0f2f2;
  color: #565959;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
}

.review-author {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.review-title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.review-byline {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  color: #565959;
}

.review-badge {
  margin: 0.2rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: #067d62;
}

.review-body {
  margin: 0.55rem 0 0;
  max-width: 68ch;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text);
}

.review-helpful-count {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: #565959;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
  color: #888;
  font-size: 0.82rem;
}

.review-helpful-btn,
.review-report-btn {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.review-helpful-btn {
  min-height: 1.9rem;
  padding: 0.25rem 0.85rem;
  border: 1px solid #d5d9d9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 17, 17, 0.06);
}

.review-helpful-btn:hover,
.review-report-btn:hover {
  color: #c7511f;
  background: #f7fafa;
}

.review-helpful-btn.is-selected {
  color: #0b3a6e;
  border-color: #0b3a6e;
  background: #eef4fa;
}

.review-helpful-btn:disabled,
.review-report-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.review-report-btn.is-reported {
  color: #888;
  cursor: default;
  text-decoration: none;
}

.review-helpful-count[hidden] {
  display: none !important;
}

/* Catalog / product list (inner pages use solid header) */
.catalog-page {
  padding-top: var(--header-h);
  background: #f5f6f8;
  min-height: 60dvh;
}

.catalog-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(9.5rem, 18vw, 12.5rem);
  overflow: hidden;
  color: #f4f6f8;
  text-align: center;
}

.catalog-hero--compact {
  min-height: clamp(6.75rem, 12vw, 8.5rem);
}

.catalog-hero--compact .catalog-hero-inner {
  padding-block: 1.05rem 1.15rem;
}

.catalog-hero--compact .catalog-hero-crumb {
  margin-bottom: 0.3rem;
}

.catalog-hero--compact h1 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.catalog-hero--compact .catalog-hero-lead {
  margin: 0 auto;
  max-width: 48rem;
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.catalog-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.catalog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.catalog-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 22, 42, 0.42) 0%, rgba(8, 22, 42, 0.72) 100%),
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(8, 22, 42, 0.55) 0%, rgba(8, 22, 42, 0.78) 100%);
}

.catalog-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1.35rem 1.4rem;
}

.catalog-hero-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: rgba(244, 246, 248, 0.72);
}

.catalog-hero-crumb a {
  color: rgba(244, 246, 248, 0.78);
  text-decoration: none;
}

.catalog-hero-crumb a:hover {
  color: #fff;
}

.mz-crumb--seopress .breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.mz-crumb--seopress .breadcrumb li {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.mz-crumb--seopress .breadcrumb li::after {
  margin-left: 0.45rem;
  margin-right: 0.45rem;
}

.mz-crumb--seopress .breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.mz-crumb--seopress .breadcrumb a:hover {
  color: #fff;
}

.catalog-hero h1 {
  margin: 0 0 0.4rem;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.catalog-hero-lead {
  margin: 0 auto;
  width: 90%;
  max-width: 90%;
  font-size: clamp(0.88rem, 1.15vw, 0.98rem);
  line-height: 1.45;
  color: rgba(244, 246, 248, 0.86);
}

.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.catalog-hero-actions .btn {
  background: #fff;
  color: #0b3a6e;
  border-color: #fff;
}

.catalog-hero-actions .btn:hover {
  background: #eef2f7;
  color: #0b3a6e;
}

.catalog-hero-actions .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.catalog-hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.page-bar {
  border-bottom: 1px solid var(--line);
  background: #f5f6f8;
}

.page-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.45rem 1rem;
  padding: 0.95rem 0;
}

.page-bar-label {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.page-bar-count {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.catalog-cats {
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 1.35rem 0 1.15rem;
}

.catalog-cats--compact {
  padding: 0.75rem 0 0.7rem;
}

.catalog-cats--compact .catalog-cat {
  gap: 0.3rem;
  padding: 0.4rem 0.4rem 0.4rem;
}

.catalog-cats--compact .catalog-cat-media {
  max-width: 3.25rem;
}

.catalog-cats--compact .catalog-cat-name {
  font-size: 0.78rem;
  line-height: 1.25;
}

.catalog-cats-carousel {
  position: relative;
}

.catalog-cats-rail {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.catalog-cats-rail::-webkit-scrollbar {
  display: none;
}

.catalog-cat {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.45rem;
  flex: 0 0 calc((100% - 5.25rem) / 8);
  /* Keep a readable card floor so narrow viewports scroll instead of crushing icons/labels */
  min-width: 6.75rem;
  max-width: none;
  box-sizing: border-box;
  padding: 0.7rem 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  scroll-snap-align: start;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.catalog-cat:hover,
.catalog-cat.is-active {
  color: var(--brand);
  border-color: var(--brand);
  background: #f3f6fa;
}

.catalog-cat-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  flex-shrink: 0;
}

.catalog-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: transform 0.35s var(--ease);
}

.catalog-cat:hover .catalog-cat-media img,
.catalog-cat.is-active .catalog-cat-media img {
  transform: scale(1.04);
}

.catalog-cat-name {
  position: relative;
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
}

.catalog-cat.is-active .catalog-cat-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.3rem;
  width: 1.25rem;
  height: 2px;
  background: var(--brand);
  transform: translateX(-50%);
}

.catalog-cats-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(15, 23, 32, 0.08);
  cursor: pointer;
  transform: translateY(-60%);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.catalog-cats-nav:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.catalog-cats-nav[hidden] {
  display: none;
}

.catalog-cats-nav--prev {
  left: 0;
}

.catalog-cats-nav--next {
  right: 0;
}

.catalog-cats-carousel.is-overflow .catalog-cats-rail {
  padding-inline: 2.6rem;
}

@media (max-width: 1099px) {
  .catalog-cat {
    flex: 0 0 calc((100% - 2.25rem) / 4);
    min-width: 7rem;
  }

  .catalog-cat-name {
    font-size: 0.86rem;
  }
}

@media (max-width: 720px) {
  .catalog-hero {
    min-height: 8.75rem;
  }

  .catalog-hero--compact {
    min-height: 6.25rem;
  }

  .catalog-hero--compact .catalog-hero-inner {
    padding-block: 0.85rem 0.95rem;
  }

  .catalog-hero--compact .catalog-hero-lead {
    -webkit-line-clamp: 2;
    font-size: 0.84rem;
  }

  .catalog-hero-inner {
    padding-block: 1.1rem 1.15rem;
  }

  .catalog-hero h1 {
    max-width: none;
  }

  .catalog-cats {
    padding: 1rem 0 0.9rem;
  }

  .catalog-cats--compact {
    padding: 0.55rem 0 0.5rem;
  }

  .catalog-cats-rail {
    gap: 0.5rem;
  }

  /* Fixed card width: swipe/scroll instead of fitting 3 squeezed columns */
  .catalog-cat {
    flex: 0 0 6.25rem;
    width: 6.25rem;
    min-width: 6.25rem;
    max-width: 6.25rem;
    padding: 0.55rem 0.35rem 0.5rem;
  }

  .catalog-cats--compact .catalog-cat {
    flex-basis: 5.85rem;
    width: 5.85rem;
    min-width: 5.85rem;
    max-width: 5.85rem;
  }

  .catalog-cat-media {
    width: 3rem;
    max-width: 3rem;
  }

  .catalog-cats--compact .catalog-cat-media {
    width: 2.9rem;
    max-width: 2.9rem;
  }

  .catalog-cat-name {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .catalog-cats--compact .catalog-cat-name {
    font-size: 0.68rem;
  }

  .catalog-cats-nav {
    width: 2.1rem;
    height: 2.1rem;
  }

  .catalog-cats-carousel.is-overflow .catalog-cats-rail {
    padding-inline: 2.2rem;
  }
}

.catalog-layout {
  display: grid;
  gap: 1.75rem;
  padding: 1.35rem 0 3.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .catalog-layout {
    grid-template-columns: 18.5rem minmax(0, 1fr);
    gap: 2rem;
    padding-top: 1.5rem;
  }
}

.catalog-sidebar {
  display: none;
}

@media (min-width: 960px) {
  .catalog-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.catalog-sidebar-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.catalog-side-label {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

.catalog-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-nav-link,
.catalog-nav a.catalog-nav-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.65rem 0.35rem 0.65rem 0.55rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  background: transparent;
  transition: color 0.2s var(--ease);
}

.catalog-nav-group {
  border-bottom: 1px solid var(--line);
}

.catalog-nav-group .catalog-nav-link {
  border-bottom: 0;
}

.catalog-nav-parent {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.catalog-nav-parent .catalog-nav-link {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 0.2rem;
}

.catalog-nav-toggle {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8a939e;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.catalog-nav-toggle:hover {
  color: var(--brand);
}

.catalog-nav-toggle svg {
  transition: transform 0.2s var(--ease);
}

.catalog-nav-group.is-open > .catalog-nav-parent .catalog-nav-toggle {
  color: var(--brand);
}

.catalog-nav-group.is-open > .catalog-nav-parent .catalog-nav-toggle svg {
  transform: rotate(90deg);
}

.catalog-nav-children {
  margin: 0 0 0.55rem 0.7rem;
  padding: 0.15rem 0 0.45rem 0.85rem;
  border-left: 1px solid #d7dde5;
}

.catalog-nav-subgroup {
  padding: 0.35rem 0 0.2rem;
}

.catalog-nav-subgroup + .catalog-nav-subgroup {
  margin-top: 0.2rem;
  padding-top: 0.45rem;
  border-top: 1px dashed #e4e8ee;
}

.catalog-nav-subgroup-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.2rem;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6d7885;
  line-height: 1.25;
}

.catalog-nav-subgroup-label::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  flex: 0 0 auto;
  border-radius: 1px;
  background: var(--brand);
  opacity: 0.55;
}

.catalog-nav-link--child {
  position: relative;
  padding: 0.38rem 0.25rem 0.38rem 0.15rem;
  font-size: 0.84rem;
  font-weight: 450;
  color: #5f6a76;
  border-bottom: 0;
}

.catalog-nav-link--child::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 50%;
  width: 0.55rem;
  height: 1px;
  background: #d0d7e0;
  transform: translateY(-50%);
}

.catalog-nav-label {
  flex: 1 1 auto;
  min-width: 0;
}

.catalog-nav-count {
  flex: 0 0 auto;
  min-width: 1.35rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #8a939e;
  font-family: var(--font-mono, var(--font-ui));
  font-size: 0.72rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  text-align: right;
  line-height: 1.2;
}

.catalog-nav-link:hover,
.catalog-nav a.catalog-nav-link:hover {
  color: var(--brand);
  background: transparent;
}

.catalog-nav-link:hover .catalog-nav-count,
.catalog-nav a.catalog-nav-link:hover .catalog-nav-count {
  color: var(--brand);
  background: transparent;
}

.catalog-nav-link.is-active,
.catalog-nav a.catalog-nav-link.is-active {
  color: var(--brand);
  font-weight: 650;
  background: transparent;
  box-shadow: none;
}

.catalog-nav-parent .catalog-nav-link.is-active .catalog-nav-label {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

.catalog-nav-link.is-active .catalog-nav-count,
.catalog-nav a.catalog-nav-link.is-active .catalog-nav-count {
  color: var(--brand);
  font-weight: 650;
  background: transparent;
}

.catalog-nav-link--child.is-active {
  color: var(--brand);
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}

.catalog-nav-link--child.is-active::before {
  width: 0.65rem;
  background: var(--brand);
}

.catalog-nav-link--child.is-active .catalog-nav-label {
  text-decoration: none;
}

.catalog-side-note {
  margin-top: 0.35rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
}

.catalog-side-note p {
  margin: 0 0 0.95rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: none;
}

.catalog-side-cta {
  display: inline-flex;
  width: auto;
  justify-content: center;
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
}

.catalog-main {
  min-width: 0;
}

.catalog-panel {
  margin: 0 0 1.25rem;
  padding: 1.35rem 1.4rem 1.1rem;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.catalog-intro {
  margin: 0;
  padding: 0 0 1.15rem;
}

.catalog-intro--below {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  padding: 1.35rem 1.4rem 1.25rem;
  border-top: 0;
  background: #fff;
}

@media (max-width: 720px) {
  .catalog-intro--below {
    padding: 1.1rem 1rem 1rem;
  }
}

.catalog-panel--products-first {
  padding: 0.75rem 1.4rem;
}

.catalog-panel--products-first .catalog-toolbar {
  padding: 0;
  min-height: 2.75rem;
}

.catalog-panel--products-first .product-grid--catalog,
.catalog-panel--products-first .woocommerce-info {
  margin-top: 0.85rem;
}

.catalog-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-ui);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.catalog-intro-expandable {
  display: grid;
  gap: 0.85rem;
}

.catalog-intro-clip {
  max-height: 7.5rem;
  overflow: hidden;
  position: relative;
  transition: max-height 0.55s var(--ease);
}

.catalog-intro-clip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.catalog-intro-expandable[aria-expanded="true"] .catalog-intro-clip {
  max-height: 80rem;
}

.catalog-intro-expandable[aria-expanded="true"] .catalog-intro-clip::after {
  opacity: 0;
}

.catalog-intro-expandable.is-full .catalog-intro-clip,
.catalog-intro-expandable[data-catalog-intro-collapse="0"] .catalog-intro-clip {
  max-height: none;
  overflow: visible;
}

.catalog-intro-expandable.is-full .catalog-intro-clip::after,
.catalog-intro-expandable[data-catalog-intro-collapse="0"] .catalog-intro-clip::after {
  display: none;
}

.catalog-intro-body {
  display: grid;
  gap: 0.85rem;
  max-width: none;
  width: 100%;
  margin-bottom: 0.35rem;
}

.catalog-intro-body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.catalog-intro-body strong {
  color: var(--text);
  font-weight: 650;
}

.catalog-intro-body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 1px;
}

.catalog-intro-body a:hover {
  color: var(--brand-hover);
}

.catalog-intro-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
}

.catalog-intro-toggle svg {
  transition: transform 0.2s var(--ease);
}

.catalog-intro-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.catalog-intro-toggle:hover {
  color: var(--brand);
}

.catalog-intro-toggle:focus-visible {
  outline: 1px solid var(--brand);
  outline-offset: 3px;
}

.catalog-intro-toggle[hidden] {
  display: none;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin: 0;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}

@media (max-width: 720px) {
  .catalog-panel {
    padding: 1.1rem 1rem 0.95rem;
  }

  .catalog-panel--products-first {
    margin-bottom: 0.75rem;
    padding: 0.45rem 0.1rem 0.35rem;
  }

  .catalog-panel--products-first .catalog-toolbar {
    gap: 0.4rem 0.55rem;
    min-height: 0;
  }

  .catalog-panel--products-first .product-grid--catalog,
  .catalog-panel--products-first .woocommerce-info {
    margin-top: 0.5rem;
  }

  .catalog-toolbar-left,
  .catalog-toolbar-right {
    gap: 0.4rem 0.55rem;
  }

  .catalog-toolbar-count {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .catalog-page-size {
    gap: 0.2rem;
    font-size: 0.78rem;
  }

  .catalog-page-size select {
    min-height: 1.75rem;
    padding: 0.1rem 1.35rem 0.1rem 0.1rem;
    font-size: 0.78rem;
  }

  .catalog-filter-btn {
    min-height: 1.95rem;
    padding: 0.28rem 0.65rem;
    gap: 0.3rem;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(11, 58, 110, 0.2);
  }

  .catalog-filter-btn-icon {
    width: 14px;
    height: 14px;
  }

  .catalog-sort select {
    min-height: 1.85rem;
    padding: 0.22rem 1.5rem 0.22rem 0.5rem;
    font-size: 0.78rem;
    background-position: right 0.4rem center;
  }

  .catalog-view {
    gap: 0.2rem;
  }

  .catalog-view-label {
    display: none;
  }

  .catalog-view-btn {
    width: 1.85rem;
    height: 1.85rem;
  }

  .catalog-view-btn svg {
    width: 15px;
    height: 15px;
  }
}

.catalog-toolbar-left,
.catalog-toolbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.catalog-toolbar-count {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.catalog-page-size {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.catalog-page-size select {
  min-height: 2rem;
  padding: 0.2rem 1.55rem 0.2rem 0.15rem;
  border: 0;
  border-radius: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%23555' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 0.1rem center;
  appearance: none;
  -webkit-appearance: none;
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
}

.catalog-page-size select:focus-visible {
  outline: 1px solid var(--brand);
  outline-offset: 2px;
}

.catalog-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.2rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--brand);
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(11, 58, 110, 0.18);
}

.catalog-filter-btn-icon {
  flex: 0 0 auto;
  display: block;
}

.catalog-filter-btn-label {
  line-height: 1;
}

.catalog-filter-btn:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  color: #fff;
}

.catalog-filter-btn:active {
  transform: translateY(1px);
}

.catalog-filter-btn[aria-expanded="true"] {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
}

@media (min-width: 960px) {
  .catalog-filter-btn {
    display: none;
  }
}

.catalog-sort select {
  min-height: 2.2rem;
  padding: 0.35rem 1.9rem 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%23555' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 0.6rem center;
  appearance: none;
  -webkit-appearance: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.86rem;
  cursor: pointer;
}

.catalog-sort select:focus-visible {
  outline: 1px solid var(--brand);
  outline-offset: 2px;
}

.catalog-view {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.catalog-view-label {
  margin-right: 0.15rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.catalog-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.catalog-view-btn:hover {
  color: var(--brand);
}

.catalog-view-btn.is-active {
  color: var(--brand);
  border-color: var(--line);
  background: #fff;
}

.catalog-view-btn:focus-visible {
  outline: 1px solid var(--brand);
  outline-offset: 2px;
}

.product-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid--catalog.is-list-view {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-grid--catalog.is-list-view .product-card {
  display: grid;
  grid-template-columns: 8.75rem minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: stretch;
  gap: 0;
}

.product-grid--catalog.is-list-view .product-card-rule {
  display: none;
}

.product-grid--catalog.is-list-view .product-card-visual {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--line);
}

.product-grid--catalog.is-list-view .product-card-body {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 0.95rem;
}

.product-grid--catalog.is-list-view .product-card:hover {
  transform: none;
}

@media (max-width: 959px) {
  .product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--catalog.is-list-view {
    grid-template-columns: 1fr;
  }

  .product-grid--catalog.is-list-view .product-card {
    grid-template-columns: 7.25rem minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .catalog-toolbar-left,
  .catalog-toolbar-right {
    width: 100%;
  }

  .catalog-toolbar-left {
    justify-content: space-between;
  }

  .catalog-toolbar-right {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.35rem 0.45rem;
  }

  .catalog-sort {
    flex: 1 1 auto;
    min-width: 0;
  }

  .catalog-sort select {
    width: 100%;
    max-width: 100%;
  }
}

.product-card.is-catalog-hidden,
.product-grid--catalog.is-list-view .product-card.is-catalog-hidden {
  display: none;
}

.catalog-empty {
  margin: 0 0 1rem;
  padding: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.catalog-pagination,
.mz-pager,
.navigation.pagination.catalog-pagination,
.reviews-pagination.catalog-pagination {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.catalog-pagination[hidden] {
  display: none;
}

.catalog-page-links,
.catalog-pagination .nav-links,
.mz-pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.catalog-page-links a,
.catalog-page-links button,
.catalog-pagination .nav-links a,
.catalog-pagination .nav-links span.page-numbers,
.catalog-pagination .nav-links span.current,
.reviews-pagination.catalog-pagination a,
.reviews-pagination.catalog-pagination span.page-numbers,
.reviews-pagination.catalog-pagination span.current,
.mz-account .woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.55rem;
  min-height: 2.55rem;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 10px;
  background: var(--surface-2, #eef0f3);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
}

.catalog-page-links a.catalog-page-nav,
.catalog-page-links button.catalog-page-nav,
.catalog-pagination .nav-links a.prev,
.catalog-pagination .nav-links a.next,
.reviews-pagination.catalog-pagination a.prev,
.reviews-pagination.catalog-pagination a.next {
  min-width: auto;
  gap: 0.35rem;
  padding-inline: 0.95rem;
  color: var(--text-muted);
}

.catalog-page-links button.is-active,
.catalog-pagination .nav-links span.current,
.reviews-pagination.catalog-pagination span.current,
.mz-account .woocommerce-pagination .page-numbers.current {
  background: var(--brand);
  color: #fff;
  cursor: default;
}

.catalog-page-links a:hover,
.catalog-page-links button:hover:not(:disabled):not(.is-active),
.catalog-pagination .nav-links a:hover,
.reviews-pagination.catalog-pagination a:hover,
.mz-account .woocommerce-pagination a.page-numbers:hover {
  background: color-mix(in srgb, var(--brand) 12%, var(--surface-2, #eef0f3));
  color: var(--brand);
}

.catalog-page-links button:disabled,
.catalog-pagination .nav-links span.page-numbers.dots,
.reviews-pagination.catalog-pagination span.page-numbers.dots {
  opacity: 0.45;
  cursor: not-allowed;
  color: var(--text-muted);
}

.catalog-page-links button:disabled {
  background: var(--surface, #f5f6f8);
}

.catalog-page-ellipsis,
.catalog-pagination .nav-links span.dots,
.reviews-pagination.catalog-pagination span.dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  min-height: 2.55rem;
  padding: 0 0.2rem;
  color: var(--text-muted);
  font-family: var(--font-mono, var(--font-ui));
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  background: transparent;
}

.catalog-page-meta {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-mono, var(--font-ui));
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .catalog-page-links,
  .catalog-pagination .nav-links,
  .mz-pager .nav-links {
    gap: 0.28rem;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalog-page-links::-webkit-scrollbar,
  .catalog-pagination .nav-links::-webkit-scrollbar,
  .mz-pager .nav-links::-webkit-scrollbar {
    display: none;
  }

  .catalog-page-links a,
  .catalog-page-links button,
  .catalog-pagination .nav-links a,
  .catalog-pagination .nav-links span.page-numbers,
  .catalog-pagination .nav-links span.current,
  .reviews-pagination.catalog-pagination a,
  .reviews-pagination.catalog-pagination span.page-numbers,
  .reviews-pagination.catalog-pagination span.current,
  .mz-account .woocommerce-pagination .page-numbers {
    min-width: 2.1rem;
    min-height: 2.1rem;
    padding: 0 0.55rem;
    font-size: 0.82rem;
    border-radius: 8px;
    flex: 0 0 auto;
  }

  .catalog-page-links a.catalog-page-nav,
  .catalog-page-links button.catalog-page-nav,
  .catalog-pagination .nav-links a.prev,
  .catalog-pagination .nav-links a.next,
  .reviews-pagination.catalog-pagination a.prev,
  .reviews-pagination.catalog-pagination a.next {
    padding-inline: 0.65rem;
    font-size: 0.78rem;
  }

  .catalog-page-ellipsis,
  .catalog-pagination .nav-links span.dots,
  .reviews-pagination.catalog-pagination span.dots {
    min-width: 1.2rem;
    min-height: 2.1rem;
  }

  .catalog-page-meta {
    font-size: 0.75rem;
  }
}

@media (max-width: 420px) {
  .catalog-page-links a.catalog-page-nav,
  .catalog-page-links button.catalog-page-nav,
  .catalog-pagination .nav-links a.prev,
  .catalog-pagination .nav-links a.next,
  .reviews-pagination.catalog-pagination a.prev,
  .reviews-pagination.catalog-pagination a.next {
    padding-inline: 0.5rem;
  }
}

.catalog-faq {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.catalog-faq-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-ui);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.catalog-faq-list {
  margin: 0;
  max-width: none;
  width: 100%;
}

.catalog-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.catalog-drawer:not([hidden]) {
  display: block;
}

.catalog-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 32, 0.42);
}

.catalog-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(20rem, 88vw);
  padding: 1.15rem 1.1rem 1.5rem;
  background: #fff;
  box-shadow: 8px 0 32px rgba(15, 23, 32, 0.12);
  overflow: auto;
  transform: translateX(0);
}

.catalog-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.catalog-drawer-head strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
}

.catalog-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.catalog-drawer-close:hover {
  color: var(--brand);
  background: rgba(11, 58, 110, 0.06);
}

body.is-catalog-drawer-open {
  overflow: hidden;
}

@media (min-width: 960px) {
  .catalog-drawer {
    display: none !important;
  }
}

/* —— Inner pages: About / Contact —— */
.inner-page {
  padding-top: var(--header-h);
  background: var(--bg);
  min-height: 40dvh;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(10.5rem, 18vw, 14rem);
  overflow: hidden;
  color: #f4f6f8;
  text-align: center;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 22, 42, 0.38) 0%, rgba(8, 22, 42, 0.68) 100%),
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(8, 22, 42, 0.42) 0%, rgba(8, 22, 42, 0.7) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1.35rem 1.45rem;
}

.page-hero-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: rgba(244, 246, 248, 0.72);
}

.page-hero-crumb a {
  color: rgba(244, 246, 248, 0.78);
  text-decoration: none;
}

.page-hero-crumb a:hover {
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 0.35rem;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.page-hero-lead {
  margin: 0 auto;
  max-width: 40ch;
  font-size: clamp(0.86rem, 1.1vw, 0.95rem);
  line-height: 1.4;
  color: rgba(244, 246, 248, 0.86);
}

.inner-section {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.inner-section--tint {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.inner-section--split {
  padding-block: clamp(2.75rem, 5.5vw, 4.5rem);
}

.about-story {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
}

@media (min-width: 960px) {
  .about-story {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.about-story-copy h2,
.about-focus-head h2,
.about-quality-copy h2,
.contact-aside h2,
.inner-cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.about-story-lead,
.about-focus-head p,
.contact-aside-lead {
  margin: 0 0 1.15rem;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.about-story-body {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.about-story-body p {
  margin: 0;
  max-width: 58ch;
  color: #2a3138;
  line-height: 1.65;
}

.about-story-media,
.about-quality-media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface-2);
}

.about-story-media img,
.about-quality-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-metrics--page {
  padding: 0;
  border-top: 0;
}

.about-focus-head {
  margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
}

.about-focus-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

@media (min-width: 860px) {
  .about-focus-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}

.about-focus-item {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: #fff;
}

.about-focus-item:first-child {
  background:
    linear-gradient(160deg, rgba(11, 58, 110, 0.06), transparent 55%),
    #fff;
}

.about-focus-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.about-focus-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-quality {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
}

@media (min-width: 960px) {
  .about-quality {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.about-quality-copy p {
  margin: 0 0 1.1rem;
  max-width: 52ch;
  color: #2a3138;
  line-height: 1.65;
}

.about-quality-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.about-quality-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.about-quality-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 1px;
  background: var(--brand);
}

.about-quality-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn.about-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--brand);
  border-color: rgba(11, 58, 110, 0.28);
  background: transparent;
  color: var(--brand);
}

.btn.about-ghost:hover {
  background: var(--accent-soft);
  border-color: var(--brand);
  color: var(--brand);
}

.about-declaration-section {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
}

.about-declaration {
  width: 100%;
  text-align: left;
}

.about-declaration-head {
  margin: 0 0 0.55rem;
  padding: 0;
  border: 0;
  text-align: left;
}

.about-declaration-head h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
  text-align: left;
}

.about-declaration-body {
  text-align: left;
}

.about-declaration-body p {
  margin: 0;
  max-width: 52ch;
  color: #8a939e;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: left;
}

.inner-cta-band {
  background:
    linear-gradient(120deg, rgba(11, 58, 110, 0.94), rgba(20, 70, 120, 0.9)),
    var(--brand);
  border: 0;
  color: #fff;
}

.inner-cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
}

.inner-cta-band h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.inner-cta-band p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.inner-cta-band .btn-brand {
  --btn-bg: #fff;
  --btn-fg: var(--brand);
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  white-space: nowrap;
}

.inner-cta-band .btn-brand:hover {
  background: #eef2f7;
  color: var(--brand);
}

/* Contact */
.contact-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(2.25rem, 4vw, 3.75rem);
  }
}

.contact-channels {
  display: grid;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-channels li {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-channel-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7380;
}

.contact-channels a,
.contact-channels span:not(.contact-channel-label) {
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}

.contact-channels a:hover {
  color: var(--brand);
}

.contact-aside-hint {
  margin: 0;
  max-width: 36ch;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

/* Honeypot — must stay off-layout on frontend contact/inquiry forms. */
.contact-form .form-field-hp,
.contact-form .inquiry-hp,
.gbt-inquiry-form .form-field-hp,
.gbt-inquiry-form .inquiry-hp {
  position: absolute !important;
  left: -10000px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.contact-form-grid {
  display: grid;
  gap: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.contact-form .contact-captcha,
.contact-form .captcha-field.contact-field {
  margin: 0 0 1rem;
}

.contact-form .contact-captcha > label,
.contact-form .captcha-field.contact-field > label,
.contact-form .captcha-field.contact-field > label > span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #2a3138;
}

.contact-form .captcha-field.contact-field abbr {
  text-decoration: none;
  color: #c62828;
  font-weight: 700;
}

.contact-form .captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.contact-form .captcha-row > span,
.contact-form .captcha-row .captcha-question {
  display: inline-flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #f7f8fa;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}

.contact-form .captcha-row input {
  flex: 1 1 10rem;
  min-width: 0;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form .captcha-row input:focus {
  outline: none;
  border-color: rgba(11, 58, 110, 0.55);
  box-shadow: 0 0 0 3px rgba(11, 58, 110, 0.12);
}

.contact-form .captcha-field .form__error {
  display: none;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: #c62828;
}

.contact-form .captcha-field .form__error.is-visible,
.contact-form .captcha-field.is-invalid .form__error {
  display: block;
}

@media (min-width: 720px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.contact-field--full {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.contact-field > span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #2a3138;
}

.contact-field abbr {
  text-decoration: none;
  color: #c62828;
  font-weight: 700;
}

.contact-field-error {
  display: none;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: #c62828;
}

.contact-field.is-invalid .contact-field-error {
  display: block;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-field textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5c6670 50%),
    linear-gradient(135deg, #5c6670 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 52%,
    calc(100% - 11px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8a939e;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(11, 58, 110, 0.55);
  box-shadow: 0 0 0 3px rgba(11, 58, 110, 0.12);
}

.contact-field.is-invalid input,
.contact-field.is-invalid select,
.contact-field.is-invalid textarea {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.contact-form-actions .btn {
  min-width: 9.5rem;
}

.contact-form-actions .btn:active {
  transform: translateY(1px);
}

.contact-form-tip {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.contact-faq {
  max-width: 52rem;
}

.contact-faq > h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.contact-faq-list {
  border-top: 1px solid var(--line-strong);
}

.contact-faq-item {
  border-bottom: 1px solid var(--line);
}

.contact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--text);
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item summary::after {
  content: "";
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.contact-faq-item[open] summary::after {
  margin-top: 0.2rem;
  transform: rotate(225deg);
}

.contact-faq-item summary:hover {
  color: var(--brand);
}

.contact-faq-item p {
  margin: 0 0 1.15rem;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* OEM page — buyer / procurement layout */
.oem-page .oem-section-lead {
  margin: 0 0 1.5rem;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.oem-page .inner-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

/* Shared story heroes (Solutions + OEM) */
.sol-hero,
.oem-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(16.5rem, 34vw, 23rem);
  overflow: hidden;
  color: #f4f6f8;
}

.sol-hero-media,
.oem-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sol-hero-media img,
.oem-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.sol-hero-scrim,
.oem-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 22, 42, 0.82) 0%, rgba(8, 22, 42, 0.55) 48%, rgba(8, 22, 42, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 22, 42, 0.2) 0%, rgba(8, 22, 42, 0.72) 100%);
}

.sol-hero-inner,
.oem-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
  margin-left: var(--gutter);
  margin-right: auto;
  max-width: 46rem;
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
}

@media (min-width: 960px) {
  .sol-hero-inner,
  .oem-hero-inner {
    margin-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
    padding-block: clamp(2rem, 4vw, 3.25rem);
  }
}

.sol-hero-crumb,
.oem-hero-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: rgba(244, 246, 248, 0.7);
}

.sol-hero-crumb a,
.oem-hero-crumb a {
  color: rgba(244, 246, 248, 0.78);
  text-decoration: none;
}

.sol-hero-crumb a:hover,
.oem-hero-crumb a:hover {
  color: #fff;
}

.sol-hero-brand,
.oem-hero-brand {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.sol-hero h1,
.oem-hero h1 {
  margin: 0 0 0.55rem;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
}

.sol-hero-lead,
.oem-hero-lead {
  margin: 0 0 1rem;
  max-width: none;
  width: 100%;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.45;
  color: rgba(244, 246, 248, 0.88);
}

.sol-hero-actions,
.oem-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.sol-hero-actions .btn-brand,
.oem-hero-actions .btn-brand {
  --btn-bg: #fff;
  --btn-fg: var(--brand);
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.sol-hero-actions .btn-brand:hover,
.oem-hero-actions .btn-brand:hover {
  background: #eef2f7;
  color: var(--brand);
}

.btn.sol-hero-ghost,
.btn.oem-hero-ghost,
.sol-hero-ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn.sol-hero-ghost:hover,
.btn.oem-hero-ghost:hover,
.sol-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.oem-custom-panel {
  padding: clamp(1.35rem, 2.8vw, 2rem);
  border-radius: 2px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(11, 58, 110, 0.06), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
}

.oem-custom-panel-title {
  margin: 0 0 1.15rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.oem-custom-grid {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .oem-custom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 1100px) {
  .oem-custom-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.oem-custom-grid li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 2px;
  background: #fff;
  border: 1px solid rgba(15, 23, 32, 0.08);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.oem-custom-grid li::before {
  content: "";
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%230b3a6e' stroke-width='1.2'/%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' stroke='%230b3a6e' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.oem-block-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.oem-block-head h2 {
  margin-bottom: 0.65rem;
}

.oem-block-head p {
  margin: 0 auto;
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.oem-block-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3vw, 2.35rem);
}

.oem-cases .oem-block-head p {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.oem-cases-list {
  display: grid;
  gap: 1.15rem;
  margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .oem-cases-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.35rem;
  }
}

.oem-case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.oem-case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
  overflow: hidden;
}

.oem-case-thumb {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface);
  color: inherit;
}

.oem-case-thumb.is-extra {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.oem-case-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oem-case-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: color-mix(in srgb, #0b1220 58%, transparent);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .oem-case-thumb img {
    transition: transform 0.45s var(--ease);
  }

  .oem-case-thumb:hover img,
  .oem-case-thumb:focus-visible img {
    transform: scale(1.03);
  }

  .oem-case-thumb.has-more:hover .oem-case-more,
  .oem-case-thumb.has-more:focus-visible .oem-case-more {
    background: color-mix(in srgb, #0b1220 68%, transparent);
  }
}

.oem-case-thumb:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
  z-index: 1;
}

.oem-case-copy {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-width: 0;
  padding: 1.05rem 1.15rem 1.2rem;
}

.oem-case-kicker {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--brand);
}

.oem-case-copy h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text);
}

.oem-case-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.oem-case-result {
  display: grid;
  gap: 0.3rem;
  margin: 0.25rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.oem-case-result-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.oem-why-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .oem-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1100px) {
  .oem-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.oem-why-card {
  position: relative;
  isolation: isolate;
  min-height: 15.5rem;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  background: #1a2430;
}

.oem-why-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.oem-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 22, 42, 0.08) 25%, rgba(8, 22, 42, 0.86) 100%);
}

.oem-why-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.1rem 1.2rem;
}

.oem-why-copy h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.oem-why-copy p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.oem-why-card:hover img {
  transform: scale(1.04);
}

.oem-process-track {
  position: relative;
  display: grid;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1100px) {
  .oem-process-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }

  .oem-process-track::before {
    content: "";
    position: absolute;
    top: 2.15rem;
    left: 8%;
    right: 8%;
    border-top: 1px dashed rgba(15, 23, 32, 0.28);
    z-index: 0;
  }
}

.oem-process-track li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
}

.oem-process-icon {
  display: grid;
  place-items: center;
  width: 4.3rem;
  height: 4.3rem;
  border: 1px solid rgba(15, 23, 32, 0.22);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
}

.oem-process-step {
  margin: 0.15rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.oem-process-track h3 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.oem-process-track li > p:last-child {
  margin: 0;
  max-width: 22ch;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1099px) {
  .oem-process-track li {
    grid-template-columns: 4.3rem minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 1rem;
    justify-items: start;
    text-align: left;
  }

  .oem-process-icon {
    grid-row: 1 / span 3;
    align-self: start;
  }

  .oem-process-track h3,
  .oem-process-track li > p:last-child {
    max-width: 48ch;
  }
}

.oem-brief {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .oem-brief {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  }
}

.oem-brief-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.oem-brief-list li {
  position: relative;
  padding-left: 1rem;
  color: #2a3138;
  font-size: 0.96rem;
  line-height: 1.5;
}

.oem-brief-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 1px;
  background: var(--brand);
}

.oem-brief-aside {
  display: grid;
  gap: 0.85rem;
}

.oem-brief-aside img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  background: var(--surface-2);
}

.oem-brief-aside ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oem-brief-aside li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: baseline;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.oem-brief-aside strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
}

@media (max-width: 720px) {
  .sol-hero,
  .oem-hero {
    min-height: 15.5rem;
    align-items: flex-end;
  }

  .sol-hero-inner,
  .oem-hero-inner {
    margin-left: var(--gutter);
    max-width: none;
    padding-block: 1.5rem 1.75rem;
  }

  .sol-hero h1,
  .oem-hero h1 {
    max-width: 12ch;
  }

  .page-hero {
    min-height: 9.5rem;
  }

  .page-hero-inner {
    padding-block: 1.1rem 1.2rem;
  }

  .page-hero h1 {
    max-width: none;
  }

  .contact-form-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal],
  .hero-content > *,
  .hero-content-panel.is-active > * {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .oem-why-card:hover img {
    transform: none;
  }
  .contact-form-actions .btn:active {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-solid {
    --header-fg: var(--text);
    --header-line: rgba(15, 23, 32, 0.1);
    background: #fff;
    color: var(--text);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .site-header::before {
    opacity: 0;
  }
}

/* —— Solutions page —— */
.solutions-page #trade-modes,
.solutions-page #applications,
.solutions-page #b2b,
.solutions-page #b2c,
.solutions-page #oem {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.solutions-page .sol-block-head {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.solutions-page .sol-block-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.solutions-page .sol-block-head p {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.sol-modes {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .sol-modes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.sol-mode {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 5 / 3.4;
  min-height: 17rem;
  overflow: hidden;
  border-radius: 2px;
  background: #1a222c;
  color: #fff;
  isolation: isolate;
}

.sol-mode-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.sol-mode:hover .sol-mode-bg {
  transform: scale(1.06);
}

.sol-mode-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 18, 26, 0.1) 0%, rgba(12, 18, 26, 0.28) 40%, rgba(12, 18, 26, 0.92) 100%);
}

.sol-mode-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.4rem;
  width: 100%;
  padding: clamp(1.2rem, 2.2vw, 1.75rem);
  align-content: end;
}

.sol-mode-kicker {
  margin: 0;
  font-family: var(--font-mono, var(--font-ui));
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.sol-mode h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sol-mode-who {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(244, 246, 248, 0.92);
}

.sol-mode-body > p:not(.sol-mode-kicker):not(.sol-mode-who) {
  margin: 0;
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(244, 246, 248, 0.8);
}

.sol-mode-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 650;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.sol-mode-cta:hover {
  color: #dce8f7;
}

.sol-mode-cta span {
  transition: transform 0.2s var(--ease);
}

.sol-mode-cta:hover span {
  transform: translateX(3px);
}

.sol-apps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .sol-apps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.sol-app {
  display: grid;
  grid-template-columns: minmax(7.5rem, 10.5rem) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.25s var(--ease);
}

.sol-app:hover {
  border-color: rgba(11, 58, 110, 0.35);
  transform: translateY(-2px);
}

.sol-app-media {
  display: block;
  background: #eef0f3;
  overflow: hidden;
}

.sol-app-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.sol-app:hover .sol-app-media img {
  transform: scale(1.04);
}

.sol-app-copy {
  display: grid;
  gap: 0.35rem;
  align-content: center;
  padding: 1rem 1.1rem 1.1rem;
}

.sol-app-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.sol-app-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.sol-app-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.sol-app-link {
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--brand);
}

.sol-app-link span {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

.sol-app:hover .sol-app-link span {
  transform: translateX(3px);
}

.sol-cta {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #0b3a6e;
  color: #fff;
  border-radius: 2px;
}

@media (min-width: 800px) {
  .sol-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
  }
}

.sol-cta-copy h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.sol-cta-copy p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(244, 246, 248, 0.88);
}

.sol-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sol-cta-actions .btn-brand {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.sol-cta-actions .btn-brand:hover {
  background: #eef2f7;
  color: var(--brand);
}

.sol-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.sol-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 720px) {
  .sol-app {
    grid-template-columns: 1fr;
  }

  .sol-app-media {
    aspect-ratio: 16 / 9;
  }

  .sol-mode {
    min-height: 15.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sol-mode-bg,
  .sol-app-media img,
  .sol-app {
    transition: none;
  }

  .sol-mode:hover .sol-mode-bg,
  .sol-app:hover .sol-app-media img {
    transform: none;
  }

  .sol-app:hover {
    transform: none;
  }
}

/* —— HTML Sitemap (SEOPress) —— */
.sitemap-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.sitemap-layout .sp-html-sitemap,
.sitemap-layout .wrap-html-sitemap {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.sitemap-layout .sp-wrap-cpt {
  display: grid;
  gap: 0.85rem;
}

.sitemap-layout .sp-cpt-name {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--mz-ink, #15202b);
  border-bottom: 1px solid color-mix(in srgb, var(--mz-ink, #15202b) 12%, transparent);
  padding-bottom: 0.45rem;
}

.sitemap-layout .sp-archive-link {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.92rem;
}

.sitemap-layout .sp-archive-link a {
  color: var(--mz-accent, #c45c26);
  text-decoration: none;
}

.sitemap-layout .sp-archive-link a:hover {
  text-decoration: underline;
}

.sitemap-layout .sp-html-sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.sitemap-layout .sp-html-sitemap ul ul {
  margin-top: 0.35rem;
  margin-left: 0.85rem;
  grid-template-columns: 1fr;
  padding-left: 0.65rem;
  border-left: 2px solid color-mix(in srgb, var(--mz-ink, #15202b) 10%, transparent);
}

.sitemap-layout .sp-html-sitemap li {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.sitemap-layout .sp-html-sitemap a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.sitemap-layout .sp-html-sitemap a:hover {
  color: var(--mz-accent, #c45c26);
  border-bottom-color: color-mix(in srgb, var(--mz-accent, #c45c26) 45%, transparent);
}

/* —— Legal pages (Privacy / Cookie / Terms) —— */
.legal-page-shell {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  max-width: 48rem;
}

.legal-page-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.legal-page-body {
  color: var(--text);
}

.legal-page-body h2 {
  margin-top: 2rem;
}

/* —— Order Tracking —— */
.order-tracking-section {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.order-tracking-crumb {
  margin: 0 0 0.85rem;
}

.order-tracking-layout {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: start;
  box-sizing: border-box;
  width: min(64rem, var(--shell-width));
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 960px) {
  .order-tracking-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(15.5rem, 0.85fr);
  }

  .order-tracking-layout--form-only {
    grid-template-columns: minmax(0, 1fr);
    max-width: 40rem;
  }
}

.order-tracking-main {
  min-width: 0;
  width: 100%;
}

.order-tracking-main h1.order-tracking-page-title,
.order-tracking-main h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.order-tracking-main-intro {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.order-tracking-help {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.25rem, 2.6vw, 1.65rem);
  border: 1px solid var(--line);
  background: #f7f8fa;
}

.order-tracking-help-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.order-tracking-help-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.order-tracking-help-channels {
  display: grid;
  gap: 1.05rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.order-tracking-help-channels li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.order-tracking-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.12rem;
  color: var(--brand);
}

.order-tracking-help-body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.order-tracking-help-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.order-tracking-help-body a,
.order-tracking-help-body > span:not(.order-tracking-help-label) {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 550;
  line-height: 1.4;
  word-break: break-word;
}

.order-tracking-help-body a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.order-tracking-help-body a:hover {
  color: var(--brand);
}

.order-tracking-help-cta {
  align-self: flex-start;
  margin-top: auto;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
}

.order-tracking-account-bar {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.order-tracking-account-bar > p {
  margin: 0;
  max-width: 48rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.order-tracking-account-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  color: var(--brand);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.order-tracking-account-link:hover {
  color: var(--brand-hover);
}

.order-tracking-account-link svg {
  transition: transform 0.2s var(--ease, ease);
}

.order-tracking-account-link:hover svg {
  transform: translateX(3px);
}

.order-tracking-main .mz-track-order,
.order-tracking-main .woocommerce-form-track-order {
  width: 100%;
  max-width: none;
  margin: 0;
}

.order-tracking-main .mz-track-order-lead {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.order-tracking-main .mz-track-order {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.order-tracking-main .mz-track-order > .clear {
  display: none;
}

.order-tracking-main .mz-track-order .form-row {
  margin: 0;
  float: none;
  width: 100%;
}

.order-tracking-main .mz-track-order .form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #2a3138;
}

.order-tracking-main .mz-track-order .form-row .input-text {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  color: var(--text);
  transition: border-color 0.18s var(--ease, ease), box-shadow 0.18s var(--ease, ease);
}

.order-tracking-main .mz-track-order .form-row .input-text:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.order-tracking-main .mz-track-order-actions .button,
.order-tracking-main .mz-track-order-actions .btn {
  min-height: 3rem;
  min-width: 10.5rem;
  padding: 0.75rem 1.45rem;
}

.order-tracking-main .woocommerce-order-details,
.order-tracking-main .woocommerce-customer-details {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: none;
}

.order-tracking-main mark.order-status {
  background: var(--accent-soft);
  color: var(--brand);
  padding: 0.15rem 0.45rem;
}

.order-tracking-main .woocommerce-info,
.order-tracking-main .woocommerce-error,
.order-tracking-main .woocommerce-message {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 959px) {
  .order-tracking-section {
    padding-inline: var(--gutter);
  }

  .order-tracking-layout {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .order-tracking-account-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Editor / imported content tables (Froala qtable, editor_table_wrap, etc.)
   Keep native table layout. Constrain to container; scroll on overflow.
   Never let tables expand .pdp-info / entry-content columns.
   -------------------------------------------------------------------------- */
.editor_table_wrap,
.entry-content .editor_table_wrap,
.pdp-details-lead .editor_table_wrap {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.editor_table_wrap > table,
.entry-content .editor_table_wrap > table,
.pdp-details-lead .editor_table_wrap > table {
  width: 100% !important;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: auto !important;
  border-collapse: collapse;
  table-layout: auto;
  border: 1px solid var(--line-strong, #d5dae0) !important;
  border-style: solid !important;
}

.editor_table_wrap > table tr,
.editor_table_wrap > table td,
.editor_table_wrap > table th,
.entry-content .editor_table_wrap > table tr,
.entry-content .editor_table_wrap > table td,
.entry-content .editor_table_wrap > table th,
.pdp-details-lead .editor_table_wrap > table tr,
.pdp-details-lead .editor_table_wrap > table td,
.pdp-details-lead .editor_table_wrap > table th {
  height: auto !important;
}

.editor_table_wrap > table td,
.editor_table_wrap > table th,
.entry-content .editor_table_wrap > table td,
.entry-content .editor_table_wrap > table th,
.pdp-details-lead .editor_table_wrap > table td,
.pdp-details-lead .editor_table_wrap > table th {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line-strong, #d5dae0) !important;
  border-color: var(--line-strong, #d5dae0) !important;
  border-style: solid !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  vertical-align: middle;
  box-sizing: border-box;
  background-clip: padding-box;
}

/* Label-ish odd cells (imported 4-col specs): soft surface for readability */
.editor_table_wrap > table td:nth-child(odd),
.entry-content .editor_table_wrap > table td:nth-child(odd),
.pdp-details-lead .editor_table_wrap > table td:nth-child(odd) {
  background: #f8fafc;
}

.editor_table_wrap > table tr:first-child td[colspan],
.entry-content .editor_table_wrap > table tr:first-child td[colspan],
.pdp-details-lead .editor_table_wrap > table tr:first-child td[colspan] {
  background: #fff;
  font-weight: 650;
}

/* PDP column containment — wide imported HTML must not blow out the grid */
.pdp-info,
.pdp-copy,
.pdp-folds,
.pdp-fold,
.pdp-fold-body,
.pdp-details-lead,
.pdp-details-lead .source-editor-block,
.pdp-details-lead .entry-content {
  min-width: 0;
  max-width: 100%;
}

.pdp-details-lead img,
.pdp-details-lead .source-editor-block img,
.entry-content .source-editor-block img {
  max-width: 100%;
  height: auto;
}

/* Imported “_____” spacer lines / unbroken strings must not expand the column */
.pdp-details-lead h1,
.pdp-details-lead h2,
.pdp-details-lead h3,
.pdp-details-lead h4,
.pdp-details-lead p,
.pdp-details-lead span,
.pdp-fold-title {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 699px) {
  .editor_table_wrap > table,
  .entry-content .editor_table_wrap > table,
  .pdp-details-lead .editor_table_wrap > table {
    /* Prefer readable columns; scroll inside wrap only */
    width: max(100%, 36rem) !important;
    max-width: none;
  }
}

