/* ============================================================
   LIDO Fashion — Shared Stylesheet
   ============================================================ */

/* ===== Design Tokens ===== */
:root {
  --bg: #f6f1ea;
  --ink: #1b1b1b;
  --muted: #6e6a64;
  --accent: #9a6b56;
  --accent2: #8e6b56;
  --line: rgba(27,27,27,.12);
  --line2: rgba(27,27,27,.08);
  --panel: rgba(255,255,255,.42);

  --max: 1200px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(20,12,6,.10);
  --shadow2: 0 10px 24px rgba(20,12,6,.08);

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Apple Color Emoji", "Segoe UI Emoji";
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Noto Serif SC", "PingFang SC", serif;

  --logoRowH: 64px;
  --navRowH: 64px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Utilities ===== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ===== Utility Bar ===== */
.utilityBar {
  width: 100%;
  background: #faf8f4;
  border-bottom: 1px solid var(--line2);
}

.utilityInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .14em;
  color: #6b645c;
  font-family: var(--sans);
  text-transform: uppercase;
}

.utilityLeft {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utilityRight {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

/* Partner Portal link (LIDO-Track) in the top utility bar */
.utilityPortal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  padding-right: 12px;
  border-right: 1px solid var(--line);
  transition: color .15s ease;
}
.utilityPortal:hover { color: var(--accent2); }
.utilityPortal__arrow { font-size: 11px; }

.utilityChange {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .06em;
  color: #1f1f1f;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}

.utilityChange:hover {
  color: var(--accent2);
  border-bottom-color: var(--accent2);
}

@media (max-width: 860px) {
  .utilityLeft { display: none; }
}

/* ===== Language Selector ===== */
.langSelector { position: relative; display: inline-flex; align-items: center; }
.langSelector__trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--sans); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: #6b645c; white-space: nowrap;
}
.langSelector__trigger:hover { color: var(--accent2); }
.langSelector__trigger svg {
  width: 10px; height: 6px; transition: transform .2s;
  color: #6b645c; flex-shrink: 0;
}
.langSelector.is-open .langSelector__trigger svg { transform: rotate(180deg); }
.langSelector__dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 160px;
  background: #fff; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 6px 0; opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .2s, visibility .2s, transform .2s; z-index: 9999;
}
.langSelector.is-open .langSelector__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.langSelector__option {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 9px 16px; border: none; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 13px; letter-spacing: .02em;
  text-transform: none; color: var(--ink); transition: background .15s;
  text-align: left;
}
.langSelector__option:hover { background: var(--bg); }
.langSelector__option.is-active { font-weight: 600; color: var(--accent); }
.langSelector__check { width: 16px; font-size: 13px; opacity: 0; }
.langSelector__option.is-active .langSelector__check { opacity: 1; }
@media (max-width: 640px) {
  .langSelector__dropdown { right: -12px; min-width: 148px; }
}

/* ===== Language-specific ===== */
html[lang="zh"] body { line-height: 1.75; }
html[lang="zh"] .heroTitle,
html[lang="zh"] .sectionTitle,
html[lang="zh"] .collectionDesc__heading { letter-spacing: 0; }

/* ===== Site Header ===== */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246,241,234,.72);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

.siteHeader.isSolid {
  background: rgba(246,241,234,.92);
  border-bottom-color: var(--line);
}

/* Logo row */
.logoRow {
  height: var(--logoRowH);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.brandTop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}

.brandTop img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: contrast(1.03);
}

/* Nav row */
.navRow {
  height: var(--navRowH);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.navInner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

/* Nav: left (search) */
.navLeft {
  display: flex;
  align-items: center;
  gap: 10px;
}

.searchPill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  min-width: 240px;
  color: var(--muted);
  background: transparent;
}

.searchIcon {
  width: 14px; height: 14px;
  border: 1.6px solid var(--muted);
  border-radius: 50%;
  position: relative;
  opacity: .9;
  flex-shrink: 0;
}

.searchIcon::after {
  content: "";
  position: absolute;
  width: 7px; height: 1.6px;
  background: var(--muted);
  right: -6px; bottom: -3px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.searchPill input {
  border: none; outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: .02em;
}

.searchPill input::placeholder { color: rgba(106,98,90,.85); }

/* Nav: center (season link) */
.navCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seasonLink {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--muted);
  letter-spacing: .03em;
  padding: 10px 10px;
  border-bottom: 1px solid var(--line);
}

/* Nav: right (page links) */
.navRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .02em;
}

.navRight a {
  color: var(--ink);
  padding: 10px 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.navRight a:hover {
  border-bottom-color: var(--line);
  color: var(--accent2);
}

.navRight a.isActive {
  border-bottom-color: var(--accent);
  color: var(--accent2);
}

/* Mobile menu button */
.menuBtn {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  padding: 10px 12px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.hamburger {
  width: 16px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.hamburger span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 5px; }
.hamburger span:nth-child(3) { top: 10px; }

@media (max-width: 920px) {
  .navInner { grid-template-columns: auto 1fr auto; }
  .searchPill { min-width: 180px; }
  .navRight { display: none; }
  .menuBtn { display: inline-flex; }
  .navLeft { gap: 12px; }
}

/* ===== Drawer Menu ===== */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  display: none;
  z-index: 80;
}

.drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: var(--bg);
  z-index: 81;
  transform: translateX(-105%);
  transition: transform .25s ease;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.drawer__header {
  height: calc(var(--logoRowH) + var(--navRowH));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 18px 14px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}

.drawer__header strong {
  font-family: var(--serif);
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 500;
}

.drawer__close {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font-family: var(--serif);
}

.drawer__content { padding: 18px; overflow: auto; }
.drawer__section { margin-bottom: 18px; }

.drawer__title {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px 0;
  font-family: var(--sans);
}

.drawer__list { display: grid; gap: 10px; }

.drawer__link {
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.30);
  transition: background .15s ease;
}

.drawer__link:hover {
  background: rgba(255,255,255,.50);
}

.drawer__pill {
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.45);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--serif);
}

.is-open .overlay { display: block; }
.is-open .drawer { transform: translateX(0); }

/* ===== Main Content Container ===== */
.mainContent {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 18px 40px;
}

/* ===== Text Header (listing pages) ===== */
.textHeader {
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.textHeader__eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--sans);
}

.textHeader__title {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.05;
  margin: 12px 0 10px;
  letter-spacing: -.02em;
  font-weight: 500;
}

.textHeader__subtitle {
  max-width: 880px;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}

/* Chips & tags */
.chip {
  background: rgba(255,255,255,.35);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.tag {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.32);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--serif);
}

/* CTA buttons */
.ctaRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 6px;
}

.btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.40);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--serif);
  letter-spacing: .02em;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.55);
  border-color: rgba(40,30,20,.18);
}

.btn.primary {
  background: rgba(162,119,95,.10);
  border-color: rgba(162,119,95,.30);
  color: var(--accent2);
}

.btn.primary:hover {
  background: rgba(162,119,95,.18);
}

/* ===== Filter Bar ===== */
.activeFilters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 8px;
}

.filterBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0 10px;
  margin-bottom: 12px;
}

.filterGroup {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  padding: 10px 12px;
  cursor: pointer;
  font-family: var(--serif);
  color: var(--ink);
}

.select:hover { border-color: rgba(40,30,20,.20); }

/* ===== Listing Grid ===== */
.listingGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

/* ===== Product Card ===== */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.30);
  box-shadow: 0 2px 14px rgba(20,12,6,.05);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.40);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line2);
  background: #eee;
}

.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.02) contrast(1.02);
}

.card:hover .card__media img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.04);
}

.card__body {
  padding: 14px 14px 16px;
  text-align: center;
}

.card__name {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .01em;
  font-weight: 500;
}

.card__sub {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent2);
  letter-spacing: .01em;
}

.card__body::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: rgba(162,119,95,.55);
  margin: 0 auto 12px;
  transition: width .25s ease;
}

.card:hover .card__body::before { width: 54px; }

/* ===== LP-Style Footer ===== */
.lp-footer {
  margin-top: 72px;
}

.lp-footer__panel {
  background: #9a534c;
  color: #f6f1ea;
  padding: 64px 0 72px;
}

.lp-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.lp-footer h3 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: .2px;
}

.lp-footer h4 {
  margin: 6px 0 18px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .2px;
}

.lp-footer p {
  margin: 0 0 18px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.7;
  opacity: .92;
}

.lp-footer a {
  color: #f6f1ea;
  text-decoration: none;
  opacity: .92;
}

.lp-footer a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lp-footer__col a {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
}

.lp-footer__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(246,241,234,.65);
  margin: 18px 0 18px;
  max-width: 520px;
}

.lp-footer__form input {
  background: transparent;
  border: none;
  outline: none;
  color: #f6f1ea;
  font-size: 14px;
  padding: 10px 2px;
}

.lp-footer__form input::placeholder {
  color: rgba(246,241,234,.78);
}

.lp-footer__submit {
  border: none;
  background: transparent;
  color: #f6f1ea;
  font-size: 22px;
  padding: 6px 6px;
  cursor: pointer;
  opacity: .92;
}

.lp-footer__submit:hover { opacity: 1; }

.lp-footer__fine {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.7;
  opacity: .85;
}

.lp-footer__link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer bottom bar */
.lp-footer__bottom {
  background: #f6f1ea;
  color: #8e7f73;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.lp-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.lp-footer__locale {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.lp-footer__locale a {
  color: #9a534c;
  opacity: .9;
}

.lp-footer__globe {
  color: #9a534c;
  opacity: .7;
  font-size: 14px;
}

.lp-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-footer__brand img {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: contrast(1.02);
}

.lp-footer__social {
  justify-self: end;
  display: inline-flex;
  gap: 32px;
  flex-wrap: wrap;
}

.lp-footer__social a {
  color: #9a534c;
  opacity: .9;
  font-size: 13px;
}

.lp-footer__meta {
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 0 56px;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
  opacity: .6;
}

.lp-footer__meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.lp-footer__meta a:hover {
  color: var(--accent2);
}

/* Footer responsive */
@media (max-width: 980px) {
  .lp-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .lp-footer__newsletter {
    grid-column: 1 / -1;
  }
  .lp-footer__bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
  }
  .lp-footer__social {
    justify-self: center;
    justify-content: center;
    gap: 22px;
  }
}

/* ===== Advantage Cards ===== */
.advantageGrid {
  display: grid;
  gap: 16px;
}

@media (min-width: 780px) {
  .advantageGrid { grid-template-columns: repeat(3, 1fr); }
}

.advantageCard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: rgba(255,255,255,.30);
  transition: transform .18s ease, box-shadow .18s ease;
}

.advantageCard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.advantageCard__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--serif);
  font-size: 14px;
  margin-bottom: 16px;
}

.advantageCard__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: .01em;
}

.advantageCard__text {
  font-size: 14px;
  line-height: 1.75;
  color: #2a2a2a;
  margin: 0;
}

.advantageCard__detail {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.advantageCard__detail li {
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a2a;
  padding: 6px 0;
  border-bottom: 1px solid var(--line2);
}

.advantageCard__detail li:last-child { border-bottom: none; }

/* ===== Process Timeline ===== */
.processSection {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px;
  border-top: 1px solid var(--line);
}

.processSection__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .2px;
  margin: 0 0 12px;
}

.processSection__subtitle {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 640px;
}

.processTimeline {
  display: grid;
  gap: 0;
  counter-reset: step;
}

@media (min-width: 780px) {
  .processTimeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}

.processStep {
  position: relative;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.30);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

@media (min-width: 780px) {
  .processStep {
    border-radius: 0;
    border-right: none;
  }
  .processStep:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
  }
  .processStep:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 779px) {
  .processStep + .processStep {
    border-top: none;
  }
  .processStep:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .processStep:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .processStep:not(:first-child):not(:last-child) {
    border-radius: 0;
  }
}

.processStep:hover {
  background: rgba(255,255,255,.50);
  z-index: 1;
}

.processStep__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #f6f1ea;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.processStep__title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}

.processStep__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Arrow connector between steps (desktop only) */
@media (min-width: 780px) {
  .processStep + .processStep::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--line);
    z-index: 2;
  }
}

/* ===== Product Matrix (Collection Lines) ===== */
.matrixSection {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.matrixSection__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .2px;
  margin: 0 0 10px;
}

.matrixSection__subtitle {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 720px;
}

.matrixGrid {
  display: grid;
  gap: 16px;
}

@media (min-width: 780px) {
  .matrixGrid { grid-template-columns: repeat(3, 1fr); }
}

.matrixCard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.30);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}

.matrixCard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.matrixCard__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line2);
}

.matrixCard__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.matrixCard:hover .matrixCard__image img {
  transform: scale(1.06);
}

.matrixCard__body {
  padding: 20px;
}

.matrixCard__label {
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--sans);
  margin: 0 0 8px;
}

.matrixCard__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}

.matrixCard__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #2a2a2a;
  margin: 0;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Filter Sidebar System ===== */

/* Layout: sidebar + grid */
.listingLayout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── Sidebar ── */
.fSidebar {
  position: sticky;
  top: calc(var(--logoRowH) + var(--navRowH) + 20px);
  max-height: calc(100vh - var(--logoRowH) - var(--navRowH) - 40px);
  overflow-y: auto;
  padding-right: 8px;
}

.fSidebar::-webkit-scrollbar { width: 4px; }
.fSidebar::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.fSidebar__header {
  display: none; /* shown on mobile */
}

/* ── Filter group ── */
.fGroup {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.fGroup:first-of-type { padding-top: 0; }

.fGroup__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  text-align: left;
}

.fGroup__title::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.fGroup.is-collapsed .fGroup__title::after {
  transform: rotate(-45deg);
}

.fGroup__body {
  padding-top: 12px;
  display: grid;
  gap: 8px;
  transition: max-height .25s ease, opacity .2s ease;
  max-height: 400px;
  overflow: hidden;
}

.fGroup.is-collapsed .fGroup__body {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
}

.fGroup.is-collapsed .fGroup__toggle,
.fGroup.is-collapsed .fGroup__fade {
  display: none;
}

/* ── Scrollable filter body (long lists) ── */
.fGroup__body--scrollable {
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.15) rgba(0,0,0,.03);
}

.fGroup__body--scrollable::-webkit-scrollbar { width: 6px; }
.fGroup__body--scrollable::-webkit-scrollbar-track {
  background: rgba(0,0,0,.03);
  border-radius: 3px;
}
.fGroup__body--scrollable::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.15);
  border-radius: 3px;
}
.fGroup__body--scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,.25);
}

/* Gradient fade overlay for scrollable groups */
.fGroup__wrap {
  position: relative;
}

.fGroup__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 8px;             /* account for scrollbar space */
  height: 32px;
  background: linear-gradient(transparent, rgba(246,241,234,.92));
  pointer-events: none;
  opacity: 1;
  transition: opacity .2s ease;
  border-radius: 0 0 4px 4px;
}

.fGroup__fade--hidden {
  opacity: 0;
}

/* Show all / Show less toggle */
.fGroup__toggle {
  display: inline-block;
  background: none;
  border: none;
  padding: 6px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--accent);
  cursor: pointer;
  letter-spacing: .01em;
  transition: color .15s ease;
}

.fGroup__toggle:hover {
  color: var(--ink);
}

/* Collapsed (truncated) state — show 8 items */
.fGroup__body--truncated > .fCheck:nth-child(n+9) {
  display: none;
}

/* ── Checkboxes & Radios ── */
.fCheck {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}

.fCheck input { display: none; }

.fCheck__box,
.fCheck__radio {
  width: 18px; height: 18px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,.4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease, background .15s ease;
}

.fCheck__radio { border-radius: 50%; }

.fCheck input:checked + .fCheck__box,
.fCheck input:checked + .fCheck__radio {
  border-color: var(--accent);
  background: var(--accent);
}

.fCheck input:checked + .fCheck__box::after {
  content: "";
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.fCheck input:checked + .fCheck__radio::after {
  content: "";
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
}

.fCheck__count {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
}

/* ── Color swatches ── */
.fColors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
}

.fColorSwatch {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
  padding: 0;
  background: none;
}

.fColorSwatch__fill {
  width: 100%; height: 100%;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(0,0,0,.1);
}

.fColorSwatch.is-active {
  border-color: var(--accent);
  transform: scale(1.15);
}

.fColorSwatch__tip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}

.fColorSwatch:hover .fColorSwatch__tip { opacity: 1; }

/* ── Toolbar (above grid) ── */
.fToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px;
  gap: 12px;
  flex-wrap: wrap;
}

.fCount {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .02em;
}

.fSort {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  padding: 8px 14px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236e6a64'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ── Mobile filter toggle ── */
.fToggleBtn {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.40);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}

.fToggleBtn svg { width: 16px; height: 16px; }

/* ── Filter chips ── */
.fChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
}

.fChips:empty { display: none; }

.fChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(162,119,95,.08);
  border: 1px solid rgba(162,119,95,.25);
  color: var(--accent2);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--serif);
  letter-spacing: .02em;
}

.fChip__x {
  width: 14px; height: 14px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fClearAll {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--muted);
  border: none;
  background: none;
  cursor: pointer;
  padding: 5px 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fClearAll:hover { color: var(--accent); }

/* ── Overlay (mobile) ── */
.fOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 89;
}

/* ── Card filtering transitions ── */
.card.is-filtering {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .2s ease, transform .2s ease;
}

.card.is-shown {
  opacity: 1;
  transform: scale(1);
  transition: opacity .3s ease, transform .3s ease;
}

.card.is-hidden {
  display: none;
}

/* ── Responsive: mobile drawer ── */
@media (max-width: 860px) {
  .listingLayout {
    grid-template-columns: 1fr;
  }

  .fSidebar {
    position: fixed;
    top: 0; left: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--bg);
    z-index: 90;
    transform: translateX(-105%);
    transition: transform .28s ease;
    padding: 0;
    max-height: none;
    overflow-y: auto;
    border-right: 1px solid var(--line);
  }

  .fSidebar.is-open {
    transform: translateX(0);
  }

  .fSidebar.is-open ~ .fOverlay {
    display: block;
  }

  .fSidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line);
  }

  .fSidebar__header strong {
    font-family: var(--serif);
    font-size: 16px;
    letter-spacing: .02em;
  }

  .fSidebar__close {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.35);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 13px;
  }

  .fSidebar__body {
    padding: 8px 18px 24px;
  }

  .fToggleBtn { display: inline-flex; }
}

@media (min-width: 861px) {
  .fSidebar__header { display: none; }
  .fOverlay { display: none !important; }
  .fSidebar__body { padding: 0; }
}

/* ================================================================
   INQUIRY CART — icon, badge, drawer, toast, summary page
   ================================================================ */

/* ── Nav cart icon ─────────────────────────────────────────── */
.navCart {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 4px;
  margin-left: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.navCart:hover { border-bottom-color: var(--line); }
.navCart__icon {
  width: 20px; height: 20px;
  stroke: var(--ink);
  transition: stroke .2s ease;
}
.navCart:hover .navCart__icon { stroke: var(--accent2); }
.navCart__badge {
  position: absolute;
  top: 4px; right: -6px;
  min-width: 16px; height: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Inquiry drawer (slides from right) ────────────────────── */
.iqOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 199;
  opacity: 0;
  transition: opacity .25s ease;
}
.iqOverlay.is-active {
  display: block;
  opacity: 1;
}

.iqDrawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 92vw);
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  transform: translateX(105%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  box-shadow: -4px 0 24px rgba(0,0,0,.08);
}
.iqDrawer.is-open { transform: translateX(0); }

.iqDrawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.iqDrawer__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
}
.iqDrawer__close {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .15s ease;
}
.iqDrawer__close:hover { background: rgba(255,255,255,.5); }

.iqDrawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.iqDrawer__footer {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.iqDrawer__empty {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
}
.iqDrawer__empty a {
  color: var(--accent2);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

/* ── Individual drawer item ────────────────────────────────── */
.iqItem {
  display: grid;
  grid-template-columns: 64px 1fr 28px;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line2);
}
.iqItem:last-child { border-bottom: none; }

.iqItem__img {
  width: 64px; height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #edebe7;
  border: 1px solid var(--line2);
}
.iqItem__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.iqItem__name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 3px;
  line-height: 1.3;
}
.iqItem__meta {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--sans);
  margin: 0 0 8px;
}
.iqItem__sampleTag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(162,119,95,.1);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 4px;
}
.iqItem__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.iqItem__qtyLabel {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.iqItem__qtyInput {
  width: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 13px;
  font-family: var(--sans);
  background: rgba(255,255,255,.4);
  color: var(--ink);
  text-align: center;
}
.iqItem__qtyInput:focus {
  outline: none;
  border-color: var(--accent);
}

.iqItem__remove {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .15s ease;
}
.iqItem__remove:hover { color: #c0392b; }

/* ── Toast notification ────────────────────────────────────── */
.iqToast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 300;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.iqToast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ================================================================
   INQUIRY SUMMARY PAGE
   ================================================================ */

.iqPage {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.iqPage__header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.iqPage__title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.iqPage__subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  font-family: var(--sans);
}

/* Items table */
.iqTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.iqTable th {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}
.iqTable td {
  padding: 16px 8px 16px 0;
  border-bottom: 1px solid var(--line2);
  vertical-align: middle;
  font-size: 14px;
}
.iqTable tr:last-child td { border-bottom: none; }

.iqTable__product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.iqTable__img {
  width: 72px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #edebe7;
  border: 1px solid var(--line2);
  flex-shrink: 0;
}
.iqTable__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.iqTable__name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 2px;
}
.iqTable__code {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--sans);
  letter-spacing: .04em;
}

.iqTable__qtyInput {
  width: 56px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 13px;
  font-family: var(--sans);
  background: rgba(255,255,255,.4);
  color: var(--ink);
  text-align: center;
}
.iqTable__qtyInput:focus { outline: none; border-color: var(--accent); }

.iqTable__notesInput {
  width: 100%;
  min-width: 120px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: var(--sans);
  background: rgba(255,255,255,.4);
  color: var(--ink);
}
.iqTable__notesInput::placeholder { color: var(--muted); }
.iqTable__notesInput:focus { outline: none; border-color: var(--accent); }

.iqTable__sampleChk {
  width: 16px;
  height: 16px;
  accent-color: var(--accent2);
  cursor: pointer;
}

.iqTable__removeBtn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color .15s ease;
}
.iqTable__removeBtn:hover { color: #c0392b; }

.iqTable__empty {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
}
.iqTable__empty a {
  color: var(--accent2);
  border-bottom: 1px solid var(--accent);
}

/* Clear all link */
.iqPage__clearRow {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

/* ── Inquiry form ──────────────────────────────────────────── */
.iqForm {
  max-width: 640px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.iqForm__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 6px;
}
.iqForm__subtitle {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--sans);
  margin: 0 0 28px;
  line-height: 1.6;
}

.iqForm__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.iqForm__row.full { grid-template-columns: 1fr; }

.iqForm__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.iqForm__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.iqForm__input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--sans);
  background: rgba(255,255,255,.4);
  color: var(--ink);
  transition: border-color .15s ease;
}
.iqForm__input:focus { outline: none; border-color: var(--accent); }
.iqForm__input::placeholder { color: rgba(110,106,100,.6); }

textarea.iqForm__input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.iqForm__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.iqForm__success {
  display: none;
  padding: 24px;
  background: rgba(162,119,95,.06);
  border: 1px solid rgba(162,119,95,.2);
  border-radius: var(--radius);
  text-align: center;
  margin-top: 24px;
}
.iqForm__success h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 8px;
}
.iqForm__success p {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--sans);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .iqForm__row { grid-template-columns: 1fr; }
  .iqPage__title { font-size: 28px; }
  .iqTable__product { gap: 10px; }
  .iqTable__img { width: 56px; height: 44px; }
}

/* ================================================================
   SEARCH DROPDOWN — autocomplete results
   ================================================================ */

/* ── Container (wraps .searchPill + dropdown) ─────────────── */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* ── Dropdown panel ───────────────────────────────────────── */
.searchDropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: min(420px, 92vw);
  max-height: 400px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 0ms 150ms;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.searchDropdown::-webkit-scrollbar { width: 5px; }
.searchDropdown::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }
.searchDropdown::-webkit-scrollbar-track { background: transparent; }

.searchDropdown.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 150ms ease, transform 150ms ease, visibility 0ms 0ms;
}

/* ── Group label (Shoes / Apparel) ────────────────────────── */
.searchDropdown__group + .searchDropdown__group {
  border-top: 1px solid var(--line2);
}

.searchDropdown__groupLabel {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px 4px;
}

/* ── Individual result item ───────────────────────────────── */
.searchDropdown__item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: inherit;
  transition: background 120ms ease;
  cursor: pointer;
}

.searchDropdown__item:hover,
.searchDropdown__item.is-active {
  background: #f0ebe3;
}

.searchDropdown__item:last-child {
  border-bottom: none;
}

/* Thumbnail */
.searchDropdown__thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  background: #edebe7;
  border: 1px solid var(--line2);
  flex-shrink: 0;
}

.searchDropdown__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info column */
.searchDropdown__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.searchDropdown__name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.searchDropdown__material {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Category badge */
.searchDropdown__badge {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(162, 119, 95, 0.08);
  border: 1px solid rgba(162, 119, 95, 0.18);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Highlight matched text */
.searchHighlight {
  background: rgba(162, 119, 95, 0.15);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

/* ── "No results" state ───────────────────────────────────── */
.searchDropdown__empty {
  padding: 28px 20px;
  text-align: center;
}

.searchDropdown__empty p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.searchDropdown__emptyHint {
  margin-top: 6px !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  color: var(--muted) !important;
}

/* ── "View all results" link ──────────────────────────────── */
.searchDropdown__viewAll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--line2);
  cursor: pointer;
  transition: background 120ms ease;
}

.searchDropdown__viewAll:hover {
  background: #f0ebe3;
}

.searchDropdown__viewAllText {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .01em;
}

.searchDropdown__viewAllArrow {
  font-size: 14px;
  color: var(--accent);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 920px) {
  .searchDropdown {
    width: min(360px, 88vw);
    left: -8px;
  }
}

@media (max-width: 480px) {
  .searchDropdown {
    position: fixed;
    top: auto;
    left: 8px;
    right: 8px;
    width: auto;
    max-height: 60vh;
  }

  .searchDropdown__item {
    padding: 10px 12px;
  }

  .searchDropdown__badge {
    display: none;
  }
}

/* ================================================================
   CATALOGUE REQUEST MODAL
   ================================================================ */

/* ── Overlay ──────────────────────────────────────────────── */
.catModal__overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 0ms 250ms;
}

.catModal__overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms ease, visibility 0ms 0ms;
}

/* ── Modal container ──────────────────────────────────────── */
.catModal {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 36px 32px 32px;
  transform: translateY(12px) scale(0.98);
  transition: transform 250ms ease;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.catModal::-webkit-scrollbar { width: 5px; }
.catModal::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }

.catModal__overlay.is-active .catModal {
  transform: translateY(0) scale(1);
}

/* ── Close button ─────────────────────────────────────────── */
.catModal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 150ms ease, border-color 150ms ease;
  padding: 0;
  z-index: 2;
}

.catModal__close:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 27, 27, 0.2);
}

.catModal__close svg {
  width: 16px;
  height: 16px;
}

/* ── Header ───────────────────────────────────────────────── */
.catModal__header {
  margin-bottom: 28px;
  padding-right: 36px;
}

.catModal__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.15;
}

.catModal__subtitle {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Form fields ──────────────────────────────────────────── */
.catModal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.catModal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catModal__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.catModal__req {
  color: var(--accent);
}

.catModal__opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

.catModal__input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--serif);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.catModal__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154, 107, 86, 0.08);
}

.catModal__input::placeholder {
  color: rgba(110, 106, 100, 0.55);
  font-family: var(--serif);
}

.catModal__input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.06);
}

/* Select dropdown */
.catModal__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236e6a64'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Textarea */
.catModal__textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.6;
  font-family: var(--sans);
}

.catModal__textarea::placeholder {
  font-family: var(--sans);
}

/* ── Inline errors ────────────────────────────────────────── */
.catModal__error {
  font-family: var(--sans);
  font-size: 12px;
  color: #c0392b;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 200ms ease, opacity 200ms ease;
  line-height: 1.4;
}

.catModal__error.is-visible {
  min-height: auto;
  max-height: 40px;
  opacity: 1;
}

/* ── Radio buttons ────────────────────────────────────────── */
.catModal__radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.catModal__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 120ms ease, border-color 120ms ease;
}

.catModal__radio:hover {
  background: rgba(255, 255, 255, 0.55);
}

.catModal__radio input { display: none; }

.catModal__radioMark {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease, background 150ms ease;
}

.catModal__radio input:checked ~ .catModal__radioMark {
  border-color: var(--accent);
  background: var(--accent);
}

.catModal__radio input:checked ~ .catModal__radioMark::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.catModal__radio:has(input:checked) {
  border-color: rgba(154, 107, 86, 0.3);
  background: rgba(154, 107, 86, 0.04);
}

/* ── Consent checkbox ─────────────────────────────────────── */
.catModal__consent {
  margin-top: 2px;
}

.catModal__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.5;
}

.catModal__check input { display: none; }

.catModal__checkBox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  transition: border-color 150ms ease, background 150ms ease;
}

.catModal__check input:checked + .catModal__checkBox {
  border-color: var(--accent);
  background: var(--accent);
}

.catModal__check input:checked + .catModal__checkBox::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.catModal__checkText {
  flex: 1;
}

/* ── Action buttons ───────────────────────────────────────── */
.catModal__actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.catModal__submit {
  flex: 1;
  text-align: center;
  transition: opacity 150ms ease, background 200ms ease, transform 150ms ease;
}

.catModal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.catModal__cancel {
  white-space: nowrap;
}

/* ── Success state ────────────────────────────────────────── */
.catModal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px 16px;
  gap: 16px;
}

.catModal__successIcon svg {
  display: block;
}

/* Draw-in animation for the check */
.catModal__successCircle {
  animation: catCircleDraw 600ms ease forwards;
}

.catModal__successCheck {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: catCheckDraw 400ms 300ms ease forwards;
}

@keyframes catCircleDraw {
  from { stroke-dashoffset: 138.23; }
  to   { stroke-dashoffset: 0; }
}

@keyframes catCheckDraw {
  from { stroke-dashoffset: 36; }
  to   { stroke-dashoffset: 0; }
}

.catModal__successTitle {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.catModal__successText {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 320px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 580px) {
  .catModal {
    padding: 28px 20px 24px;
    border-radius: 10px;
    max-height: calc(100vh - 32px);
  }

  .catModal__overlay {
    padding: 16px;
  }

  .catModal__title {
    font-size: 22px;
  }

  .catModal__radios {
    grid-template-columns: 1fr;
  }

  .catModal__actions {
    flex-direction: column;
  }

  .catModal__cancel {
    text-align: center;
  }
}

/* ================================================================
   PRICING / MOQ MODAL — additional styles
   (reuses .catModal__* base; only new selectors below)
   ================================================================ */

/* ── Checkbox group (Product Interest) ────────────────────── */
.catModal__checkboxes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.catModal__checkOption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 120ms ease, border-color 120ms ease;
}

.catModal__checkOption:hover {
  background: rgba(255, 255, 255, 0.55);
}

.catModal__checkOption input { display: none; }

.catModal__checkOption:has(input:checked) {
  border-color: rgba(154, 107, 86, 0.3);
  background: rgba(154, 107, 86, 0.04);
}

.catModal__checkOption input:checked + .catModal__checkBox {
  border-color: var(--accent);
  background: var(--accent);
}

/* ── 5-option radio grid (wider layout) ───────────────────── */
.prcRadios--wide {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 580px) {
  .prcRadios--wide {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   BOOK A CALL PAGE  (.bk*)
   ═══════════════════════════════════════════════════════════ */

/* ── Page header ──────────────────────────────────────────── */
.bkHeader {
  text-align: center;
  padding: 56px 24px 0;
  max-width: var(--max);
  margin: 0 auto;
}

.bkHeader__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.bkHeader__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 14px;
}

.bkHeader__subtitle {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Two-column layout ────────────────────────────────────── */
.bkLayout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  max-width: var(--max);
  margin: 48px auto 64px;
  padding: 0 24px;
  align-items: start;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.bkSidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.bkCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.bkCard__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 18px;
}

.bkCard__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bkCard__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.bkCard__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(154, 107, 86, 0.07);
  border-radius: 8px;
  color: var(--accent);
}

.bkCard--contact {
  background: rgba(154, 107, 86, 0.035);
}

.bkContact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bkContact__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bkContact__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.bkContact__value {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}

a.bkContact__value:hover {
  color: var(--accent);
}

/* ── Booking form section ─────────────────────────────────── */
.bkForm {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.bkForm__sectionTitle {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}

.bkForm__details {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.bkForm__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.bkForm__actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

.bkForm__submit {
  min-width: 180px;
  font-size: 14px;
  padding: 13px 28px;
}

.bkForm__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bkForm__globalErr {
  display: block;
  margin-top: 12px;
}

/* ── Calendar ─────────────────────────────────────────────── */
.bkCal {
  margin-bottom: 28px;
}

.bkCal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bkCal__navBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  transition: background 120ms ease, border-color 120ms ease;
}

.bkCal__navBtn:hover {
  background: rgba(154, 107, 86, 0.06);
  border-color: rgba(154, 107, 86, 0.2);
}

.bkCal__month {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.bkCal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.bkCal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bkCal__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  font-family: var(--sans);
  font-size: 13px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
  transition: background 120ms ease, color 120ms ease;
  padding: 0;
}

.bkCal__day:hover:not(.bkCal__day--disabled):not(.bkCal__day--empty):not(.bkCal__day--selected) {
  background: rgba(154, 107, 86, 0.08);
}

.bkCal__day--empty {
  cursor: default;
}

.bkCal__day--disabled {
  color: var(--line);
  cursor: not-allowed;
  opacity: 0.45;
}

.bkCal__day--today {
  font-weight: 700;
  position: relative;
}

.bkCal__day--today::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.bkCal__day--selected {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.bkCal__day--selected.bkCal__day--today::after {
  background: #fff;
}

/* ── Time slots ───────────────────────────────────────────── */
.bkTime {
  margin-bottom: 24px;
}

.bkTime__label {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500;
}

.bkTime__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}

.bkTime__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  font-family: var(--sans);
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.bkTime__slot:hover:not(.bkTime__slot--unavail):not(.bkTime__slot--selected) {
  background: rgba(154, 107, 86, 0.06);
  border-color: rgba(154, 107, 86, 0.2);
}

.bkTime__slot--selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.bkTime__slot--selected .bkTime__avail {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.bkTime__slot--unavail {
  color: var(--line);
  cursor: not-allowed;
  opacity: 0.45;
  text-decoration: line-through;
  border-style: dashed;
}

.bkTime__avail {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d8a56;
  box-shadow: 0 0 0 2px rgba(45, 138, 86, 0.15);
  flex-shrink: 0;
}

/* ── Timezone selector ────────────────────────────────────── */
.bkTz {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.bkTz__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

.bkTz__select {
  flex: 1;
  max-width: 280px;
}

/* ── Success state ────────────────────────────────────────── */
.bkSuccess {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  animation: bkFadeIn 400ms ease both;
}

@keyframes bkFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bkSuccess__icon {
  margin-bottom: 20px;
}

.bkSuccess__circle {
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  animation: bkCircleDraw 700ms ease 100ms forwards;
}

@keyframes bkCircleDraw {
  to { stroke-dashoffset: 0; }
}

.bkSuccess__check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: bkCheckDraw 400ms ease 600ms forwards;
}

@keyframes bkCheckDraw {
  to { stroke-dashoffset: 0; }
}

.bkSuccess__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
}

.bkSuccess__text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 380px;
}

.bkSuccess__detail {
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}

.bkSuccess__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 13px;
}

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

.bkSuccess__label {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.bkSuccess__val {
  color: var(--ink);
  font-weight: 500;
}

.bkSuccess__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Responsive: Book a Call page ─────────────────────────── */
@media (max-width: 860px) {
  .bkLayout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bkSidebar {
    position: static;
    order: 2;
  }

  .bkForm {
    order: 1;
  }
}

@media (max-width: 640px) {
  .bkHeader {
    padding-top: 40px;
  }

  .bkHeader__title {
    font-size: 26px;
  }

  .bkLayout {
    margin-top: 32px;
    margin-bottom: 48px;
    padding: 0 16px;
  }

  .bkForm {
    padding: 24px 18px;
  }

  .bkForm__row {
    grid-template-columns: 1fr;
  }

  .bkTime__grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }

  .bkCal__day {
    font-size: 12px;
  }

  .bkSuccess__actions {
    flex-direction: column;
    width: 100%;
  }

  .bkSuccess__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ================================================================
   ACCESSIBILITY + RESPONSIVE POLISH
   Keeps the existing visual language while improving mobile use.
   ================================================================ */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.fCheck input,
.pdSampleOpt__label input,
.catModal__radio input,
.catModal__checkOption input,
.catModal__check input {
  display: block !important;
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.fCheck input:focus-visible + .fCheck__box,
.fCheck input:focus-visible + .fCheck__radio,
.pdSampleOpt__label input:focus-visible + .pdSampleOpt__check,
.catModal__radio input:focus-visible + .catModal__radioMark,
.catModal__checkOption input:focus-visible + .catModal__checkBox,
.catModal__check input:focus-visible + .catModal__checkBox {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button,
.btn,
.drawer__link,
.navRight a,
.seasonLink,
.utilityChange,
.lp-footer a {
  touch-action: manipulation;
}

button,
.btn,
.menuBtn,
.drawer__close,
.fToggleBtn,
.fSidebar__close,
.iqDrawer__close,
.iqItem__remove,
.iqTable__removeBtn,
.lp-footer__submit,
.bkCal__navBtn,
.bkCal__day,
.bkTime__slot {
  min-height: 44px;
}

input,
select,
textarea {
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .heroMedia img,
  .card:hover .card__media img,
  .matrixCard:hover .matrixCard__image img,
  .factoryFeature:hover img,
  .factoryThumb:hover img,
  .srItem:hover img,
  .factoryProcessCard:hover .factoryProcessCard__media img,
  .pdGallery__main:hover img {
    transform: none !important;
  }
}

@media (hover: none) {
  .card:hover,
  .matrixCard:hover,
  .advantageCard:hover,
  .btn:hover,
  .processStep:hover {
    transform: none;
  }

  .factoryFeature:hover img,
  .factoryThumb:hover img,
  .srItem:hover img,
  .factoryProcessCard:hover .factoryProcessCard__media img,
  .pdGallery__main:hover img {
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --logoRowH: 56px;
    --navRowH: 58px;
  }

  .utilityInner,
  .logoRow,
  .navInner,
  .mainContent,
  .processSection {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brandTop img {
    height: 30px;
  }

  .lp-footer__panel {
    padding: 48px 0 54px;
  }

  .lp-footer h3 {
    font-size: 28px;
  }
}

@media (max-width: 760px) {
  .utilityInner {
    justify-content: center;
    letter-spacing: .08em;
  }

  .utilityRight {
    min-width: 0;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .navInner {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .navLeft {
    min-width: 0;
    gap: 0;
  }

  .navCenter {
    justify-content: flex-end;
    min-width: 0;
  }

  .seasonLink {
    max-width: min(48vw, 240px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }

  .searchPill {
    display: none;
  }

  .menuBtn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .menuBtn > span:last-child {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  .hamburger {
    width: 18px;
    height: 14px;
  }

  .hamburger span:nth-child(2) { top: 6px; }
  .hamburger span:nth-child(3) { top: 12px; }

  .menuBtn:active {
    background: rgba(255,255,255,.72);
  }

  .drawer {
    width: min(360px, 92vw);
  }

  .drawer__link {
    min-height: 52px;
    gap: 14px;
  }

  .textHeader__title {
    font-size: clamp(30px, 10vw, 38px);
    letter-spacing: 0;
  }

  .textHeader__subtitle {
    font-size: 15px;
  }

  .ctaRow .btn,
  .filterBar .btn,
  .fToggleBtn,
  .select,
  .fSort {
    width: 100%;
    justify-content: center;
  }

  .filterBar,
  .filterGroup,
  .fToolbar {
    align-items: stretch;
  }

  .listingGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card__media {
    aspect-ratio: 4 / 3;
  }

  .card__name { font-size: 14px; }
  .card__sub { font-size: 12px; }

  .card__body {
    min-height: 94px;
  }

  .lp-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lp-footer__col a {
    min-height: 32px;
  }

  .lp-footer__form {
    grid-template-columns: 1fr 44px;
  }

  .lp-footer__bottom-inner,
  .lp-footer__meta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lp-footer__social {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .mainContent,
  .iqPage {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn,
  .catModal__submit,
  .catModal__cancel,
  .bkForm__submit {
    width: 100%;
    text-align: center;
  }

  .catModal__actions,
  .iqForm__actions,
  .bkForm__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catModal__overlay {
    align-items: flex-end;
    padding: 12px;
  }

  .catModal {
    max-height: calc(100dvh - 24px);
    padding: 28px 20px 24px;
    border-radius: 12px;
  }

  .catModal__title {
    font-size: 24px;
  }

  .iqDrawer {
    width: min(380px, 94vw);
  }

  .iqDrawer__header,
  .iqDrawer__body,
  .iqDrawer__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  #iqTableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .iqTable {
    min-width: 680px;
  }

  .iqForm {
    max-width: none;
  }

  .iqForm__actions .btn {
    margin: 0;
  }

  .fSidebar {
    width: min(340px, 90vw);
  }

  .fCheck {
    min-height: 34px;
  }

  .fColorSwatch {
    width: 34px;
    height: 34px;
  }

  .searchDropdown {
    z-index: 500;
  }
}

@media (max-width: 420px) {
  .utilityInner {
    font-size: 11px;
  }

  .seasonLink {
    max-width: 44vw;
  }

  .drawer__header {
    height: 96px;
  }

  .lp-footer__form {
    grid-template-columns: 1fr;
  }

  .lp-footer__submit {
    justify-self: start;
    width: 44px;
  }

  .iqToast {
    width: calc(100vw - 32px);
    justify-content: center;
    white-space: normal;
    text-align: center;
    border-radius: 12px;
  }
}

/* ============================================================
   BONELO — store-in-store apparel branding (under LIDO Shoes)
   ============================================================ */

/* Dark badge that holds the white line-art BONELO mark */
.bnMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: 50%;
  flex: none;
}
.bnMark img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* Apparel co-brand hero band (apparel.html) */
.brandBand {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  padding: 28px;
  margin: 8px 0 32px;
}
.brandBand__inner {
  display: flex;
  align-items: center;
  gap: 26px;
}
.brandBand .bnMark { width: 108px; height: 108px; padding: 14px; }
.brandBand__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin: 0 0 6px;
}
.brandBand__name {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: .1em;
  margin: 0 0 8px;
  color: var(--ink);
}
.brandBand__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}
.brandBand__desc strong { color: var(--ink); font-weight: 600; }

/* Small BONELO tag shown on apparel product cards */
.card__brandTag,
.productCard__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent2);
  margin: 0 0 6px;
}
.card__brandTag::before,
.productCard__brand::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink) url("./images/logo/bonelo.png") center/10px no-repeat;
  flex: none;
}

/* Co-brand lockup on product-detail page (apparel only) */
.pdBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbf8f3;
  margin: 0 0 20px;
}
.pdBrand .bnMark { width: 42px; height: 42px; padding: 6px; }
.pdBrand__text { font-family: var(--sans); line-height: 1.35; }
.pdBrand__name {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--ink);
}
.pdBrand__by { font-size: 11px; color: var(--muted); letter-spacing: .02em; }

/* Brands & registered trademarks grid (about.html) */
.brandsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.brandCard {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brandCard__badge {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent2);
}
.brandCard__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--ink);
  margin: 0;
}
.brandCard__scope {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .02em;
}
.brandCard__desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 4px 0 0;
}
.brandCard--bonelo {
  background: linear-gradient(180deg, #fbf8f3 0%, #fff 100%);
}
.brandCard__markRow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brandCard__markRow .bnMark { width: 52px; height: 52px; padding: 7px; }

@media (max-width: 860px) {
  .brandsGrid { grid-template-columns: 1fr; }
  .brandBand__inner { flex-direction: column; text-align: center; align-items: center; }
  .brandBand__desc { text-align: center; }
}

/* Header co-brand lockup (LIDO × BONELO) on apparel pages */
.coBrand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.coBrand__x {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
}
.coBrand .bnMark { width: 30px; height: 30px; padding: 4px; }
.coBrand__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent2);
}
@media (max-width: 560px) {
  .coBrand__label { display: none; }
}

/* ── Factory process (about page) ── */
.factoryProcess__head {
  max-width: 720px;
  margin-bottom: 34px;
}
.factoryProcess__eyebrow {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent2);
}
.factoryProcess__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3.2vw, 38px);
  font-weight: 500;
  line-height: 1.14;
}
.factoryProcess__subtitle {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
}
.galleryStrip {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 16px;
}
.factoryProcessCard {
  min-width: 0;
}
.factoryProcessCard__media {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
  background: #ded7cd;
}
.factoryProcessCard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2,.65,.3,1);
}
.factoryProcessCard:hover .factoryProcessCard__media img { transform: scale(1.025); }
.factoryProcessCard__copy {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 8px;
  padding: 14px 2px 0;
}
.factoryProcessCard__num {
  grid-row: 1 / span 2;
  padding-top: 2px;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--accent2);
}
.factoryProcessCard__stage {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}
.factoryProcessCard__desc {
  margin: 7px 0 0;
  font-family: var(--sans);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--muted);
}
@media (max-width: 900px) {
  .galleryStrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .factoryProcess__head { margin-bottom: 28px; }
  .galleryStrip {
    width: calc(100% + 48px);
    margin-inline: -24px;
    padding: 0 24px 14px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82vw, 1fr);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .galleryStrip::-webkit-scrollbar { display: none; }
  .factoryProcessCard { scroll-snap-align: start; }
  .factoryProcessCard__stage { font-size: 18px; }
  .factoryProcessCard__desc { font-size: 12px; }
}

/* Phone: menu button becomes icon-only for a cleaner header */
@media (max-width: 640px) {
  .menuBtn > span:last-child { display: none; }
  .menuBtn { gap: 0; padding: 12px; }
}

/* ── About: full-width media figure (export map, showroom sign, brand art) ── */
.aboutMedia {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
}
.aboutMedia img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.aboutMedia__cap {
  text-align: center;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .02em;
  margin-top: 12px;
}
/* Showroom editorial gallery (about page) */
.srEditorial {
  width: 100%;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.srItem {
  min-width: 0;
  margin: 0;
}
.srItem--hero { grid-column: span 8; }
.srItem--portrait { grid-column: span 4; }
.srItem__media {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ded7cd;
}
.srItem--hero .srItem__media,
.srItem--portrait .srItem__media { height: 480px; }
.srItem img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .7s cubic-bezier(.2,.65,.3,1);
}
.srItem--hero img { object-position: center 52%; }
.srItem--portrait img { object-position: center 48%; }
.srItem:hover img { transform: scale(1.025); }
.srItem figcaption {
  padding: 11px 2px 0;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .02em;
  line-height: 1.5;
  color: var(--muted);
}
.srSupportGrid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.srSupportGrid .srItem__media {
  aspect-ratio: 4 / 3;
}
.srSupportGrid .srItem:nth-child(1) img,
.srSupportGrid .srItem:nth-child(2) img {
  object-position: center 68%;
}
@media (max-width: 900px) {
  .srItem--hero { grid-column: span 7; }
  .srItem--portrait { grid-column: span 5; }
  .srItem--hero .srItem__media,
  .srItem--portrait .srItem__media { height: 400px; }
  .srSupportGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .srEditorial {
    display: block;
    margin-top: 28px;
  }
  .srItem--hero .srItem__media {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .srItem--portrait {
    margin-top: 26px;
  }
  .srItem--portrait .srItem__media {
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .srSupportGrid {
    width: calc(100% + 48px);
    margin: 28px -24px 0;
    padding: 0 24px 14px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78vw, 1fr);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .srSupportGrid::-webkit-scrollbar { display: none; }
  .srSupportGrid .srItem { scroll-snap-align: start; }
}

/* Nested subcategory rows in the listing filter tree */
.fCheck--child { padding-left: 24px; }
