/* ═══════════════════════════════════════════════════
   Shop / Catalog — 3DPrint.ua
   Design source: 3Dprint.ua-handoff project/index.html
   ═══════════════════════════════════════════════════ */

:root {
  --s-bg:      #f4f5f7;
  --s-card:    #ffffff;
  --s-ink:     #111418;
  --s-ink-2:   #2a2f36;
  --s-mute:    #6b7280;
  --s-line:    #e5e7eb;
  --s-line-2:  #eef0f3;
  --s-brand:   #e31e24;
  --s-brand-2: #b8161b;
  --s-ok:      #16a34a;
  --s-warn:    #f59e0b;
  --s-sans:    "Inter", -apple-system, system-ui, sans-serif;
  --s-mono:    "JetBrains Mono", ui-monospace, monospace;
}

/* ── PAGE WRAPPER ── */
.shop-page-wrap {
  background: var(--s-bg);
  min-height: 60vh;
  font-family: var(--s-sans);
  -webkit-font-smoothing: antialiased;
}
.shop-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BREADCRUMBS ── */
.shop-breadcrumbs {
  padding: 14px 0;
  font-size: 12px;
  color: var(--s-mute);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--s-sans);
}
.shop-breadcrumbs a { color: var(--s-mute); text-decoration: none; }
.shop-breadcrumbs a:hover { color: var(--s-brand); }
.shop-breadcrumbs .sep { opacity: 0.5; }

/* ── HERO SLIDER ── */
.shop-hero {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  margin-bottom: 24px;
  border: 1px solid var(--s-line);
  min-height: 300px;
}
.sh-main {
  background: linear-gradient(135deg, #111418 0%, #2a2f36 100%);
  color: #fff;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.sh-main::before {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--s-brand) 0%, transparent 70%);
  opacity: 0.35;
}
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--s-brand);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.sh-main h2 {
  color: #f5f2ec !important;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 0;
  font-family: var(--s-sans);
  font-weight: 800;
}
.sh-main .sh-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  position: relative;
  z-index: 2;
  line-height: 1.55;
}
.sh-cta {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 2;
  margin-top: 6px;
  flex-wrap: wrap;
}
.sh-btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  background: var(--s-brand);
  color: #fff;
  text-decoration: none;
  transition: background .15s;
}
.sh-btn-pri:hover { background: var(--s-brand-2); color: #fff; }
.sh-btn-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  transition: all .15s;
}
.sh-btn-out:hover { background: #fff; color: var(--s-ink); border-color: #fff; }

.sh-side { display: grid; grid-template-rows: 1fr 1fr; }
.sh-card {
  padding: 24px;
  border-bottom: 1px solid var(--s-line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.sh-card:last-child { border-bottom: 0; }
.sh-card:hover { background: var(--s-line-2); }
.sh-card .sh-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--s-brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.sh-card h3 {
  font-size: 17px;
  line-height: 1.2;
  margin: 0 0 4px;
  font-weight: 700;
  font-family: var(--s-sans);
}
.sh-card .sh-note { font-size: 12px; color: var(--s-mute); }
.sh-card .sh-ico {
  width: 72px; height: 72px;
  border-radius: 8px;
  background: var(--s-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-brand);
  flex-shrink: 0;
}

/* ── PROMO STRIP ── */
.shop-promo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.sp-card {
  background: #fff;
  border: 1px solid var(--s-line);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.sp-ico {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--s-line-2);
  color: var(--s-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  font-family: var(--s-sans);
  color: var(--s-ink);
}
.sp-card p {
  font-size: 11px;
  color: var(--s-mute);
  margin: 2px 0 0;
  line-height: 1.3;
}

/* ── PAGE TITLE ── */
.shop-page-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 8px 0 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.shop-page-title h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--s-ink);
  margin: 0;
  font-family: var(--s-sans);
  letter-spacing: -0.01em;
}
.shop-page-title .spt-count {
  color: var(--s-mute);
  font-size: 13px;
  margin-top: 4px;
}
.shop-popular {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--s-mute);
}
.shop-popular a {
  color: var(--s-mute);
  text-decoration: none;
  border-bottom: 1px dashed var(--s-line);
  padding-bottom: 1px;
}
.shop-popular a:hover { color: var(--s-brand); border-color: var(--s-brand); }

/* ── TWO-COL LAYOUT ── */
.shop-layout {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 48px;
}

/* ── FILTERS SIDEBAR ── */
.shop-filters {
  background: #fff;
  border: 1px solid var(--s-line);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.sf-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--s-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sf-head h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  font-family: var(--s-sans);
  color: var(--s-ink);
}
.sf-head .sf-reset {
  font-size: 11px;
  color: var(--s-brand);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.sf-group { border-bottom: 1px solid var(--s-line); }
.sf-group:last-child { border-bottom: 0; }
.sf-title {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: var(--s-ink-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sf-title::after { content: "–"; color: var(--s-mute); font-size: 14px; }
.sf-body { padding: 0 16px 14px; display: flex; flex-direction: column; gap: 7px; }

.sf-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  cursor: pointer;
  color: var(--s-ink-2);
  text-decoration: none;
  padding: 2px 0;
}
.sf-opt:hover { color: var(--s-brand); }
.sf-opt.active { color: var(--s-brand); font-weight: 600; }
.sf-opt .sf-cnt {
  color: var(--s-mute);
  font-size: 11px;
  font-family: var(--s-mono);
}
.sf-opt.active .sf-cnt { color: var(--s-brand); }

.sf-apply {
  padding: 14px 16px;
}
.sf-apply a {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--s-brand);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: background .15s;
}
.sf-apply a:hover { background: var(--s-brand-2); }

/* Collapsible filter group */
.sf-group-collapsible.sf-collapsed .sf-body { display: none; }
.sf-group-collapsible.sf-collapsed .sf-title::after { content: "+"; }

/* Checkbox-style filter option */
.sf-opt-reset {
  font-size: 11px;
  color: var(--s-mute) !important;
  font-weight: 500;
}
.sf-check {
  gap: 8px;
  justify-content: flex-start;
}
.sf-check .sf-cnt { margin-left: auto; }
.sf-cb {
  width: 16px; height: 16px;
  border: 1.5px solid var(--s-line);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  transition: all .15s;
}
.sf-check:hover .sf-cb { border-color: var(--s-brand); }
.sf-check.active .sf-cb {
  background: var(--s-brand);
  border-color: var(--s-brand);
}
.sf-check.active .sf-cb::after {
  content: "";
  display: block;
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Price filter inputs */
.sf-price-inp {
  flex: 1;
  border: 1px solid var(--s-line);
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 12px;
  font-family: var(--s-mono);
  outline: 0;
  background: #fff;
  color: var(--s-ink);
  -moz-appearance: textfield;
}
.sf-price-inp::-webkit-inner-spin-button,
.sf-price-inp::-webkit-outer-spin-button { -webkit-appearance: none; }
.sf-price-inp:focus { border-color: var(--s-ink); }
.sf-price-btn {
  display: block;
  width: 100%;
  padding: 9px;
  background: var(--s-ink);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--s-sans);
  transition: background .15s;
}
.sf-price-btn:hover { background: var(--s-brand); }

/* Formlabs brand block in sidebar */
.sf-brand-formlabs {
  margin: 0 16px 14px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--s-line);
}
.sf-brand-formlabs a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #0c0c0c;
  color: #f5f2ec;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: background .15s;
}
.sf-brand-formlabs a:hover { background: #1a1a1a; }
.sf-brand-formlabs .sfl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4f00;
  flex-shrink: 0;
}

/* ── TOOLBAR ── */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid var(--s-line);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  gap: 14px;
  flex-wrap: wrap;
}
.st-left { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.st-label { font-size: 12px; color: var(--s-mute); white-space: nowrap; }
.shop-toolbar select {
  border: 1px solid var(--s-line);
  border-radius: 6px;
  padding: 7px 12px;
  font-family: var(--s-sans);
  font-size: 13px;
  background: #fff;
  color: var(--s-ink);
  outline: 0;
  cursor: pointer;
}
.shop-toolbar select:focus { border-color: var(--s-ink); }
.st-count { font-size: 12px; color: var(--s-mute); margin-left: 4px; }

/* ── PRODUCT GRID ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ── PRODUCT CARD ── */
.pcard {
  background: #fff;
  border: 1px solid var(--s-line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.pcard:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #d0d4db;
  transform: translateY(-1px);
}

.pcard-thumb {
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 16px;
}
.pcard-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  transition: transform .3s;
}
.pcard:hover .pcard-thumb img { transform: scale(1.04); }

/* Formlabs brand accent line */
.pcard.is-formlabs .pcard-thumb {
  background: linear-gradient(180deg, #fff 60%, #f5f2ec 100%);
}
.pcard.is-formlabs::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff4f00, #e64600);
  border-radius: 8px 8px 0 0;
}

.pcard-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.pb {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.pb-new  { background: var(--s-brand); color: #fff; }
.pb-sale { background: var(--s-warn); color: #fff; }
.pb-disc { background: #f59e0b; color: #fff; }
.pb-top  { background: #111418; color: #fff; }
.pb-hit  { background: #dcfce7; color: #166534; }

.pcard-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateX(6px);
  transition: all .2s;
  z-index: 2;
}
.pcard:hover .pcard-actions { opacity: 1; transform: translateX(0); }
.pa-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--s-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-ink-2);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}
.pa-btn:hover { background: var(--s-brand); color: #fff; border-color: var(--s-brand); }

.pcard-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.pcard-brand {
  font-size: 11px;
  font-weight: 700;
  color: var(--s-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pcard.is-formlabs .pcard-brand { color: #ff4f00; }

.pcard-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 36px;
  color: var(--s-ink);
  text-decoration: none;
  display: block;
}
.pcard-name:hover { color: var(--s-brand); }

.pcard-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}
.ps {
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 3px;
  background: var(--s-line-2);
  color: var(--s-ink-2);
  font-family: var(--s-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pcard.is-formlabs .ps {
  background: #f5f2ec;
  color: #0c0c0c;
}

.pcard-avail {
  font-size: 11px;
  font-weight: 600;
  color: var(--s-ok);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pcard-avail::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--s-ok);
  border-radius: 50%;
  flex-shrink: 0;
}
.pcard-avail.out { color: var(--s-mute); }
.pcard-avail.out::before { background: var(--s-mute); }

.pcard-price-row {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
}
.pcard-price {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--s-ink);
  line-height: 1;
  font-family: var(--s-sans);
}
.pcard-price small {
  font-weight: 600;
  font-size: 12px;
  color: var(--s-mute);
}
.pcard-old {
  font-size: 12px;
  color: var(--s-mute);
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}
.pcard-cart {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--s-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s;
}
.pcard-cart:hover { background: var(--s-brand); }
.pcard-cart svg { stroke: #fff; }

/* Formlabs brand CTA card (in grid as last item) */
.pcard-fl-cta {
  background: #0c0c0c;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 200px;
  text-decoration: none;
  color: #f5f2ec;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.pcard-fl-cta::before {
  content: "";
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, #ff4f00 0%, transparent 70%);
  opacity: 0.18;
  z-index: 0;
}
.pcard-fl-cta:hover { background: #1a1a1a; }
.pcard-fl-cta .pfl-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff4f00;
}
.pcard-fl-cta h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  font-family: var(--s-sans);
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}
.pcard-fl-cta .pfl-link {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

/* WooCommerce "no products" */
.shop-no-products {
  padding: 60px 24px;
  text-align: center;
  color: var(--s-mute);
  font-size: 15px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--s-line);
}

/* ── PAGINATION ── */
.shop-pager {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 28px 0 8px;
}
.shop-pager a,
.shop-pager span {
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--s-line);
  font-weight: 600;
  font-size: 13px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  text-decoration: none;
  color: var(--s-ink);
  transition: all .15s;
}
.shop-pager a:hover { border-color: var(--s-ink); }
.shop-pager .current,
.shop-pager span.current {
  background: var(--s-ink);
  color: #fff;
  border-color: var(--s-ink);
}
/* WC native pagination */
.woocommerce-pagination .page-numbers { display: flex; justify-content: center; gap: 4px; margin: 28px 0 8px; padding: 0; list-style: none; }
.woocommerce-pagination .page-numbers li { display: flex; }
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  min-width: 36px; height: 36px;
  border-radius: 6px; border: 1px solid var(--s-line);
  font-weight: 600; font-size: 13px;
  background: #fff; color: var(--s-ink);
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; text-decoration: none; transition: all .15s;
}
.woocommerce-pagination .page-numbers a:hover { border-color: var(--s-ink); }
.woocommerce-pagination .page-numbers .current { background: var(--s-ink); color: #fff; border-color: var(--s-ink); }

/* ── SERVICES BAND ── */
.shop-services {
  background: #fff;
  border-top: 1px solid var(--s-line);
  padding: 56px 0;
}
.svc-band-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.svc-band-head h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  font-family: var(--s-sans);
  color: var(--s-ink);
}
.svc-band-head a { color: var(--s-brand); font-weight: 600; font-size: 13px; text-decoration: none; }
.svc-band-head a:hover { text-decoration: underline; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.svc-item {
  background: var(--s-bg);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--s-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  text-decoration: none;
  color: inherit;
}
.svc-item:hover {
  background: var(--s-ink);
  color: #fff;
  border-color: var(--s-ink);
  transform: translateY(-2px);
}
.svc-item:hover .svc-ico { background: var(--s-brand); color: #fff; }
.svc-item:hover .svc-note { color: rgba(255,255,255,0.65); }
.svc-item:hover .svc-arr { color: rgba(255,255,255,0.65); }
.svc-ico {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #fff;
  color: var(--s-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.svc-item h3 { font-size: 16px; font-weight: 700; margin: 0; font-family: var(--s-sans); line-height: 1.2; color: var(--s-ink) !important; }
.svc-item:hover h3 { color: #fff !important; }
.svc-note { font-size: 12px; color: #4b5563; flex: 1; line-height: 1.45; }
.svc-arr { font-size: 11px; color: #4b5563; font-weight: 600; display: flex; align-items: center; gap: 4px; margin-top: auto; }
.svc-item:hover .svc-note { color: rgba(255,255,255,0.75) !important; }
.svc-item:hover .svc-arr { color: rgba(255,255,255,0.75) !important; }

/* ── BRANDS STRIP ── */
.shop-brands {
  background: var(--s-bg);
  padding: 32px 0 40px;
  border-top: 1px solid var(--s-line);
}
.shop-brands h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--s-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  font-family: var(--s-sans);
}
.brands-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.brand-tile {
  background: #fff;
  border: 1px solid var(--s-line);
  border-radius: 6px;
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: var(--s-ink-2);
  text-decoration: none;
  transition: all .15s;
}
.brand-tile:hover { border-color: var(--s-ink); color: var(--s-brand); }
.brand-tile.bt-formlabs {
  background: #0c0c0c;
  color: #f5f2ec;
  border-color: #0c0c0c;
  font-size: 12px;
}
.brand-tile.bt-formlabs:hover { background: #1a1a1a; border-color: #1a1a1a; color: #ff4f00; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-promo { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-row { grid-template-columns: repeat(4, 1fr); }
  .shop-hero { grid-template-columns: 1fr; }
  .sh-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
}
@media (max-width: 640px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-promo { grid-template-columns: 1fr 1fr; }
  .brands-row { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .sh-main { padding: 28px 24px; }
  .sh-main h2 {
  color: #f5f2ec !important; font-size: 24px; }
  .shop-shell { padding: 0 16px; }
}
@media (max-width: 420px) {
  .shop-grid { grid-template-columns: 1fr; }
}
