/* ===========================================================================
   High Falls Media — components.css
   Buttons, filters, product cards, condition badges, sale treatment,
   quick-view, cart drawer, and the product detail layout.
   =========================================================================== */

/* ── Buttons ────────────────────────────────────────────────────────────── */
.hf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 0.7rem 1.3rem; font-size: 0.9rem; line-height: 1;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.08s ease;
}
.hf-btn svg { width: 18px; height: 18px; }
.hf-btn:active { transform: translateY(1px); }
.hf-btn--cart { background: var(--teal-dk); color: #fff; }       /* Falls Teal CTA */
.hf-btn--cart:hover { background: #0c5a45; }
.hf-btn--cart[disabled] { background: var(--cream-dk); color: var(--muted); cursor: not-allowed; border-color: rgba(13,31,51,0.12); }
.hf-btn--ghost { background: transparent; color: var(--genesee-dk); border-color: rgba(24,95,165,0.45); }
.hf-btn--ghost:hover { background: rgba(24,95,165,0.08); border-color: var(--genesee-dk); }
.hf-btn--block { width: 100%; }
.hf-btn--lg { padding: 0.95rem 1.6rem; font-size: 1rem; }

/* ── Shop: filter bar ───────────────────────────────────────────────────── */
.hf-filters { padding-bottom: clamp(1rem, 2.5vw, 1.6rem); border-bottom: 1px solid rgba(13,31,51,0.1); }
.hf-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.hf-tab {
  background: var(--white); border: 1px solid rgba(13,31,51,0.16); border-radius: 999px;
  color: var(--deep); font-family: var(--display); font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.82rem;
  padding: 0.5rem 1rem; display: inline-flex; align-items: center; gap: 0.45rem;
}
.hf-tab .hf-tab__glyph { width: 16px; height: 16px; color: var(--genesee-dk); }
.hf-tab:hover { border-color: var(--teal-dk); }
.hf-tab[aria-selected="true"] { background: var(--genesee-dk); border-color: var(--genesee-dk); color: #fff; }
.hf-tab[aria-selected="true"] .hf-tab__glyph { color: #fff; }
/* Coming-soon formats: greyed and non-selectable, same as the home page */
.hf-tab.is-soon {
  background: transparent; border: 1px dashed rgba(13,31,51,0.22);
  color: var(--muted); cursor: not-allowed;
}
.hf-tab.is-soon .hf-tab__glyph { color: var(--muted); }
.hf-tab.is-soon:hover { border-color: rgba(13,31,51,0.22); }
.hf-tab__soon { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; opacity: 0.7; }

.hf-controls {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; margin-top: 1rem;
}
.hf-count { font-family: var(--body); color: var(--muted); font-size: 0.9rem; font-feature-settings: "tnum" 1; }
.hf-controls__spacer { flex: 1 1 auto; }
.hf-field { display: inline-flex; align-items: center; gap: 0.4rem; }
.hf-field label {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.72rem; color: var(--muted);
}
.hf-select {
  background: var(--white); border: 1px solid rgba(13,31,51,0.18); border-radius: var(--radius);
  color: var(--deep); font-family: var(--body); font-size: 0.9rem;
  padding: 0.5rem 2rem 0.5rem 0.7rem; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 15px) 53%, calc(100% - 10px) 53%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.hf-search {
  display: flex; align-items: center; gap: 0.5rem; background: var(--white);
  border: 1px solid rgba(13,31,51,0.18); border-radius: var(--radius); padding: 0.4rem 0.7rem; min-width: 180px;
}
.hf-search svg { width: 17px; height: 17px; color: var(--muted); flex: none; }
.hf-search input { flex: 1; border: 0; background: transparent; color: var(--deep); font-family: var(--body); font-size: 0.92rem; min-width: 0; }
.hf-search input:focus { outline: none; }
.hf-search input::placeholder { color: var(--muted); }

/* ── Product grid + card ────────────────────────────────────────────────── */
.hf-grid {
  display: grid; gap: clamp(0.8rem, 1.4vw, 1.5rem);
  grid-template-columns: repeat(7, 1fr);   /* 7 covers across on desktop; steps down in responsive.css */
  padding-block: clamp(1.4rem, 3vw, 2.2rem);
}
.hf-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid rgba(13,31,51,0.1); border-radius: var(--card-radius); overflow: hidden;
  box-shadow: 0 1px 2px rgba(13,31,51,0.06), 0 10px 22px -16px rgba(13,31,51,0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hf-card:hover, .hf-card:focus-within { transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(13,31,51,0.5); }
.hf-card__media { position: relative; aspect-ratio: 2/3; background: var(--cream-dk); }
.hf-card__cover { width: 100%; height: 100%; object-fit: cover; }
.hf-fmt-tag {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: rgba(7,16,29,0.92); color: #fff; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: 0 2px 9px rgba(7,16,29,0.55);
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.7rem; padding: 0.26rem 0.55rem;
  display: inline-flex; align-items: center; gap: 0.32rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.hf-fmt-tag svg { width: 13px; height: 13px; }
/* Format colour-coding (the case-band signature); each is dark enough for white text */
.hf-fmt-tag--dvd      { background: #185fa5; }
.hf-fmt-tag--blu-ray  { background: #0d2747; }
.hf-fmt-tag--4k-uhd   { background: #0a0a0a; }
.hf-fmt-tag--vhs      { background: #0c5e49; }
.hf-fmt-tag--cd       { background: #0a5240; }
.hf-fmt-tag--vinyl    { background: #854f0b; }
.hf-fmt-tag--cassette { background: #14507e; }
.hf-fmt-tag--game     { background: #6b3f12; }
.hf-card__quick {
  position: absolute; bottom: 0.6rem; right: 0.6rem; background: rgba(255,255,255,0.95);
  border: 1px solid rgba(13,31,51,0.15); border-radius: var(--radius); color: var(--deep);
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.62rem; padding: 0.28rem 0.5rem; display: inline-flex; align-items: center; gap: 0.3rem;
  opacity: 0; transition: opacity 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.hf-card:hover .hf-card__quick, .hf-card:focus-within .hf-card__quick { opacity: 1; }
.hf-card__quick:hover { border-color: var(--teal-dk); color: var(--teal-dk); }
.hf-card__quick svg { width: 12px; height: 12px; }
.hf-sale-badge {
  position: absolute; top: 0.6rem; right: 0.6rem; background: var(--amber); color: var(--deep);
  font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.64rem; padding: 0.24rem 0.5rem; border-radius: var(--radius);
}
.hf-card__body { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.85rem 0.9rem 1rem; flex: 1; }
.hf-card__title { font-size: 1.05rem; line-height: 1.12; }
.hf-card__title a { color: var(--deep); text-decoration: none; }
.hf-card__title a:hover { color: var(--genesee-dk); }
.hf-card__meta { font-family: var(--body); color: var(--muted); font-size: 0.82rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hf-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.3rem 0.5rem; padding-top: 0.4rem; }

/* ── Condition badges (Brand Kit color system) ──────────────────────────── */
.hf-badge {
  display: inline-flex; align-items: center; font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.68rem;
  padding: 0.22rem 0.55rem; border-radius: var(--radius); color: #fff; white-space: nowrap;
}
.hf-badge--sealed { background: #0b5e49; }
.hf-badge--ln { background: var(--cond-ln); }
.hf-badge--vg { background: var(--cond-vg); }
.hf-badge--g  { background: var(--cond-g); }
.hf-badge--ac { background: var(--cond-ac); color: var(--ink); }
.hf-badge--out { background: transparent; color: var(--sale); border: 1px solid var(--sale); }

/* ── Price ──────────────────────────────────────────────────────────────── */
.hf-price { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--deep); font-feature-settings: "tnum" 1; line-height: 1; }
.hf-price small { font-family: var(--body); font-weight: 600; font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-right: 0.25rem; }
.hf-price--sale { color: var(--sale); }
.hf-price__was { font-family: var(--body); font-weight: 500; font-size: 0.85rem; color: var(--muted); text-decoration: line-through; margin-left: 0.4rem; }
.hf-add { padding: 0.55rem 0.8rem; font-size: 0.76rem; }
.hf-add svg { width: 14px; height: 14px; }

/* Dense 7-up grid cards: trim the foot so badge + price fit without clipping */
.hf-card__foot .hf-badge { font-size: 0.62rem; letter-spacing: 0.03em; padding: 0.2rem 0.45rem; }
.hf-card__foot .hf-price { font-size: 1.05rem; }
.hf-card__foot .hf-price small { font-size: 0.58rem; margin-right: 0.18rem; }
.hf-card__foot .hf-price__was { font-size: 0.74rem; margin-left: 0.3rem; }

.hf-empty {
  grid-column: 1 / -1; text-align: center; color: var(--muted);
  border: 1px dashed rgba(13,31,51,0.2); border-radius: var(--card-radius); padding: 3rem 1rem;
}

/* ── Quick-view dialog ──────────────────────────────────────────────────── */
.hf-qv {
  border: 1px solid rgba(13,31,51,0.14); background: var(--white); color: var(--ink);
  border-radius: var(--card-radius); padding: 0; max-width: 600px; width: calc(100% - 2rem);
  box-shadow: 0 40px 90px -30px rgba(7,16,29,0.6);
}
.hf-qv::backdrop { background: rgba(7,16,29,0.55); backdrop-filter: blur(3px); }
.hf-qv__inner { display: grid; grid-template-columns: 165px 1fr; gap: 1.3rem; padding: 1.3rem; }
.hf-qv__art { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(13,31,51,0.1); }
.hf-qv__art img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.hf-qv__title { font-size: 1.4rem; color: var(--deep); margin-bottom: 0.2rem; }
.hf-qv__meta { font-family: var(--body); color: var(--muted); font-size: 0.86rem; margin-bottom: 0.7rem; }
.hf-qv__over { font-family: var(--body); font-size: 0.92rem; color: var(--ink); margin-bottom: 1rem; }
.hf-qv__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.hf-qv__full { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.76rem; }
.hf-qv__close {
  position: absolute; top: 0.6rem; right: 0.6rem; width: 34px; height: 34px;
  display: grid; place-items: center; background: var(--white);
  border: 1px solid rgba(13,31,51,0.16); border-radius: var(--radius); color: var(--deep);
}
.hf-qv__close:hover { border-color: var(--sale); color: var(--sale); }

/* ── Cart drawer ────────────────────────────────────────────────────────── */
.hf-drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; }
.hf-drawer[data-open="true"] { visibility: visible; }
.hf-drawer__scrim { position: absolute; inset: 0; background: rgba(7,16,29,0.5); opacity: 0; transition: opacity 0.25s ease; }
.hf-drawer[data-open="true"] .hf-drawer__scrim { opacity: 1; }
.hf-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--cream-lt); border-left: 1px solid rgba(13,31,51,0.12);
  display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1); box-shadow: -24px 0 60px -24px rgba(7,16,29,0.45);
}
.hf-drawer[data-open="true"] .hf-drawer__panel { transform: translateX(0); }
.hf-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.2rem; border-bottom: 1px solid rgba(13,31,51,0.12); }
.hf-drawer__head h2 { font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--deep); }
.hf-drawer__close { width: 36px; height: 36px; display: grid; place-items: center; background: transparent; border: 1px solid rgba(13,31,51,0.16); border-radius: var(--radius); color: var(--deep); }
.hf-drawer__close:hover { border-color: var(--sale); color: var(--sale); }
.hf-drawer__items { flex: 1; overflow-y: auto; list-style: none; margin: 0; padding: 0.6rem 1.2rem; }
.hf-line { display: grid; grid-template-columns: 50px 1fr auto; gap: 0.8rem; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid rgba(13,31,51,0.08); }
.hf-line__art { border-radius: 4px; overflow: hidden; border: 1px solid rgba(13,31,51,0.1); }
.hf-line__art img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.hf-line__title { font-family: var(--display); font-weight: 600; font-size: 0.95rem; line-height: 1.1; color: var(--deep); }
.hf-line__meta { font-family: var(--body); color: var(--muted); font-size: 0.76rem; }
.hf-line__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; }
.hf-line__price { font-family: var(--display); font-weight: 700; color: var(--deep); font-feature-settings: "tnum" 1; }
.hf-qty { display: inline-flex; align-items: center; border: 1px solid rgba(13,31,51,0.16); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.hf-qty button { width: 26px; height: 26px; background: transparent; border: 0; color: var(--deep); display: grid; place-items: center; font-size: 1rem; }
.hf-qty button:hover:not([disabled]) { color: var(--teal-dk); }
.hf-qty button[disabled] { color: #c2bdb2; cursor: not-allowed; }
.hf-qty span { min-width: 1.8rem; text-align: center; font-family: var(--body); font-weight: 600; font-size: 0.9rem; font-feature-settings: "tnum" 1; }
.hf-line__remove { background: transparent; border: 0; color: var(--muted); font-family: var(--body); font-size: 0.74rem; text-decoration: underline; padding: 0; }
.hf-line__remove:hover { color: var(--sale); }
.hf-drawer__empty { padding: 3rem 1.2rem; text-align: center; color: var(--muted); font-family: var(--body); }
.hf-drawer__foot { border-top: 1px solid rgba(13,31,51,0.12); padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.hf-drawer__sum { display: flex; align-items: baseline; justify-content: space-between; }
.hf-drawer__sum dt { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; color: var(--muted); }
.hf-drawer__sum dd { margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--deep); font-feature-settings: "tnum" 1; }
.hf-drawer__note { font-family: var(--body); font-size: 0.74rem; color: var(--muted); text-align: center; }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.hf-crumbs { font-family: var(--body); font-size: 0.85rem; color: var(--muted); padding-block: 1rem; display: flex; gap: 0.45rem; flex-wrap: wrap; }
.hf-crumbs a { color: var(--muted); text-decoration: none; }
.hf-crumbs a:hover { color: var(--genesee-dk); }
.hf-crumbs [aria-current] { color: var(--deep); }

/* ── Product detail ─────────────────────────────────────────────────────── */
.hf-product { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.hf-product__art { position: relative; border-radius: var(--card-radius); overflow: hidden; border: 1px solid rgba(13,31,51,0.1); box-shadow: 0 24px 50px -28px rgba(7,16,29,0.5); background: var(--cream-dk); max-width: 320px; }
.hf-product__art img { width: 100%; height: auto; display: block; }
.hf-buy { display: flex; flex-direction: column; gap: 1.05rem; }
.hf-buy__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.04; color: var(--deep); }
.hf-buy__line { font-family: var(--body); color: var(--muted); font-size: 1rem; display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.hf-buy__line .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); display: inline-block; }
.hf-buy__over { color: var(--ink); max-width: 58ch; }
.hf-buy__pull { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.2rem; color: var(--teal-dk); }

.hf-fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.hf-legend { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--amber-dk); padding: 0; }
.hf-conds { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.hf-cond { display: flex; flex-direction: column; gap: 0.25rem; min-width: 120px; background: var(--white); border: 1px solid rgba(13,31,51,0.16); border-radius: var(--radius); padding: 0.6rem 0.7rem; text-align: left; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.hf-cond:hover:not([disabled]) { border-color: var(--teal-dk); }
.hf-cond[aria-pressed="true"] { border-color: var(--teal-dk); box-shadow: inset 0 0 0 1px var(--teal-dk); background: #f1faf6; }
.hf-cond[disabled] { opacity: 0.5; cursor: not-allowed; }
.hf-cond__price { font-family: var(--display); font-weight: 700; color: var(--deep); font-feature-settings: "tnum" 1; }
.hf-cond__out { font-family: var(--body); font-size: 0.72rem; color: var(--sale); font-weight: 600; }
.hf-cond-blurb { font-family: var(--body); color: var(--muted); font-size: 0.9rem; border-left: 2px solid var(--teal); padding-left: 0.75rem; min-height: 2.4em; }

.hf-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(13,31,51,0.1); padding-top: 1.05rem; }
.hf-cta__price { font-family: var(--display); font-weight: 700; font-size: 2.1rem; color: var(--deep); font-feature-settings: "tnum" 1; line-height: 1; }
.hf-cta__price.is-sale { color: var(--sale); }
.hf-cta__was { font-family: var(--body); font-weight: 500; font-size: 1rem; color: var(--muted); text-decoration: line-through; margin-left: 0.4rem; }
.hf-stock { font-family: var(--body); font-size: 0.84rem; font-weight: 600; color: var(--teal-dk); }
.hf-stock--low { color: var(--amber-dk); }
.hf-stock--out { color: var(--sale); }
.hf-sku { font-family: var(--body); font-size: 0.78rem; color: var(--muted); letter-spacing: 0.03em; font-feature-settings: "tnum" 1; }

.hf-specs { border-top: 1px solid rgba(13,31,51,0.1); margin-top: 0.4rem; }
.hf-specs dl { display: grid; grid-template-columns: auto 1fr; margin: 0; }
.hf-specs div { display: contents; }
.hf-specs dt, .hf-specs dd { padding: 0.5rem 0.2rem; border-bottom: 1px solid rgba(13,31,51,0.07); margin: 0; }
.hf-specs dt { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.74rem; color: var(--muted); padding-right: 1.4rem; }
.hf-specs dd { font-family: var(--body); font-size: 0.92rem; color: var(--ink); }

/* ── Related rail ───────────────────────────────────────────────────────── */
.hf-rail { padding-block: clamp(1.4rem, 3vw, 2.2rem); border-top: 1px solid rgba(13,31,51,0.1); }
.hf-rail__head { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.1rem; }
.hf-rail__title { font-family: var(--display); font-weight: 600; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--deep); }
.hf-rail__grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

/* ── Informational pages: contact card + work-in-progress panel ─────────── */
.hf-info { padding-bottom: clamp(2.5rem, 6vw, 4rem); }

.hf-contact {
  display: grid; gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: clamp(1.4rem, 3vw, 2rem);
}
.hf-contact__card {
  background: var(--white); border: 1px solid rgba(13,31,51,0.1);
  border-radius: var(--card-radius); padding: clamp(1.2rem, 2.6vw, 1.8rem);
  box-shadow: 0 1px 2px rgba(13,31,51,0.06), 0 10px 22px -16px rgba(13,31,51,0.4);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hf-contact__icon { width: 26px; height: 26px; color: var(--teal-dk); }
.hf-contact__label {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.74rem; color: var(--genesee-dk);
}
.hf-contact__value { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.12; color: var(--deep); }
.hf-contact__value a { color: var(--deep); text-decoration: none; }
.hf-contact__value a:hover { color: var(--genesee-dk); text-decoration: underline; text-underline-offset: 3px; }
.hf-contact__note { font-family: var(--body); color: var(--muted); font-size: 0.92rem; }

.hf-cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: clamp(1.4rem, 3vw, 2rem); }

.hf-wip {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--cream-lt); border: 1px solid rgba(13,31,51,0.1);
  border-left: 4px solid var(--amber); border-radius: var(--card-radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.hf-wip__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.72rem; color: var(--amber-dk);
}
.hf-wip__badge svg { width: 15px; height: 15px; }
.hf-wip__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--deep); margin: 0.5rem 0 0.6rem; line-height: 1.1; }
.hf-wip p { color: var(--ink); max-width: 62ch; }
.hf-wip__list { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--ink); }
.hf-wip__list li { margin: 0.35rem 0; }

/* ============================================================
   FAQ (faq.html) — accessible native disclosure accordion
   ============================================================ */
.hf-faq { padding-block: clamp(1rem, 3vw, 2rem) clamp(2.5rem, 6vw, 4rem); }
.hf-faq__group { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.hf-faq__grouptitle {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--genesee-dk);
  margin: 0 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--cream-dk);
}
.hf-faq__item { border-bottom: 1px solid var(--cream-dk); }
.hf-faq__item > summary {
  cursor: pointer; list-style: none; position: relative;
  padding: .9rem 2rem .9rem 0;
  font-family: var(--body); font-weight: 600; font-size: 1.02rem; color: var(--deep);
}
.hf-faq__item > summary::-webkit-details-marker { display: none; }
.hf-faq__item > summary::after {
  content: ""; position: absolute; right: .4rem; top: 1.15rem;
  width: .6rem; height: .6rem;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s ease;
}
.hf-faq__item[open] > summary::after { transform: rotate(225deg); top: 1.4rem; }
.hf-faq__item > summary:hover { color: var(--genesee-dk); }
.hf-faq__item > summary:focus-visible { outline: 2px solid var(--genesee); outline-offset: 3px; border-radius: 3px; }
.hf-faq__a { padding: 0 0 1.05rem; }
.hf-faq__a p { margin: 0; max-width: 68ch; line-height: 1.65; color: var(--ink); }
.hf-faq__a a { color: var(--genesee-dk); }

/* ============================================================
   Policies (policies.html) — long-form legal sections
   ============================================================ */
.hf-legal { padding-block: clamp(1rem, 3vw, 2rem) clamp(2.5rem, 6vw, 4rem); }
.hf-legal__nav {
  display: flex; flex-wrap: wrap; gap: .5rem .65rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem); padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dk);
}
.hf-legal__nav a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .03em;
  font-size: .8rem; color: var(--genesee-dk); text-decoration: none;
  padding: .35rem .75rem; border: 1px solid var(--cream-dk); border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.hf-legal__nav a:hover { background: var(--genesee-dk); color: var(--white); border-color: var(--genesee-dk); }
.hf-legal__nav a:focus-visible { outline: 2px solid var(--genesee); outline-offset: 2px; }
.hf-legal__section { margin-bottom: clamp(2rem, 5vw, 3rem); scroll-margin-top: 5.5rem; }
.hf-legal__section h2 {
  font-family: var(--serif); font-weight: 600; color: var(--deep);
  font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 .55rem;
}
.hf-legal__section h3 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .03em;
  font-size: .95rem; color: var(--genesee-dk); margin: 1.3rem 0 .35rem;
}
.hf-legal__section p { margin: 0 0 .85rem; max-width: 70ch; line-height: 1.7; color: var(--ink); }
.hf-legal__section a { color: var(--genesee-dk); }

/* condition grade reference cards */
.hf-grades { display: grid; gap: .7rem; margin: 1.1rem 0 0; max-width: 70ch; }
.hf-grade {
  display: grid; grid-template-columns: minmax(8rem, 9.5rem) 1fr; gap: 1rem;
  padding: .85rem 1.1rem; background: var(--cream-lt);
  border-radius: var(--card-radius); border-left: 4px solid var(--muted);
}
.hf-grade dt { font-family: var(--display); text-transform: uppercase; letter-spacing: .03em; color: var(--deep); align-self: center; }
.hf-grade dd { margin: 0; line-height: 1.6; color: var(--ink); }
.hf-grade--new { border-left-color: var(--amber); }
.hf-grade--ln { border-left-color: var(--cond-ln); }
.hf-grade--vg { border-left-color: var(--cond-vg); }
.hf-grade--g  { border-left-color: var(--cond-g); }
.hf-grade--ac { border-left-color: var(--cond-ac); }
@media (max-width: 560px) {
  .hf-grade { grid-template-columns: 1fr; gap: .25rem; }
}

/* ============================================================
   FAQ + policies: the content column fills the same centered wrap as
   the page title; the readable blocks inside cap at 64rem and sit
   flush-left, so body content lines up with the title's left edge.
   ============================================================ */
.hf-faq__group,
.hf-faq .hf-cta-row,
.hf-legal__nav,
.hf-legal__section,
.hf-legal .hf-cta-row { max-width: 64rem; }

/* Shop pagination ------------------------------------------------------- */
.hf-pager {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.4rem; margin: 2rem 0 0.5rem;
}
.hf-pager__btn {
  font-family: var(--body); font-size: 0.92rem; line-height: 1;
  min-width: 2.5rem; padding: 0.55rem 0.7rem;
  color: var(--ink); background: var(--white);
  border: 1px solid rgba(13, 31, 51, 0.18); border-radius: var(--radius);
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hf-pager__btn:hover:not([disabled]):not(.is-current) { border-color: var(--genesee-dk); color: var(--genesee-dk); }
.hf-pager__btn.is-current { background: var(--genesee-dk); border-color: var(--genesee-dk); color: #fff; cursor: default; }
.hf-pager__btn[disabled] { opacity: 0.45; cursor: not-allowed; }
.hf-pager__gap { padding: 0 0.15rem; color: var(--muted); }
