/* AUST MACHINERY — design system */
:root {
  --bone: #f4f0e8;
  --bone-2: #ece6da;
  --paper: #fbf8f2;
  --ink: #0d0e10;
  --ink-2: #1a1d22;
  --steel: #2b2f36;
  --concrete: #6e7681;
  --concrete-2: #9aa1ab;
  --line: #d6cfc0;
  --line-2: #e3ddcf;
  --brand: #d72028; /* logo red */
  --brand-deep: #a31218;
  --amber: #e89a3c;
  --mint: #4a7a5b;
  --shadow-card:
    0 1px 0 rgba(13, 14, 16, 0.04), 0 12px 32px -16px rgba(13, 14, 16, 0.18);

  --f-display: "Archivo", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
}
body {
  min-height: 100vh;
}
button {
  font-family: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ── Typography ───────────────────────────────── */
.display {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.mono {
  font-family: var(--f-mono);
  font-feature-settings: "tnum" 1;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--concrete);
}
.eyebrow-ink {
  color: var(--ink);
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--ink);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--steel);
}
.btn-red {
  background: var(--brand);
  color: white;
}
.btn-red:hover {
  background: var(--brand-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bone);
}
.btn-paper {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-sm {
  padding: 9px 14px;
  font-size: 12px;
}

/* ── Chip / Badge ─────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.chip-paper {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.chip-ink {
  background: var(--ink);
  color: var(--bone);
}
.chip-red {
  background: var(--brand);
  color: white;
}
.chip-amber {
  background: var(--amber);
  color: var(--ink);
}
.chip-mint {
  background: var(--mint);
  color: var(--paper);
}
.chip-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Surfaces ─────────────────────────────────── */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.card-tight {
  border-radius: 14px;
}
.hr {
  height: 1px;
  background: var(--line);
  width: 100%;
}
.hr-dark {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
}

/* ── Layout ───────────────────────────────────── */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-narrow {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.grid {
  display: grid;
  gap: 16px;
}
.row {
  display: flex;
  align-items: center;
}
.gap-sm {
  gap: 8px;
}
.gap-md {
  gap: 16px;
}
.gap-lg {
  gap: 24px;
}

/* ── Header ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header-strip {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.site-header-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
}
.site-header-strip .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  margin-right: 8px;
  vertical-align: 1px;
  box-shadow: 0 0 0 4px rgba(74, 122, 91, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 32px;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  border-color: var(--brand);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 280px;
}
.search-pill input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--ink);
  flex: 1;
  font-family: inherit;
}
.search-pill input::placeholder {
  color: var(--concrete-2);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  padding: 48px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}
.hero-headline {
  font-size: clamp(56px, 7vw, 104px);
}
.hero-headline .red {
  color: var(--brand);
}
.hero-headline .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--steel);
  max-width: 520px;
  line-height: 1.5;
  margin-top: 24px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-meta .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 4px;
}

.hero-feature {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
}
.hero-feature-img {
  flex: 1;
  min-height: 380px;
  position: relative;
}
.hero-feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.hero-feature-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-feature-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-feature-bottom .title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  max-width: 320px;
}
.hero-feature-bottom .arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ── Section ──────────────────────────────────── */
.section {
  padding: 72px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-sub {
  color: var(--concrete);
  max-width: 520px;
  margin-top: 12px;
}

/* ── Category tiles ──────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--bone);
  transition: transform 0.2s;
}
.cat-tile:hover {
  transform: translateY(-2px);
}
.cat-tile-num {
  font-family: var(--f-mono);
  font-size: 12px;
  opacity: 0.7;
}
.cat-tile-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.cat-tile-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  opacity: 0.85;
}
.cat-tile-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: screen;
}

/* ── Product card ─────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prod-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.prod-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.prod-card-img {
  aspect-ratio: 4/3;
  position: relative;
}
.prod-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.prod-card-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 14, 16, 0.55);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.prod-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prod-card-brand {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
  display: flex;
  justify-content: space-between;
}
.prod-card-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.prod-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.prod-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.prod-card-price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.prod-card-was {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--concrete);
  text-decoration: line-through;
}
.prod-card-save {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
}

/* ── Browse page ──────────────────────────────── */
.browse-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding-top: 32px;
}
.filters {
  position: sticky;
  top: 110px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding-right: 8px;
}
.filter-group {
  margin-bottom: 28px;
}
.filter-group-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.filter-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  cursor: pointer;
  color: var(--steel);
}
.filter-opt input {
  accent-color: var(--brand);
}
.filter-opt:hover {
  color: var(--ink);
}
.filter-opt .cnt {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--concrete);
}
.range-row {
  display: flex;
  gap: 8px;
}
.range-row input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  background: var(--paper);
}

.browse-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.crumbs {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
}
.crumbs span {
  color: var(--ink);
}
.browse-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 6px;
}
.browse-count {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--concrete);
  margin-top: 12px;
}

.toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
}
.select-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  background: var(--paper);
  cursor: pointer;
}

/* ── Detail page ──────────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  padding-top: 32px;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
}
.thumb-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thumb {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}
.thumb.active {
  border-color: var(--ink);
}
.hero-image {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.hero-image-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.hero-image-360 {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 14px;
  background: rgba(13, 14, 16, 0.6);
  color: white;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  backdrop-filter: blur(6px);
}

.detail-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-brand-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
}
.detail-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.detail-price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.02em;
}
.detail-was {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--concrete);
  text-decoration: line-through;
}
.detail-save {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
}

.spec-table {
  border-top: 1px solid var(--line);
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
}
.spec-row .v {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.condition-card {
  padding: 24px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 18px;
}
.condition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--f-mono);
  font-size: 12px;
}
.condition-row:last-child {
  border-bottom: 0;
}
.condition-meter {
  display: flex;
  gap: 3px;
}
.condition-meter .seg {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
}
.condition-meter .seg.on {
  background: var(--mint);
}

.inquiry-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.inquiry-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: white;
}
.inquiry-input:focus {
  outline: none;
  border-color: var(--ink);
}
.inquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

/* ── Brand bar ────────────────────────────────── */
.brand-bar {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone-2);
}
.brand-track {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--steel);
  letter-spacing: -0.01em;
  opacity: 0.85;
}

/* ── Why-buy / value ─────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.value-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.value-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.value-body {
  font-size: 13.5px;
  color: var(--concrete);
  margin-top: 6px;
  line-height: 1.5;
}

/* ── Services grid ───────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 14px 30px -20px rgba(13, 14, 16, 0.35);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card.featured .service-icon {
  background: var(--brand);
}
.service-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.service-body {
  font-size: 14px;
  color: var(--steel);
  margin-top: 8px;
  line-height: 1.5;
  flex: 1;
}
.service-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--brand);
  margin-top: 18px;
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.service-card:hover .service-cta {
  color: var(--brand-deep);
}
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Editorial CTA ───────────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-band-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.cta-band-sub {
  color: var(--concrete-2);
  margin-top: 18px;
  max-width: 480px;
}
.cta-band-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-band-side .stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.cta-band-side .stat .n {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
}
.cta-band-side .stat .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete-2);
  margin-top: 4px;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--concrete-2);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
}
.footer ul a {
  color: var(--bone);
  opacity: 0.85;
}
.footer ul a:hover {
  opacity: 1;
  color: var(--brand);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--concrete-2);
}

/* ── Misc ─────────────────────────────────────── */
.placeholder-stripe {
  position: absolute;
  inset: 0;
}
.placeholder-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

/* ── Drawer ──────────────────────────────────── */
.detail-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Icon buttons in header ──────────────────── */
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.12s,
    background 0.12s;
}
.icon-btn:hover {
  background: var(--bone-2);
}
.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--bone);
}

/* ── User menu ───────────────────────────────── */
.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
}
.user-pill:hover {
  background: var(--bone-2);
}
.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.user-pill .name {
  font-size: 13px;
  font-weight: 600;
}

.user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(13, 14, 16, 0.25);
  padding: 16px;
  z-index: 60;
}
.user-menu-head {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.user-menu-head .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
}
.user-menu a:hover {
  background: var(--bone-2);
}
.user-menu .sep {
  height: 1px;
  background: var(--line);
  margin: 8px -16px;
}

/* ── Modal ───────────────────────────────────── */
.modal-veil {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 16, 0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal {
  width: 100%;
  max-width: 460px;
  background: var(--paper);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}
.modal h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 8px;
}
.modal-x {
  float: right;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
  margin: 16px 0 6px;
}
.modal input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: white;
}
.modal input:focus {
  outline: none;
  border-color: var(--ink);
}

/* ── Cart drawer ─────────────────────────────── */
.drawer-veil {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 16, 0.4);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 460px;
  max-width: 100vw;
  background: var(--bone);
  z-index: 151;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -10px rgba(0, 0, 0, 0.25);
}
.drawer-head {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-head h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.02em;
}
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.cart-item-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.cart-item-meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--concrete);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.cart-item-price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
}
.qty-step {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  margin-top: 8px;
  background: var(--paper);
}
.qty-step button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.qty-step button:hover {
  background: var(--bone-2);
}
.qty-step .num {
  font-family: var(--f-mono);
  font-size: 12px;
  padding: 0 8px;
  min-width: 22px;
  text-align: center;
}
.drawer-foot {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.drawer-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13.5px;
}
.drawer-line.total {
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.drawer-empty {
  padding: 64px 32px;
  text-align: center;
  color: var(--concrete);
}

/* ── Map section ─────────────────────────────── */
.map-section {
  background: var(--ink);
  color: var(--bone);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 460px;
}
.map-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: space-between;
}
.map-info .display {
  font-size: 44px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.map-info-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.map-info-row .k {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--concrete-2);
}
.map-info-row .v {
  font-size: 14px;
}
.map-frame {
  position: relative;
  min-height: 460px;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* ── Account pages ───────────────────────────── */
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 32px 0 80px;
}
.account-side {
  position: sticky;
  top: 110px;
  align-self: start;
}
.account-side .who {
  padding: 22px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 16px;
  margin-bottom: 16px;
}
.account-side .who-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.account-side .who-meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--concrete-2);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.account-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account-side ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--steel);
  cursor: pointer;
}
.account-side ul a:hover {
  background: var(--paper);
}
.account-side ul a.active {
  background: var(--ink);
  color: var(--bone);
  font-weight: 600;
}
.account-side ul a .cnt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--concrete);
}
.account-side ul a.active .cnt {
  color: var(--concrete-2);
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.stat-card .n {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-card .l {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 6px;
}
.stat-card.dark {
  background: var(--ink);
  color: var(--bone);
  border: 0;
}
.stat-card.dark .l {
  color: var(--concrete-2);
}

.order-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 14px;
}
.order-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.order-head .ord-id {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.order-head .ord-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--concrete);
  margin-top: 4px;
}
.order-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  padding-top: 18px;
}
.order-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.order-line-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.order-totals {
  font-family: var(--f-mono);
  font-size: 12px;
}
.order-totals .row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.order-totals .row.total {
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ── Checkout ────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding: 32px 0 80px;
}
.checkout-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 16px;
}
.checkout-section h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-section h3 .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.field-row.full {
  grid-template-columns: 1fr;
}
.field-input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: white;
  width: 100%;
}
.field-input:focus {
  outline: none;
  border-color: var(--ink);
}
.pay-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pay-opt {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  background: white;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.pay-opt.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
}

.order-summary {
  background: var(--ink);
  color: var(--bone);
  border-radius: 18px;
  padding: 28px;
  position: sticky;
  top: 110px;
  align-self: start;
}
.order-summary h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.order-summary .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.order-summary .item .ti {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
}
.order-summary .item .me {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--concrete-2);
  margin-top: 3px;
}
.order-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--f-mono);
  font-size: 12.5px;
}
.order-summary .total {
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}

/* ── Confirmation ────────────────────────────── */
.confirm-hero {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px;
  margin: 32px 0;
}
.confirm-tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* ── Featured store carousel ─────────────────── */
.feat-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.feat-row .big {
  grid-row: span 1;
}
.feat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  cursor: pointer;
  transition: transform 0.15s;
}
.feat-card:hover {
  transform: translateY(-3px);
}
.feat-card.dark {
  background: var(--ink);
  color: var(--bone);
  border: 0;
}
.feat-card .feat-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-top: auto;
}
.feat-card .feat-eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--concrete);
}
.feat-card.dark .feat-eyebrow {
  color: var(--concrete-2);
}

/* ═══════════════════════════════════════════════
   PREMIUM FEATURES — added sections below
   ═══════════════════════════════════════════════ */

/* ── 1. Search Autocomplete ──────────────────── */
.search-auto-wrap {
  position: relative;
}

.search-auto-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 60px -16px rgba(13, 14, 16, 0.22);
  z-index: 60;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

.search-auto-dropdown::-webkit-scrollbar {
  width: 6px;
}

.search-auto-dropdown::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.search-auto-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.search-auto-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.1s;
}

.search-auto-item:hover {
  background: var(--bone-2);
}

.search-auto-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bone);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.search-auto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-auto-info {
  flex: 1;
  min-width: 0;
}

.search-auto-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-auto-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.search-auto-price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.search-auto-cat {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bone);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--concrete);
}

.search-auto-sep {
  height: 1px;
  background: var(--line-2);
  margin: 4px 16px;
}

.search-auto-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-top: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  transition: background 0.1s;
}

.search-auto-footer:hover {
  background: var(--bone-2);
  border-radius: 0 0 14px 14px;
}

.search-auto-empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--concrete);
  font-size: 13px;
}

/* ── 2. Compare Bar ──────────────────────────── */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--bone);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-bar.active {
  transform: translateY(0);
}

.compare-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.compare-bar-items {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.compare-bar-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  flex-shrink: 0;
  background: var(--ink-2);
}

.compare-bar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-bar-thumb-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  line-height: 1;
}

.compare-bar-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--concrete-2);
  white-space: nowrap;
}

.compare-bar-slot-empty {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.compare-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.compare-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
  white-space: nowrap;
}

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

.compare-bar-clear {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--concrete-2);
  cursor: pointer;
  border: none;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.12s;
}

.compare-bar-clear:hover {
  color: var(--bone);
}

/* ── 3. Compare Page ─────────────────────────── */
.compare-page {
  padding: 32px 0 80px;
}

.compare-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 32px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

.compare-table th,
.compare-table td {
  min-width: 280px;
  padding: 16px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table th:first-child,
.compare-table td:first-child {
  min-width: 160px;
  max-width: 180px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
  background: var(--bone);
  position: sticky;
  left: 0;
  z-index: 2;
}

.compare-header-cell {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--paper);
  border-bottom: 2px solid var(--line);
  text-align: center;
  padding: 24px 22px;
}

.compare-header-img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 12px;
  background: var(--bone);
  position: relative;
}

.compare-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-header-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.compare-header-price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.compare-table tbody tr:nth-child(even) td {
  background: var(--bone);
}

.compare-table tbody tr:nth-child(even) td:first-child {
  background: var(--bone-2);
}

.compare-cell-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.compare-cell-winner {
  background: rgba(74, 122, 91, 0.1);
  position: relative;
}

.compare-cell-winner::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.compare-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--concrete);
  cursor: pointer;
  transition:
    border-color 0.12s,
    color 0.12s;
}

.compare-remove-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ── 4. Live Chat Button ─────────────────────── */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px 0 0;
  height: 56px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 32px -8px rgba(215, 32, 40, 0.45);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    padding 0.25s ease;
  overflow: hidden;
  white-space: nowrap;
  animation: chat-fab-pulse 3s ease-in-out infinite;
}

.chat-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -6px rgba(215, 32, 40, 0.55);
}

.chat-fab-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-fab-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.chat-fab-text {
  opacity: 1;
  max-width: 160px;
  transition:
    opacity 0.2s,
    max-width 0.25s;
}

.chat-fab.collapsed {
  padding: 0;
  width: 56px;
  border-radius: 50%;
}

.chat-fab.collapsed .chat-fab-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
}

.chat-fab.collapsed:hover {
  width: auto;
  padding: 0 22px 0 0;
  border-radius: 999px;
}

.chat-fab.collapsed:hover .chat-fab-text {
  opacity: 1;
  max-width: 160px;
}

@keyframes chat-fab-pulse {
  0%,
  100% {
    box-shadow: 0 8px 32px -8px rgba(215, 32, 40, 0.45);
  }
  50% {
    box-shadow:
      0 8px 32px -4px rgba(215, 32, 40, 0.6),
      0 0 0 8px rgba(215, 32, 40, 0.08);
  }
}

/* ── 5. Quick View Modal ─────────────────────── */
.quickview-modal {
  width: 100%;
  max-width: 800px;
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 45% 55%;
  max-height: 90vh;
}

.quickview-image {
  position: relative;
  background: var(--bone);
  min-height: 400px;
}

.quickview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.quickview-image-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.quickview-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.quickview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 14, 16, 0.6);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 18px;
  backdrop-filter: blur(4px);
  transition: background 0.12s;
}

.quickview-close:hover {
  background: rgba(13, 14, 16, 0.85);
}

.quickview-brand {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
}

.quickview-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.quickview-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.quickview-price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.quickview-was {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--concrete);
  text-decoration: line-through;
}

.quickview-save {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.quickview-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quickview-desc {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.55;
}

.quickview-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.quickview-link {
  display: block;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.12s;
}

.quickview-link:hover {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 6. Active Filter Chips ──────────────────── */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0 0 20px;
}

.filter-chips-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px dashed var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: default;
  transition:
    border-color 0.12s,
    background 0.12s;
}

.filter-chips-chip:hover {
  border-color: var(--concrete);
}

.filter-chips-label {
  color: var(--concrete);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-chips-value {
  font-weight: 600;
}

.filter-chips-remove {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--line);
  color: var(--steel);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  line-height: 1;
  transition:
    background 0.12s,
    color 0.12s;
  padding: 0;
}

.filter-chips-remove:hover {
  background: var(--brand);
  color: white;
}

.filter-chips-clear {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  background: transparent;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  margin-left: 4px;
  transition: color 0.12s;
}

.filter-chips-clear:hover {
  color: var(--brand-deep);
}

/* ── 7. Range Sliders for Filters ────────────── */
.range-slider {
  padding: 8px 0 16px;
}

.range-slider-track {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  margin: 16px 0 8px;
}

.range-slider-fill {
  position: absolute;
  height: 100%;
  background: var(--brand);
  border-radius: 3px;
  pointer-events: none;
}

.range-slider-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  cursor: grab;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition:
    box-shadow 0.12s,
    transform 0.12s;
}

.range-slider-handle:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%) scale(1.1);
}

.range-slider-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.15);
}

.range-slider-handle-min {
  left: 0;
}

.range-slider-handle-max {
  left: 100%;
}

.range-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.range-slider-label {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--concrete);
  letter-spacing: 0.04em;
}

.range-slider-value {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.range-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  pointer-events: none;
  z-index: 3;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  cursor: grab;
  pointer-events: all;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* ── 8. Finance Calculator ───────────────────── */
.finance-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.finance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.finance-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.finance-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finance-amount {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.finance-from {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--concrete);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.finance-monthly {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.finance-monthly span {
  font-size: 22px;
  font-weight: 600;
  color: var(--concrete);
  letter-spacing: -0.01em;
}

.finance-slider-wrap {
  margin-bottom: 16px;
}

.finance-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.finance-slider-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
}

.finance-slider-value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.finance-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
}

.finance-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.finance-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.finance-terms {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.finance-term {
  flex: 1;
  padding: 9px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  cursor: pointer;
  transition:
    background 0.12s,
    border-color 0.12s,
    color 0.12s;
  color: var(--steel);
}

.finance-term:hover {
  border-color: var(--concrete);
}

.finance-term.active {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.finance-disclaimer {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--concrete);
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

/* ── 9. Social Proof Badges ──────────────────── */
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.proof-watching {
  background: var(--concrete);
  color: white;
}

.proof-low-stock {
  background: var(--amber);
  color: var(--ink);
}

.proof-hot {
  background: var(--amber);
  color: var(--ink);
  animation: proof-hot-pulse 2s ease-in-out infinite;
}

@keyframes proof-hot-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

.proof-sold {
  background: var(--brand);
  color: white;
}

.proof-position {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

/* Sold diagonal banner overlay on product card */
.proof-sold-banner {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.proof-sold-banner::after {
  content: "SOLD";
  position: absolute;
  top: 22px;
  right: -32px;
  width: 150px;
  text-align: center;
  padding: 6px 0;
  background: var(--brand);
  color: white;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.15em;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(215, 32, 40, 0.3);
}

/* ── 10. Recently Viewed Section ─────────────── */
.recent-section {
  padding: 48px 0;
}

.recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.recent-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.recent-arrows {
  display: flex;
  gap: 6px;
}

.recent-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.12s,
    transform 0.12s;
  color: var(--ink);
}

.recent-arrow:hover {
  background: var(--ink);
  color: var(--bone);
  transform: translateY(-1px);
}

.recent-arrow:disabled,
.recent-arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.recent-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.recent-track::-webkit-scrollbar {
  display: none;
}

.recent-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  scroll-snap-align: start;
}

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

.recent-card-img {
  aspect-ratio: 4/3;
  position: relative;
  background: var(--bone);
  overflow: hidden;
}

.recent-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-card-body {
  padding: 10px 12px 12px;
}

.recent-card-brand {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--concrete);
}

.recent-card-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-card-price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 6px;
}

/* ── 11. Mobile Menu ─────────────────────────── */
.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s;
  padding: 0;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: var(--bone-2);
}

.mobile-menu-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.mobile-menu-btn.active .mobile-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 16, 0.85);
  z-index: 140;
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--bone);
  z-index: 141;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 20px 0 60px -10px rgba(0, 0, 0, 0.25);
}

.mobile-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-shortcuts {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-shortcut {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  flex: 1;
  justify-content: center;
  transition: background 0.12s;
}

.mobile-menu-shortcut:hover {
  background: var(--bone-2);
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  transition:
    background 0.12s,
    color 0.12s;
}

.mobile-menu-nav a:hover {
  background: var(--paper);
  color: var(--brand);
}

.mobile-menu-nav a.active {
  color: var(--brand);
}

.mobile-menu-nav a .arrow {
  color: var(--concrete);
  font-size: 14px;
}

.mobile-menu-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.mobile-menu-foot .eyebrow {
  margin-bottom: 8px;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: background 0.12s;
}

.mobile-menu-close:hover {
  background: var(--bone-2);
}

.mobile-search-btn {
  display: none;
}

/* ── 12. Sold Overlay ────────────────────────── */
.sold-overlay {
  position: relative;
}

.sold-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 16, 0.55);
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
}

.sold-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 5;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: 0.1em;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  white-space: nowrap;
}

.sold-overlay .prod-card-body {
  opacity: 0.6;
}

.sold-overlay .btn,
.sold-overlay .prod-card-fav {
  pointer-events: none;
  opacity: 0.4;
}

/* ── 13. Newsletter Signup ───────────────────── */
.newsletter {
  padding: 28px 0 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-text h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0 0 4px;
}

.newsletter-text p {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--concrete-2);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.newsletter-input {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bone);
  font-family: inherit;
  font-size: 14px;
  min-width: 260px;
  outline: none;
  transition:
    border-color 0.12s,
    background 0.12s;
}

.newsletter-input::placeholder {
  color: var(--concrete-2);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition:
    background 0.12s,
    transform 0.12s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

/* ── 14. Back to Top ─────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px -4px rgba(13, 14, 16, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s,
    background 0.12s;
  color: var(--ink);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ── 15. Responsive additions ────────────────── */
@media (max-width: 1100px) {
  /* Existing responsive rules (preserved) */
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid,
  .prod-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .browse-layout {
    grid-template-columns: 1fr;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  .search-pill {
    display: none;
  }
  .map-section {
    grid-template-columns: 1fr;
  }
  .account-layout {
    grid-template-columns: 1fr;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .feat-row {
    grid-template-columns: 1fr 1fr;
  }
  .account-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile menu: show hamburger, hide desktop nav */
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-search-btn {
    display: flex;
  }
  .nav-links {
    display: none;
  }

  /* Compare bar: stack items vertically */
  .compare-bar-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 28px;
  }
  .compare-bar-items {
    width: 100%;
    justify-content: center;
  }
  .compare-bar-actions {
    width: 100%;
    justify-content: center;
  }

  /* Quick view: full width, stacked layout */
  .quickview-modal {
    max-width: 100%;
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .quickview-image {
    min-height: 240px;
    max-height: 280px;
  }

  /* Newsletter: stack on smaller screens */
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  .newsletter-input {
    min-width: 0;
    width: 100%;
  }
  .newsletter-btn {
    justify-content: center;
  }

  /* Compare page: allow horizontal scroll */
  .compare-table th,
  .compare-table td {
    min-width: 220px;
  }

  /* Chat fab: ensure not overlapped by compare bar */
  .chat-fab {
    bottom: 16px;
    right: 16px;
  }

  .back-to-top {
    bottom: 84px;
    right: 16px;
  }
}

@media (max-width: 640px) {
  .prod-grid,
  .prod-grid-4 {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: clamp(36px, 10vw, 56px);
  }
  .section-title {
    font-size: 32px;
  }
  .browse-title {
    font-size: 36px;
  }
  .detail-title {
    font-size: 32px;
  }
  .detail-price {
    font-size: 36px;
  }
  .cta-band-title {
    font-size: 36px;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feat-row {
    grid-template-columns: 1fr;
  }

  /* Finance card responsive */
  .finance-monthly {
    font-size: 36px;
  }
  .finance-terms {
    flex-wrap: wrap;
  }
  .finance-term {
    min-width: calc(33% - 4px);
  }

  /* Compare table columns */
  .compare-table th,
  .compare-table td {
    min-width: 180px;
    padding: 12px 14px;
  }

  /* Recently viewed cards smaller */
  .recent-card {
    width: 160px;
  }

  /* Mobile menu wider on small screens */
  .mobile-menu-panel {
    width: 100%;
    max-width: 100vw;
  }

  /* Sold overlay text smaller */
  .sold-overlay-text {
    font-size: 32px;
  }

  /* Compare title */
  .compare-title {
    font-size: 32px;
  }
}

/* ── Workshop AI Chatbot ─────────────────────── */
.workshop-chat-fab {
  position: fixed;
  right: 24px;
  z-index: 91;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px -8px rgba(13, 14, 16, 0.45);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.workshop-chat-fab:hover {
  transform: translateY(-2px);
  background: var(--brand-deep);
  box-shadow: 0 12px 36px -8px rgba(13, 14, 16, 0.55);
}

.workshop-chat-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 5px;
  border-radius: 6px;
  line-height: 1;
  border: 2px solid var(--paper);
}

.workshop-chat-panel {
  position: fixed;
  right: 24px;
  z-index: 92;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 480px;
  max-height: calc(100vh - 160px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 60px -12px rgba(13, 14, 16, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--f-body);
  animation: workshop-chat-in 0.18s ease-out;
}

@keyframes workshop-chat-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workshop-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink-2);
}

.workshop-chat-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.workshop-chat-badge {
  background: var(--brand);
  color: white;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 7px;
  border-radius: 5px;
  line-height: 1;
}

.workshop-chat-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
}

.workshop-chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--concrete-2);
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.workshop-chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}

.workshop-chat-close {
  background: transparent;
  border: none;
  color: var(--paper);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease;
}

.workshop-chat-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.workshop-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bone);
}

.workshop-chat-msg-user,
.workshop-chat-msg-bot {
  max-width: 82%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.workshop-chat-msg-user {
  align-self: flex-end;
  background: var(--ink);
  color: var(--paper);
  border-bottom-right-radius: 4px;
}

.workshop-chat-msg-bot {
  align-self: flex-start;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.workshop-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.workshop-chat-input-row input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--bone);
  color: var(--ink);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: var(--f-body);
  outline: none;
  transition: border-color 0.12s ease;
}

.workshop-chat-input-row input:focus {
  border-color: var(--brand);
}

.workshop-chat-input-row button {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.12s ease,
    opacity 0.12s ease;
  flex-shrink: 0;
}

.workshop-chat-input-row button:hover:not(:disabled) {
  background: var(--brand-deep);
}

.workshop-chat-input-row button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .workshop-chat-fab {
    right: 16px;
  }
  .workshop-chat-panel {
    right: 16px;
    width: calc(100vw - 32px);
    height: 70vh;
  }
}

/* ──────────────────────────────────────────────────────
   MOBILE POLISH — 768px / 480px / touch tuning
   Layered on top of existing 1100px + 640px blocks.
   ────────────────────────────────────────────────────── */

/* ── Tablet / large phone (≤ 768px) ──────────────── */
@media (max-width: 768px) {
  /* Header chrome shrinks */
  .site-nav {
    height: 64px;
    gap: 12px;
  }
  .logo-img {
    height: 34px;
  }
  .site-header-strip {
    font-size: 10px;
  }
  .site-header-strip-inner {
    height: 28px;
  }

  /* Hide the desktop search pill (mobile-search-btn already toggled at 1100px) */
  .search-pill {
    display: none;
  }
  /* Slimmer header utility buttons but keep them tappable (44px) */
  .nav-right {
    gap: 6px;
  }
  .icon-btn {
    width: 44px;
    height: 44px;
  }
  .mobile-menu-btn,
  .mobile-search-btn {
    width: 44px;
    height: 44px;
  }
  /* Collapse sign-in / user pill name to avatar only */
  .user-pill {
    padding: 4px;
  }
  .user-pill .name {
    display: none;
  }

  /* Hero: stack + scale */
  .hero {
    padding: 28px 0 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-headline {
    font-size: clamp(36px, 8vw, 56px);
    line-height: 1;
  }
  .hero-sub {
    font-size: 15px;
    margin-top: 18px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
    padding-top: 20px;
  }
  .hero-meta .num {
    font-size: 24px;
  }
  .hero-meta .lbl {
    font-size: 10px;
  }
  .hero-feature-img {
    min-height: 280px;
  }
  .hero-feature-overlay {
    padding: 20px;
  }
  .hero-feature-bottom .title {
    font-size: 22px;
  }
  .hero-feature-bottom .arrow {
    width: 44px;
    height: 44px;
  }

  /* Sections breathe less */
  .section {
    padding: 48px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  .section-title {
    font-size: clamp(28px, 5vw, 44px);
  }

  /* Categories: 2-up */
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cat-tile {
    aspect-ratio: 1 / 1;
    padding: 16px;
  }
  .cat-tile-name {
    font-size: 20px;
  }

  /* Products: 2-up with tighter padding */
  .prod-grid,
  .prod-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prod-card-body {
    padding: 12px;
    gap: 8px;
  }
  .prod-card-title {
    font-size: 15px;
  }
  .prod-card-price {
    font-size: 18px;
  }
  .prod-card-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .prod-card-foot .btn {
    width: 100%;
    justify-content: center;
    min-height: 40px;
  }

  /* Browse layout: stack filters above grid; convert to drawer-like collapsible */
  .browse-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .filters {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }
  .browse-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .browse-title {
    font-size: clamp(28px, 6vw, 44px);
  }
  .toolbar {
    width: 100%;
    flex-wrap: wrap;
  }
  .select-pill {
    flex: 1 1 calc(50% - 4px);
    min-height: 44px;
    justify-content: center;
  }
  .filter-chips {
    padding-bottom: 12px;
  }

  /* Detail: stack gallery + thumbs horizontally; side panel below */
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 16px;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .thumb-col {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    order: 2;
  }
  .thumb-col::-webkit-scrollbar {
    display: none;
  }
  .thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }
  .detail-title {
    font-size: clamp(26px, 6vw, 36px);
  }
  .detail-price {
    font-size: clamp(30px, 7vw, 42px);
  }
  .detail-actions {
    flex-direction: column;
  }
  .detail-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .inquiry-row {
    grid-template-columns: 1fr;
  }
  .map-info {
    padding: 28px;
  }
  .map-info-row {
    grid-template-columns: 90px 1fr;
  }
  .map-section {
    min-height: 0;
  }
  .map-frame {
    min-height: 320px;
  }

  /* Cart drawer: full width on mobile */
  .drawer {
    width: 100vw;
    max-width: 100vw;
  }
  .drawer-head {
    padding: 18px 18px 14px;
  }
  .drawer-items {
    padding: 8px 18px;
  }
  .drawer-foot {
    padding: 18px;
    /* iOS safe area */
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }
  /* Larger tap targets on the qty stepper (44x44 minimum) */
  .qty-step {
    padding: 4px;
  }
  .qty-step button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .qty-step .num {
    font-size: 14px;
    min-width: 28px;
    padding: 0 10px;
  }

  /* Checkout: single column, full-width fields */
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0 64px;
  }
  .checkout-section {
    padding: 20px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .pay-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .pay-opt {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Account: sidebar becomes top scrollable tab bar */
  .account-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0 64px;
  }
  .account-side {
    position: static;
    top: auto;
  }
  .account-side .who {
    padding: 16px 18px;
    margin-bottom: 12px;
  }
  .account-side ul {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 4px;
  }
  .account-side ul::-webkit-scrollbar {
    display: none;
  }
  .account-side ul a {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 14px;
    min-height: 44px;
  }
  .account-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-card .n {
    font-size: 24px;
  }
  .order-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .order-head {
    flex-direction: column;
    gap: 8px;
  }

  /* Compare bar: scroll items horizontally (don't stack vertically off-screen) */
  .compare-bar-inner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
    /* avoid being covered by chat fab */
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  .compare-bar-items {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .compare-bar-items::-webkit-scrollbar {
    display: none;
  }
  .compare-bar-thumb {
    flex-shrink: 0;
  }
  .compare-bar-actions {
    width: 100%;
    justify-content: center;
  }
  .compare-bar-btn,
  .compare-bar-clear {
    min-height: 44px;
  }

  /* Quick view: full-screen on phones */
  .quickview-modal {
    grid-template-columns: 1fr;
    max-width: 100%;
    max-height: 95vh;
    border-radius: 14px;
  }
  .quickview-image {
    min-height: 220px;
    max-height: 240px;
  }
  .quickview-body {
    padding: 20px;
  }
  .quickview-actions {
    flex-direction: column;
  }
  .quickview-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  /* Footer: 2 columns then 1 (further) */
  .footer {
    padding: 48px 0 24px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 36px;
  }
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .newsletter-input {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  /* Floating buttons: stack vertically, never overlap */
  .chat-fab {
    bottom: 16px;
    right: 16px;
    /* always collapsed/icon-only on mobile to save space */
    padding: 0;
    width: 56px;
    border-radius: 50%;
  }
  .chat-fab .chat-fab-text {
    display: none;
  }
  .workshop-chat-fab {
    /* sit above the WhatsApp/chat fab */
    bottom: calc(16px + 56px + 12px);
    right: 16px;
  }
  .back-to-top {
    /* sit above both fabs */
    bottom: calc(16px + 56px + 12px + 56px + 12px);
    right: 16px;
    width: 44px;
    height: 44px;
  }

  /* Finance card */
  .finance-card {
    padding: 20px;
  }
  .finance-monthly {
    font-size: 32px;
  }
  .finance-terms {
    flex-wrap: wrap;
    gap: 6px;
  }
  .finance-term {
    min-width: calc(50% - 3px);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Buttons: WCAG tap target */
  .btn {
    min-height: 44px;
  }
  .btn-sm {
    min-height: 38px;
  }

  /* Make sticky containers respect the shorter mobile header */
  .filters {
    /* falls back to static (set above); no top offset needed */
    top: auto;
  }

  /* CTA band */
  .cta-band {
    padding: 28px 20px;
  }
  .cta-band-title {
    font-size: clamp(28px, 7vw, 44px);
  }

  /* Recently viewed cards */
  .recent-card {
    width: 168px;
  }

  /* Body / typography minimums */
  body {
    font-size: 15px;
  }
}

/* ── Phone (≤ 480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .container,
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Categories: 1 column */
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .cat-tile {
    aspect-ratio: 16 / 10;
  }

  /* Products: keep 2 cols (denser) — switch to 1 only when truly tiny */
  .prod-grid,
  .prod-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .prod-card-body {
    padding: 10px;
  }
  .prod-card-title {
    font-size: 14px;
  }
  .prod-card-price {
    font-size: 16px;
  }
  .prod-card-was {
    font-size: 11px;
  }
  .prod-card-foot .btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Hero stats stack */
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  .hero-meta .num {
    font-size: 28px;
  }

  /* Sold overlay text smaller */
  .sold-overlay-text {
    font-size: 24px;
  }

  /* Pay options stack */
  .pay-options {
    grid-template-columns: 1fr;
  }

  /* Account stats: 1 column on tiny screens */
  .account-stats {
    grid-template-columns: 1fr;
  }

  /* Footer collapses to 1 column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Section titles scale */
  .section-title,
  .browse-title,
  .detail-title,
  .cta-band-title,
  .compare-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  /* Modals fill the screen */
  .modal {
    padding: 24px;
    max-width: 100%;
  }
  .quickview-image {
    min-height: 180px;
    max-height: 200px;
  }

  /* Tighter mobile menu nav rows */
  .mobile-menu-nav a {
    font-size: 16px;
    padding: 14px 20px;
  }
  .mobile-menu-shortcut {
    font-size: 11px;
    padding: 10px;
  }

  /* Single column finance terms */
  .finance-term {
    min-width: 100%;
  }
}

/* ── Touch devices (no hover) ────────────────────── */
@media (hover: none) {
  /* Disable hover-only reveal patterns so touch users see content */
  .chat-fab.collapsed {
    /* keep collapsed circle on touch — don't expand on tap-through */
    width: 56px;
    padding: 0;
    border-radius: 50%;
  }
  .chat-fab.collapsed .chat-fab-text {
    display: none;
  }

  /* Cards: skip translate hover (looks janky on tap) */
  .prod-card:hover,
  .cat-tile:hover,
  .recent-card:hover,
  .service-card:hover {
    transform: none;
  }

  /* Ensure ≥ 8px spacing around clustered tap targets */
  .nav-right {
    gap: 8px;
  }
  .toolbar {
    gap: 10px;
  }
}
