:root {
  --font-sans: Inter, Arial, sans-serif;
  --ink: #11110f;
  --muted: #64645f;
  --paper: #ffffff;
  --soft: #f4f4f1;
  --line: #d9d9d3;
  --sage: #dfe9e4;
  --accent: #d96e3f;
  --max: 1240px;
  --radius: 18px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 18px;
  --control-height: 48px;
  --focus-ring: #2563eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.55;
}
body:has(dialog[open]) { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.section-shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.draft-bar {
  min-height: 31px;
  display: grid;
  place-items: center;
  padding: 7px 24px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(17, 17, 15, .1);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}
.brand { min-height: 44px; display: inline-flex; align-items: center; }
.brand img { width: auto; height: 48px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-size: 13px; font-weight: 600; text-decoration: none; }
.site-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.menu-button { display: none; border: 0; background: transparent; font-weight: 700; }

.button {
  min-height: var(--control-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.button:disabled { cursor: not-allowed; opacity: .48; transform: none; }
.button-dark { color: #fff; background: var(--ink); }
.button-light { color: var(--ink); background: #fff; }
.button-small { min-height: 44px; padding-inline: 17px; font-size: 13px; }
.button-white { color: var(--ink); border-color: #fff; background: #fff; }
.button-outline { color: #fff; border-color: rgba(255,255,255,.55); background: transparent; }
.button-alibaba { color: #fff; border-color: #ff6a00; background: #ff6a00; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 56px;
  align-items: center;
  padding-block: 70px 78px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,.65); }
.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.062em;
}
.hero-lede {
  max-width: 650px;
  margin: 25px 0;
  color: #4d4d48;
  font-size: 18px;
  line-height: 1.65;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 27px; }
.hero-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-size: 12px;
  font-weight: 700;
}
.microcopy { max-width: 630px; margin: 18px 0 0; color: #74746e; font-size: 12px; }
.hero-media { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); background: var(--sage); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { margin: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-slide-essentials img { object-position: center 28%; }
.hero-carousel-controls {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.hero-slide-picker, .hero-carousel-actions { display: flex; gap: 6px; pointer-events: auto; }
.hero-carousel-controls button {
  min-width: 44px;
  min-height: 44px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  color: #fff;
  background: rgba(17,17,15,.68);
  backdrop-filter: blur(8px);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}
.hero-carousel-controls button:hover, .hero-carousel-controls button:focus-visible, .hero-carousel-controls button.is-active {
  color: var(--ink);
  background: #fff;
}
.hero-carousel-controls button:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 12px;
  color: #fff;
  background: rgba(17,17,15,.78);
  backdrop-filter: blur(8px);
}
.hero-note strong { font-size: 11px; letter-spacing: .12em; }
.hero-note span { font-size: 12px; text-align: right; }

.offer-strip { padding: 86px 0 94px; background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 40px; }
.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading h2 { max-width: 780px; margin: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offer-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.offer-card-featured { background: var(--sage); }
.offer-card-dark { color: #fff; border-color: var(--ink); background: var(--ink); }
.step-number { margin: 0 0 auto; color: #7a7a74; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.offer-card h3 { margin: 48px 0 10px; font-size: 31px; letter-spacing: -.035em; }
.offer-card p:not(.step-number) { margin: 0 0 26px; color: #5c5c56; }
.offer-card-dark p:not(.step-number), .offer-card-dark .step-number { color: rgba(255,255,255,.66); }
.offer-card a, .offer-card button {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: none;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.products-section { padding-block: 96px; }
.products-heading { align-items: end; }
.section-intro { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filter-button { min-height: 44px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; color: #4f4f4a; background: #fff; font-weight: 700; cursor: pointer; }
.filter-button.is-active { color: #fff; border-color: var(--ink); background: var(--ink); }
.product-discovery { display: grid; grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(140px, .7fr)) auto; align-items: end; gap: 10px; margin-bottom: 12px; }
.product-discovery label { display: grid; gap: 7px; min-width: 0; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-discovery input, .product-discovery select { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: #fff; font: inherit; font-size: 12px; font-weight: 600; letter-spacing: normal; text-transform: none; }
.product-discovery input:focus-visible, .product-discovery select:focus-visible, .clear-product-filters:focus-visible { outline: 3px solid rgba(17,17,15,.22); outline-offset: 2px; border-color: var(--ink); }
.clear-product-filters { min-height: 44px; padding: 10px 14px; border: 1px solid var(--ink); border-radius: 8px; color: var(--ink); background: #fff; font-size: 11px; font-weight: 800; cursor: pointer; }
.product-results-summary { display: flex; justify-content: space-between; min-height: 28px; margin-bottom: 17px; }
.product-results-summary p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 600; }
.product-empty-state { padding: 42px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); text-align: center; }
.product-empty-state h3 { margin: 0 0 10px; font-size: 25px; }
.product-empty-state p { max-width: 560px; margin: 0 auto 22px; color: var(--muted); }
.product-empty-state .button-row { justify-content: center; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 16px; }
.product-card { min-width: 0; }
.product-card[hidden] { display: none; }
.product-image-wrap { position: relative; aspect-ratio: 1 / .98; overflow: hidden; border-radius: 14px; background: var(--soft); }
.product-image-link { width: 100%; height: 100%; display: block; cursor: pointer; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.product-image-link:focus-visible { outline: 3px solid var(--ink); outline-offset: -4px; }
.product-card:hover .product-image-wrap img { transform: scale(1.025); }
.candidate-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17,17,15,.82);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
}
.product-info { padding: 17px 3px 0; }
.product-category { margin: 0 0 6px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.series-availability { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.retail-price { display: flex; align-items: center; gap: 8px; margin: 7px 0 15px; color: #5e5e58; font-size: 13px; }
.retail-price strong { color: var(--ink); font-size: 17px; }
.retail-price del { color: #8b8b84; font-size: 12px; }
.series-price-context { min-height: 28px; margin: -9px 0 15px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.product-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.product-actions button, .product-actions a { min-height: 44px; display: inline-flex; align-items: center; padding: 0; border: 0; border-bottom: 1px solid var(--ink); color: var(--ink); background: none; font-size: 12px; font-weight: 700; text-decoration: none; cursor: pointer; }
.product-actions button { color: var(--accent); border-color: var(--accent); }
.cart-link { display: inline-flex; align-items: center; gap: 6px; }
.cart-link span { min-width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 9px; }

.proof-section { padding-block: 96px; color: #fff; background: var(--ink); }
.proof-heading p { max-width: 490px; margin: 0; color: rgba(255,255,255,.63); }
.proof-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 16px; }
.proof-main, .proof-detail { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: #1b1b19; }
.proof-main img { width: 100%; aspect-ratio: 1.8; object-fit: cover; }
.proof-detail img { width: 100%; aspect-ratio: 1 / .88; object-fit: cover; object-position: top; }
.proof-main > div, .proof-detail > div { padding: 26px; }
.proof-kicker { margin: 0 0 8px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.proof-grid h3 { margin: 0 0 9px; font-size: 25px; letter-spacing: -.03em; }
.proof-grid p:last-child { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }

.private-label { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: start; padding-block: 104px; }
.private-copy h2 { max-width: 700px; margin: 0 0 22px; font-size: clamp(40px, 4.5vw, 64px); line-height: 1.02; letter-spacing: -.05em; }
.private-copy > p:not(.eyebrow) { max-width: 690px; color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li { padding-left: 18px; border-left: 2px solid var(--ink); color: #53534e; }
.boundary-card { padding: 30px; border-radius: var(--radius); background: var(--soft); }
.boundary-label { margin: 0 0 25px; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.boundary-item { display: grid; grid-template-columns: 40px 1fr; gap: 8px; padding: 18px 0; border-top: 1px solid var(--line); }
.boundary-item span { color: #85857f; font-size: 11px; font-weight: 800; }
.boundary-item p { margin: 0; font-weight: 600; }

.faq-section { padding-bottom: 104px; }
.faq-heading { display: block; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 42px 24px 0; font-size: 17px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 22px; font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; margin: -7px 0 25px; color: var(--muted); }

.alibaba-bridge { display: flex; align-items: end; justify-content: space-between; gap: 46px; margin-bottom: 92px; padding: 34px; border: 1px solid #f0c7a9; border-radius: var(--radius); background: #fff7f1; }
.alibaba-bridge h2 { margin: 0 0 10px; font-size: clamp(30px, 3vw, 43px); line-height: 1.02; letter-spacing: -.04em; }
.alibaba-bridge p:not(.eyebrow) { max-width: 690px; margin: 0; color: var(--muted); }
.alibaba-bridge .button-row { flex: 0 0 auto; }

.closing-cta { padding-block: 70px; color: #fff; background: var(--ink); }
.closing-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.closing-inner h2 { max-width: 720px; margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.site-footer { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-block: 44px; }
.site-footer img { width: auto; height: 52px; }
.site-footer p { margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.site-footer > p { max-width: 390px; text-align: right; }
.site-footer a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

dialog {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 26px 90px rgba(0,0,0,.25);
}
dialog::backdrop { background: rgba(17,17,15,.64); backdrop-filter: blur(4px); }
.dialog-close { position: sticky; z-index: 2; top: 14px; float: right; margin: 14px 14px 0 0; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 12px; font-weight: 800; cursor: pointer; }
.dialog-grid { display: grid; grid-template-columns: 1fr 1fr; clear: both; }
.dialog-grid > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; background: var(--soft); }
.dialog-copy { padding: 52px 42px; }
.dialog-copy h2, .inquiry-copy h2 { margin: 0 0 16px; font-size: 40px; line-height: 1; letter-spacing: -.04em; }
.dialog-copy > p:not(.eyebrow), .inquiry-copy > p:not(.eyebrow) { color: var(--muted); }
.dialog-tiers { display: grid; margin: 26px 0; border-top: 1px solid var(--line); }
.dialog-tiers div { display: grid; gap: 3px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.dialog-tiers span { color: var(--muted); font-size: 12px; }
.inquiry-dialog { width: min(610px, calc(100% - 32px)); padding: 0 38px 38px; }
.inquiry-copy { clear: both; padding-top: 30px; }
.inquiry-dialog form { display: grid; gap: 16px; margin-top: 26px; }
.inquiry-dialog .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inquiry-dialog label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.inquiry-dialog input, .inquiry-dialog select, .inquiry-dialog textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; }
.inquiry-dialog .consent-row { grid-template-columns: auto 1fr; align-items: start; font-weight: 500; line-height: 1.5; }
.inquiry-dialog .consent-row input { width: 16px; margin-top: 2px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 20px; margin: 0; color: #2e6d52; font-size: 12px; font-weight: 700; }
.cookie-banner { position: fixed; z-index: 100; right: 18px; bottom: 18px; width: min(520px, calc(100% - 36px)); display: flex; align-items: center; gap: 18px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 12px 44px rgba(0,0,0,.18); }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.cookie-banner a { display: inline; font-weight: 700; text-underline-offset: 2px; }
.cookie-banner div { display: flex; gap: 7px; flex: 0 0 auto; }
.cookie-banner button { border: 1px solid var(--ink); border-radius: 5px; padding: 8px 10px; background: #fff; font-size: 10px; font-weight: 800; cursor: pointer; }
.cookie-banner button:last-child { color: #fff; background: var(--ink); }

@media (max-width: 1020px) {
  .site-nav { gap: 16px; }
  .site-nav a:nth-child(3), .site-nav a:nth-child(4) { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero h1 { font-size: clamp(45px, 6vw, 64px); }
  .hero-media { min-height: 500px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-discovery { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .clear-product-filters { grid-column: 1 / -1; width: fit-content; }
  .private-label { gap: 40px; }
}

@media (max-width: 760px) {
  .section-shell { width: min(calc(100% - 32px), var(--max)); }
  .draft-bar { min-height: 36px; font-size: 9px; line-height: 1.3; }
  .site-header { height: 66px; padding-inline: 16px; }
  .brand img { width: auto; height: 42px; }
  .menu-button { display: block; padding: 10px 0; cursor: pointer; }
  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 20px 16px 26px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .site-nav.is-open { display: grid; }
  .site-nav a, .site-nav a:nth-child(3), .site-nav a:nth-child(4) { min-height: 44px; display: flex; align-items: center; padding: 8px 0; }
  .site-nav .button { margin-top: 8px; }
  .hero { grid-template-columns: 1fr; gap: 28px; padding-block: 24px 56px; }
  .hero-copy { display: flex; flex-direction: column; }
  .hero h1 { font-size: clamp(39px, 11.5vw, 52px); }
  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; }
  .hero-copy .button-row { order: 3; margin-top: 24px; }
  .hero-copy .hero-lede { order: 4; }
  .hero-copy .hero-tags { order: 5; }
  .hero-copy .microcopy { order: 6; }
  .hero-lede { margin-block: 18px; font-size: 16px; }
  .hero-media { min-height: 390px; }
  .hero-carousel-controls { top: 12px; right: 12px; left: 12px; }
  .hero-carousel-actions button { padding-inline: 9px; }
  .hero-note { display: block; }
  .hero-note span { display: block; margin-top: 4px; text-align: left; }
  .section-heading, .products-heading, .proof-heading, .closing-inner { display: block; }
  .section-heading h2 { font-size: 38px; }
  .section-intro, .proof-heading > p { margin-top: 18px; }
  .offer-strip, .products-section, .proof-section { padding-block: 70px; }
  .offer-grid, .product-grid, .proof-grid, .private-label { grid-template-columns: 1fr; }
  .offer-card { min-height: 290px; }
  .product-grid { gap: 34px; }
  .filter-row { margin-bottom: 16px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: thin; }
  .filter-button { flex: 0 0 auto; }
  .product-discovery { grid-template-columns: 1fr 1fr; gap: 11px 8px; }
  .product-search, .clear-product-filters { grid-column: 1 / -1; }
  .product-discovery label:last-of-type { grid-column: 1 / -1; }
  .product-results-summary { margin-bottom: 14px; }
  .product-empty-state { padding: 34px 20px; }
  .product-image-wrap { aspect-ratio: 1 / .9; }
  .private-label { gap: 40px; padding-block: 76px; }
  .private-copy h2 { font-size: 42px; }
  .faq-section { padding-bottom: 76px; }
  .alibaba-bridge { display: block; margin-bottom: 62px; padding: 25px; }
  .alibaba-bridge .button-row { margin-top: 22px; }
  .closing-inner .button-row { margin-top: 28px; }
  .site-footer { display: block; }
  .site-footer > p { margin-top: 24px; text-align: left; }
  .dialog-grid { grid-template-columns: 1fr; }
  .dialog-grid > img { min-height: 300px; max-height: 360px; }
  .dialog-copy { padding: 34px 24px; }
  .dialog-copy h2, .inquiry-copy h2 { font-size: 34px; }
  .inquiry-dialog { padding: 0 22px 28px; }
  .inquiry-dialog .form-grid { grid-template-columns: 1fr; }
  .cookie-banner {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    max-height: calc(100vh - 28px);
    margin: 0;
    padding: 12px 14px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  body:has(.cookie-banner) { padding-bottom: 180px; }
  .cookie-banner p { font-size: 10px; }
  .cookie-banner button { min-height: 44px; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: clamp(36px, 11.5vw, 44px); }
  .hero-media { min-height: 340px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 9px; }
  .cookie-banner div { justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
.alibaba-inquiry-button{display:flex;align-items:center;justify-content:center;min-height:52px;padding:12px 18px;background:#ff6a00;color:#fff;font-weight:800;letter-spacing:.03em;text-align:center;text-decoration:none;border-radius:4px}.alibaba-inquiry-button:hover{background:#e85f00;color:#fff}.alibaba-inquiry-button:focus-visible{outline:3px solid #111;outline-offset:3px}
