:root {
  color-scheme: light;
  --bg: oklch(0.975 0.012 250);
  --panel: oklch(0.995 0.005 250);
  --panel-2: oklch(0.955 0.014 250);
  --panel-soft: oklch(0.935 0.018 250);
  --text: oklch(0.205 0.035 260);
  --muted: oklch(0.47 0.035 260);
  --line: oklch(0.885 0.018 250);
  --dark: oklch(0.17 0.035 260);
  --dark-2: oklch(0.22 0.03 260);
  --on-dark: oklch(0.985 0.006 250);
  --on-dark-muted: oklch(0.82 0.03 250);
  --accent: oklch(0.52 0.22 280);
  --accent-2: oklch(0.45 0.13 155);
  --success: oklch(0.45 0.13 155);
  --success-text: oklch(0.985 0.006 155);
  --warn: oklch(0.82 0.16 85);
  --warn-text: oklch(0.24 0.045 80);
  --rating: oklch(0.69 0.17 70);
  --favorite-active: oklch(0.48 0.19 4);
  --focus-ring: oklch(0.72 0.17 280);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 42px rgba(16, 24, 44, 0.11);
  --radius: 6px;
  --z-header: 50;
  --z-compare-tray: 60;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: oklch(0.18 0.035 260);
  --panel: oklch(0.24 0.03 260);
  --panel-2: oklch(0.2 0.032 260);
  --panel-soft: oklch(0.3 0.035 260);
  --text: oklch(0.965 0.012 250);
  --muted: oklch(0.78 0.035 250);
  --line: oklch(0.34 0.035 260);
  --accent: oklch(0.68 0.19 280);
  --accent-2: oklch(0.75 0.16 155);
  --success: oklch(0.5 0.13 155);
  --success-text: oklch(0.985 0.006 155);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 5%, var(--bg)), var(--bg) 420px);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

a,
button,
input,
select,
textarea,
summary,
.tag,
.company-card,
.plain-card,
.material-card,
.service-tile,
.state-feature-link,
.material-pill,
.favorite-item,
.outline-button,
.primary-button,
.ghost-button,
.icon-button {
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

button,
select,
input,
textarea {
  font: inherit;
}

button,
select,
a[href] {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
button,
.badge,
.tag {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  background: rgba(11, 16, 32, 0.96);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  min-height: 64px;
  width: max-content;
  min-width: 100%;
  padding: 0 44px;
}

.brand,
.footer-brand {
  font-weight: 850;
  font-size: 1.35rem;
  white-space: nowrap;
  overflow-wrap: normal;
}

.icon-button,
.ghost-button,
.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 16px;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.92rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
}

.brand,
.main-nav a,
.header-actions a,
.header-actions button {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.icon-button,
.ghost-button {
  color: var(--on-dark);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.primary-button {
  color: var(--on-dark);
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(77, 46, 232, 0.25);
}

.outline-button {
  color: var(--accent);
  background: transparent;
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.primary-button:hover,
.ghost-button:hover,
.icon-button:hover,
.outline-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover {
  box-shadow: 0 12px 24px rgba(77, 46, 232, 0.3);
}

.outline-button:hover,
.tag:hover,
.company-card:focus-within,
.plain-card:focus-within,
.material-card:focus-within {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
}

.company-card:hover,
.plain-card:has(a[href]):hover,
.material-card:hover,
.service-tile:hover,
.material-pill:hover,
.favorite-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: 0 16px 34px rgba(16, 24, 44, 0.12);
}

main {
  padding-top: 64px;
}

.home-hero,
.hero-local,
.search-panel,
.catalog-section,
.compare-section,
.cta-band,
.simple-page,
.article-page,
.printer-hero,
.detail-hero,
.detail-grid,
.trust-strip,
.material-strip {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  padding: 42px 0 24px;
}

.home-copy {
  display: grid;
  align-content: center;
  min-height: 360px;
}

.home-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.home-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.14rem;
}

.home-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 18px;
}

.home-search label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.home-search input {
  min-height: 48px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
}

.home-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.home-summary a,
.home-summary span {
  display: grid;
  gap: 4px;
  min-height: 118px;
  align-content: end;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.home-summary a:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  transform: translateY(-1px);
}

.home-summary strong {
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.state-feature-panel {
  display: grid;
  gap: 14px;
  align-self: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.state-feature-panel h2 {
  margin: 0;
  font-size: 1.15rem;
}

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

.state-feature-link {
  display: grid;
  overflow: hidden;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.state-feature-link:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  transform: translateY(-1px);
}

.state-feature-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.state-feature-link span {
  display: grid;
  gap: 2px;
  padding: 10px 12px 12px;
}

.state-feature-link strong {
  font-size: 1rem;
}

.state-feature-link small {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-local {
  padding: 30px 0 34px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 10px;
  color: #9aa4b8;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.3vw, 4.35rem);
  line-height: 1.02;
}

.hero-title-place {
  white-space: nowrap;
}

.hero-copy h1 strong {
  color: var(--accent);
}

.hero-copy p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 1.12rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-strip span {
  display: grid;
  gap: 2px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.stat-strip span:last-child {
  border-right: 0;
}

.stat-strip strong {
  color: var(--text);
  font-size: 1.14rem;
}

.map-panel {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  height: auto;
}

.city-photo-panel img {
  display: block;
  aspect-ratio: 2 / 1;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
}

.map-panel p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

.map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--on-dark);
  background: var(--accent);
  border: 4px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(77, 46, 232, 0.35);
}

.pin-a { left: 25%; top: 35%; }
.pin-b { left: 48%; top: 18%; }
.pin-c { left: 70%; top: 27%; }
.pin-d { left: 80%; top: 55%; }

.map-controls {
  position: absolute;
  right: 14px;
  bottom: 56px;
  display: grid;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--panel);
  color: var(--text);
  font-weight: 800;
}

.search-panel,
.compare-section,
.cta-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-panel {
  padding: 18px;
}

.city-search-details {
  display: grid;
  gap: 12px;
}

.city-search-details > summary {
  display: none;
}

.city-search-content {
  display: grid;
  gap: 14px;
}

.search-panel h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-form {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr auto;
  gap: 16px;
  align-items: end;
}

.field {
  display: grid;
  gap: 6px;
  position: relative;
}

.field label,
.newsletter label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field select,
.contact-form input,
.contact-form textarea,
.newsletter input,
.section-head select {
  width: 100%;
  min-height: 44px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
}

.search-field svg {
  position: absolute;
  right: 12px;
  bottom: 13px;
  color: var(--muted);
}

.popular-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
}

.see-all {
  margin-left: auto;
  color: var(--accent);
  font-weight: 800;
}

.catalog-section,
.compare-section,
.simple-page,
.article-page {
  padding: 34px 0 0;
}

.search-page-form {
  margin: 22px 0 8px;
}

.search-results {
  width: 100%;
  margin: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head > div {
  min-width: 0;
}

.section-head h2,
.simple-page h1,
.article-page h1,
.detail-hero h1 {
  margin: 0;
  line-height: 1.05;
}

.section-head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.company-card {
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 24, 44, 0.08);
}

.media {
  position: relative;
  height: 170px;
  background: var(--dark);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease-out);
}

.company-card:hover .media img {
  transform: scale(1.025);
}

.badge-row {
  position: absolute;
  inset: 12px 56px auto 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.inline-badges {
  position: static;
  inset: auto;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.76rem;
}

.verified {
  color: var(--success-text);
  background: var(--success);
}

.premium {
  color: var(--warn-text);
  background: var(--warn);
}

.favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--on-dark);
  background: rgba(11, 16, 32, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
}

.favorite.is-active {
  color: var(--on-dark);
  background: var(--favorite-active);
}

.company-body {
  min-width: 0;
  padding: 18px;
}

.company-body h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 10px;
  color: var(--rating);
  font-size: 0.9rem;
}

.rating span,
.company-body p,
.meta-line {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.meta-line span {
  min-width: 0;
}

.phone-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-weight: 800;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-tile {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 116px;
  align-content: end;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.service-tile strong {
  font-size: 1.14rem;
}

.service-tile span {
  color: var(--muted);
  font-size: 0.9rem;
}

.favorite-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.favorite-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.favorite-item img {
  width: 180px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
}

.favorite-item h2,
.favorite-item p {
  margin: 0 0 6px;
}

.favorite-item p {
  color: var(--muted);
}

.favorite-item > div {
  min-width: 0;
}

.compare-section {
  padding: 24px;
  margin-top: 28px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

thead th {
  color: var(--muted);
  font-size: 0.84rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 24px 28px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 11%, var(--panel)), var(--panel));
}

.cta-band h2 {
  margin: 0 0 4px;
  color: var(--accent);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 22px;
  padding: 36px 44px 20px;
  overflow-x: clip;
  color: var(--on-dark-muted);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-grid section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid h2 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--on-dark);
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--on-dark-muted);
  font-size: 0.9rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-stack-links {
  display: grid;
  gap: 10px;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter label {
  grid-column: 1 / -1;
  color: var(--on-dark-muted);
}

.newsletter button {
  min-width: 46px;
  border: 0;
  color: var(--on-dark);
  background: var(--accent);
  border-radius: var(--radius);
}

.footer-grid section,
.newsletter input {
  min-width: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.simple-page,
.article-page {
  min-height: 58vh;
  padding-bottom: 36px;
}

.simple-page h1,
.article-page h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.simple-page > p,
.article-page > p {
  color: var(--muted);
  font-size: 1.1rem;
}

.trust-page {
  display: grid;
  gap: 22px;
}

.trust-page > * {
  margin-top: 0;
  margin-bottom: 0;
}

.trust-page h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.15;
}

.trust-page p,
.legal-page li {
  color: var(--muted);
}

.trust-metrics,
.company-facts,
.trust-grid,
.sitemap-grid {
  display: grid;
  gap: 14px;
}

.trust-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-metrics span {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 96px;
  align-content: end;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.trust-metrics strong {
  color: var(--text);
  font-size: 1.12rem;
}

.trust-grid,
.sitemap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.company-facts div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.company-facts dt {
  color: var(--muted);
}

.company-facts dd {
  overflow-wrap: anywhere;
}

.company-facts a,
.related-links a,
.sitemap-grid a {
  color: var(--accent);
  font-weight: 800;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-links h2 {
  flex-basis: 100%;
}

.sitemap-grid .plain-card {
  display: grid;
  align-content: start;
  gap: 9px;
}

.sitemap-grid .wide {
  grid-column: span 2;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.article-lead {
  margin-bottom: 0;
}

.list-grid,
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.plain-card,
.material-card,
.quote-box {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.post-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.92rem;
}

.card-link svg {
  transition: transform 180ms var(--ease-out);
}

.post-card:hover .card-link svg {
  transform: translateX(3px);
}

.city-card {
  padding: 0;
  overflow: hidden;
}

.city-card-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--panel-soft);
  border-bottom: 1px solid var(--line);
}

.city-card-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--panel-soft);
  transition: transform 320ms var(--ease-out);
}

.city-card:hover .city-card-media {
  transform: scale(1.035);
}

.city-card-body {
  padding: 18px 20px 20px;
}

.plain-card h2,
.plain-card h3,
.material-card h2,
.material-card h3 {
  margin: 0 0 8px;
}

.plain-card p,
.material-card p {
  color: var(--muted);
}

.city-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
  color: var(--muted);
}

.city-card-stats strong {
  color: var(--text);
}

.city-card-note {
  display: inline-flex;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-section {
  padding-top: 28px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-list h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.material-card dl,
.spec-grid {
  display: grid;
  gap: 10px;
}

.material-card dl div,
.spec-grid span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt,
.spec-grid strong {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding-top: 34px;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.detail-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.detail-hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding-top: 28px;
}

.detail-grid article,
.article-body {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.article-body {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.article-body > * {
  margin: 0;
}

.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.14;
}

.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 8px;
}

.quote-box {
  position: sticky;
  top: 90px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.quote-box h2:not(:first-child) {
  margin-top: 12px;
}

.related-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.company-profile-hero {
  position: relative;
  min-height: 430px;
  padding: 58px 0 34px;
}

.company-profile-hero::after {
  content: "";
  position: absolute;
  inset: 0 -40px auto auto;
  width: 280px;
  height: 280px;
  pointer-events: none;
  background-image: radial-gradient(color-mix(in srgb, var(--accent) 28%, transparent) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.45;
}

.detail-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  background: color-mix(in srgb, var(--accent) 8%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
  border-radius: 999px;
}

.company-profile-hero .tag-row {
  margin: 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-highlights span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
}

.hero-highlights svg,
.service-list svg,
.contact-facts svg,
.trust-strip svg {
  color: var(--accent);
}

.company-hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: color-mix(in srgb, var(--accent) 7%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: var(--radius);
}

.company-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.company-detail-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.company-main-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  min-width: 0;
}

.company-copy {
  max-width: none;
  margin: 0;
}

.company-main-panel h2 {
  margin: 4px 0 0;
}

.company-main-panel h2::after,
.quote-box h2:first-child::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 8px;
  background: var(--accent);
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 10px;
  background: color-mix(in srgb, var(--accent) 4%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: var(--radius);
}

.service-list li > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--panel));
  border-radius: var(--radius);
}

.service-list li > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.service-list strong,
.service-list small {
  display: block;
}

.service-list small {
  margin-top: 3px;
  color: var(--muted);
}

.contact-facts {
  display: grid;
  gap: 12px;
}

.contact-facts p {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin: 0;
  color: var(--muted);
}

.contact-facts p > span {
min-width: 0;
overflow-wrap: anywhere;
}

.contact-facts p > span:only-child {
grid-column: 1 / -1;
}

.contact-facts strong {
  color: var(--text);
}

.quote-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.quote-actions .primary-button,
.quote-actions .outline-button {
  justify-content: center;
  width: 100%;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 18px;
  min-height: 48px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: var(--radius);
}

.trust-strip strong,
.trust-strip span {
  min-width: 0;
}

.trust-strip span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.contact-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

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

.contact-grid-compact {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 120px;
}

.form-status {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.form-status.is-success {
  color: var(--success);
  background: color-mix(in srgb, var(--success) 10%, var(--panel));
  border-color: color-mix(in srgb, var(--success) 30%, var(--line));
}

.form-status.is-error {
  color: #a33d12;
  background: color-mix(in srgb, #ffb690 24%, var(--panel));
  border-color: color-mix(in srgb, #ff8e5a 40%, var(--line));
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.material-strip {
  padding-top: 28px;
}

.material-pill {
  display: inline-grid;
  min-width: 150px;
  margin: 0 8px 8px 0;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.material-pill span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header::-webkit-scrollbar {
    height: 3px;
  }

  .site-header::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.34);
  }

  .header-shell {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    gap: 14px;
    min-height: 60px;
    padding: 0 14px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .main-nav {
    flex: 0 0 auto;
    margin-left: 0;
    overflow: visible;
    padding: 0;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: 0;
  }

  main {
    padding-top: 60px;
  }

  .home-hero,
  .hero-grid,
  .detail-hero,
  .detail-grid,
  .company-detail-grid,
  .company-main-panel,
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .search-form,
  .company-grid,
  .footer-grid,
  .list-grid,
  .material-grid,
  .service-grid,
  .faq-list,
  .trust-metrics,
  .trust-grid,
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-form .primary-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .home-hero,
  .hero-local,
  .search-panel,
  .catalog-section,
  .compare-section,
  .cta-band,
  .simple-page,
  .article-page,
.detail-hero,
.detail-grid,
.company-fact-list,
.company-social-panel,
.trust-strip,
.material-strip {
width: min(100% - 28px, 1160px);
}

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .stat-strip,
  .home-search,
  .home-summary,
  .hero-highlights,
  .state-feature-grid,
  .search-form,
  .contact-grid,
  .company-facts,
  .company-grid,
  .footer-grid,
  .list-grid,
  .material-grid,
  .service-grid,
  .faq-list,
  .trust-metrics,
  .trust-grid,
  .sitemap-grid,
  .favorite-item {
    grid-template-columns: 1fr;
  }

  .sitemap-grid .wide {
    grid-column: auto;
  }

  .search-panel-accordion {
    padding: 0;
  }

  .city-search-details {
    gap: 0;
  }

  .city-search-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    color: var(--text);
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

  .city-search-details > summary::-webkit-details-marker {
    display: none;
  }

  .city-search-details > summary::after {
    content: "+";
    color: var(--accent);
    font-size: 1.35rem;
    line-height: 1;
  }

  .city-search-details[open] > summary::after {
    content: "-";
  }

  .city-search-content {
    padding: 0 16px 16px;
    border-top: 1px solid var(--line);
  }

  .favorite-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .section-head,
  .cta-band,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .company-profile-hero {
    padding-top: 28px;
  }

  .company-main-panel,
  .quote-box {
    padding: 18px;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

.printer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: 42px 0 24px;
}

.printer-hero-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.printer-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.printer-hero-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.printer-hero-stats {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--panel) 90%, white 10%), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.printer-hero-stats span {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.printer-hero-stats strong {
  color: var(--text);
  font-size: 1.2rem;
}

.affiliate-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel) 86%, white 14%);
  border: 1px dashed color-mix(in srgb, var(--accent) 26%, var(--line));
  border-radius: var(--radius);
}

.anchor-row,
.chip-cloud,
.comparison-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anchor-row a,
.printer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  white-space: nowrap;
}

.anchor-row a:hover,
.printer-badge:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
}

.printer-grid,
.filter-grid,
.comparison-grid,
.winner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.filter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.winner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.printer-card,
.printer-choice-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.printer-card-image img,
.printer-choice-card img,
.printer-media-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, color-mix(in srgb, var(--panel-2) 80%, white 20%), var(--panel));
}

.printer-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.printer-card-body h3,
.comparison-card h3,
.printer-choice-card h2 {
  margin: 0;
}

.printer-card-body p,
.comparison-card p,
.printer-choice-card p {
  margin: 0;
  color: var(--muted);
}

.printer-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.printer-mini-specs,
.detail-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.detail-kpis {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 14px;
}

.printer-mini-specs div,
.detail-kpis div {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.printer-mini-specs dt,
.detail-kpis dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.printer-mini-specs dd,
.detail-kpis dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.rating-row strong {
  color: var(--rating);
}

.printer-card-actions,
.marketplace-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.printer-compare-form {
  display: grid;
  gap: 18px;
}

.printer-compare-select {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.printer-compare-select input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.printer-compare-select:has(input:checked) {
  color: var(--accent);
}

.printer-save-compare {
  justify-self: start;
}

.printer-save-compare.is-active {
  border-color: color-mix(in srgb, var(--success) 48%, var(--line));
  background: color-mix(in srgb, var(--success) 10%, var(--panel));
  color: var(--text);
}

.printer-compare-tray {
  position: fixed;
  z-index: var(--z-compare-tray);
  inset: auto 0 0;
  padding: 12px 20px 18px;
  pointer-events: none;
}

.printer-compare-tray-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: var(--dark);
  box-shadow: 0 22px 56px rgba(5, 9, 18, 0.34);
  color: var(--on-dark);
  pointer-events: auto;
}

.printer-compare-tray-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.printer-compare-tray-copy > strong {
  font-size: 0.9rem;
}

.printer-compare-tray-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.printer-compare-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  flex: 0 0 auto;
  padding: 5px 9px 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.printer-compare-chip b {
  font-size: 1rem;
  line-height: 1;
}

.printer-compare-tray-status {
  color: var(--on-dark-muted);
  font-size: 0.78rem;
}

.printer-compare-tray-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.printer-compare-tray .primary-button.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.printer-compare-actions,
.catalog-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.printer-compare-actions {
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.printer-compare-actions span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.catalog-pagination {
  justify-content: center;
  margin-top: 18px;
}

.printer-price-note,
.printer-search-result,
.printer-search-empty {
  margin: 0;
  color: var(--muted);
}

.printer-compare-storage-note {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.printer-search {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.printer-search label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.printer-search-controls {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.printer-search input {
  flex: 1 1 280px;
  min-height: 46px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  font: inherit;
}

.printer-search input:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent);
  outline-offset: 2px;
  border-color: var(--accent);
}

.printer-search-empty {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.amazon-button {
  min-height: 48px;
  gap: 10px;
  padding: 0 18px;
}

.marketplace-secondary {
  min-height: 42px;
}

.printer-filter-card a,
.comparison-card a {
  display: grid;
  gap: 8px;
}

.printer-filter-card strong,
.comparison-card strong {
  color: var(--text);
}

.printer-filter-card span,
.printer-filter-card small,
.comparison-card span {
  color: var(--muted);
}

.comparison-card {
  display: grid;
  gap: 12px;
}

.comparison-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.printer-detail-hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.printer-media-panel {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.market-inline {
  display: grid;
  gap: 12px;
}

.printer-detail-grid,
.compare-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.printer-choice-image {
  display: block;
}

.printer-choice-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.printer-choice-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.printer-choice-card .comparison-chip-row {
  margin-bottom: 2px;
}

.printer-choice-card .marketplace-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.printer-choice-card .marketplace-panel > * {
  min-height: 44px;
}

.marketplace-button-placeholder {
  display: block;
  min-height: 44px;
  visibility: hidden;
}

.printer-choice-card .primary-button,
.printer-choice-card .outline-button {
  width: 100%;
}

.ficha-button {
  color: var(--text);
  border-color: var(--line);
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.warn-list li {
  color: var(--text);
}

.muted-paragraph {
  color: var(--muted);
}

.detail-spec-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-spec-table th,
.detail-spec-table td,
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-spec-table tr:first-child th,
.detail-spec-table tr:first-child td,
.compare-table tr:first-child th,
.compare-table tr:first-child td {
  border-top: 0;
}

.detail-spec-table th,
.compare-table thead th,
.compare-table tbody th {
  color: var(--text);
  font-weight: 800;
}

.compare-table thead th {
  background: color-mix(in srgb, var(--panel-2) 78%, white 22%);
}

.compare-table-wrap {
overflow-x: auto;
}

.compare-hero {
align-items: start;
}

.compare-choice-grid-wide {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
}

.compare-picker-section {
  margin-top: 8px;
}

.compare-picker-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  background: color-mix(in srgb, var(--panel) 88%, white 12%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compare-picker-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.compare-picker-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.compare-picker-form select {
  width: 100%;
  min-height: 46px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
}

.compare-picker-submit {
  min-height: 46px;
}

.winner-grid-wide {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.winner-card {
display: grid;
gap: 10px;
padding: 20px;
background: linear-gradient(180deg, color-mix(in srgb, var(--panel) 90%, white 10%), var(--panel));
}

.winner-card strong {
color: var(--muted);
font-size: 0.82rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}

.winner-card h3,
.compare-expand-card strong {
margin: 0;
font-size: 1.1rem;
}

.winner-card p,
.compare-expand-card p {
margin: 0;
color: var(--muted);
}

.compare-expand-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}

.compare-expand-card {
display: grid;
grid-template-rows: auto 1fr auto;
gap: 14px;
padding: 20px;
}

.compare-expand-card .outline-button {
width: 100%;
}

.compare-value {
font-weight: 600;
}

.compare-value.is-winner {
background: color-mix(in srgb, var(--accent) 9%, var(--panel));
color: var(--text);
}

.compare-value.is-winner.is-positive {
background: color-mix(in srgb, var(--success) 14%, var(--panel));
}

.faq-list {
display: grid;
gap: 12px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .printer-grid,
  .comparison-grid,
  .winner-grid,
  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .printer-hero,
  .printer-detail-hero,
  .printer-detail-grid {
    grid-template-columns: 1fr;
  }

  .compare-picker-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-expand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
 .printer-grid,
 .filter-grid,
 .comparison-grid,
  .winner-grid,
  .compare-choice-grid {
    grid-template-columns: 1fr;
  }

  .printer-mini-specs,
  .detail-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .anchor-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

 .compare-picker-form {
 grid-template-columns: 1fr;
 }

 .compare-expand-grid {
 grid-template-columns: 1fr;
 }

  .printer-search-controls {
    flex-wrap: wrap;
  }

  .printer-search-controls input {
    flex-basis: 100%;
  }
}

.company-fact-list,
.company-social-panel {
width: min(1160px, calc(100% - 40px));
margin-right: auto;
margin-left: auto;
}

.company-social-panel {
display: grid;
gap: 12px;
margin-top: 22px;
}

.company-social-panel h2 {
 margin: 0;
 font-size: 1rem;
}

.company-social-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
}

.social-pill {
 display: inline-flex;
 align-items: center;
 min-height: 42px;
 padding: 10px 16px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: var(--surface);
 color: var(--text);
 text-decoration: none;
}

.social-pill-video {
 background: color-mix(in srgb, var(--accent) 14%, white);
}

.company-fact-list {
display: grid;
gap: 12px;
margin: 0 0 24px;
margin-right: auto;
margin-left: auto;
padding: 18px;
border: 1px solid var(--line);
border-radius: var(--radius-lg);
 background: var(--surface);
}

.company-fact-list p {
 margin: 0;
 display: flex;
 align-items: flex-start;
 gap: 10px;
}

.company-fact-list strong {
 color: var(--heading);
}

.company-gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 gap: 16px;
}

.company-gallery-item {
 margin: 0;
 overflow: hidden;
 border: 1px solid var(--line);
 border-radius: var(--radius-lg);
 background: var(--surface);
}

.company-gallery-item img {
 display: block;
 width: 100%;
 height: auto;
}

.company-video-frame,
.company-map-frame {
 overflow: hidden;
 border: 1px solid var(--line);
 border-radius: var(--radius-lg);
 background: var(--surface);
}

.company-video-frame iframe,
.company-map-frame iframe {
 display: block;
 width: 100%;
 min-height: 360px;
 border: 0;
}

.company-map-frame iframe {
  min-height: 420px;
}

.filament-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: center;
  padding: 40px;
  overflow: hidden;
  border: 1px solid #323b47;
  border-radius: 18px;
  background: #121820;
  color: #f5f8fb;
  box-shadow: 0 24px 70px rgba(8, 13, 20, 0.24);
}

.filament-catalog-hero {
  position: relative;
  min-height: 510px;
}

.filament-catalog-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 20, 0.98) 0%, rgba(10, 14, 20, 0.88) 43%, rgba(10, 14, 20, 0.14) 78%);
  content: "";
}

.filament-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filament-catalog-hero::after {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, #00d1b2, #1d8cff 25%, #ffca3a 50%, #ff6b35 75%, #9b5de5);
  content: "";
}

.filament-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.filament-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.filament-hero p {
  margin: 0;
  color: #c4ced9;
  font-size: 1.06rem;
}

.filament-hero .breadcrumbs {
  margin-bottom: 4px;
  color: #aeb9c6;
}

.filament-hero .breadcrumbs a:hover,
.filament-hero .text-link {
  color: #76e6d3;
}

.filament-hero .eyebrow {
  color: #76e6d3;
}

.filament-hero .anchor-row a {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(12, 18, 25, 0.66);
  color: #fff;
  backdrop-filter: blur(10px);
}

.filament-hero-summary {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 22px;
  align-self: end;
  justify-self: end;
  width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(10, 15, 21, 0.74);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.filament-hero-summary strong {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}

.filament-hero-summary span {
  color: #fff;
  font-weight: 800;
}

.filament-hero-summary p {
  font-size: 0.92rem;
}

.filament-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.filament-brand-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16, 24, 44, 0.08);
}

.filament-brand-card:hover,
.filament-brand-card:focus-within {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 20px 44px rgba(16, 24, 44, 0.14);
}

.filament-brand-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 14px;
  background: #f2f4f2;
}

.filament-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 350ms var(--ease-out);
}

.filament-brand-card:hover .filament-brand-media img {
  transform: scale(1.025);
}

.filament-brand-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.filament-brand-card h3,
.filament-product-card h3 {
  margin: 0;
}

.filament-brand-card p {
  margin: 0;
  color: var(--muted);
}

.filament-brand-card .outline-button {
  justify-self: start;
  margin-top: auto;
}

.filament-brand-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.filament-origin {
  color: var(--text);
}

.filament-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filament-materials span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 750;
}

.filament-brand-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filament-marketplace-cta,
.filament-amazon-cta {
  min-height: 52px;
}

.filament-brand-hero {
  padding: 32px;
}

.filament-brand-showcase {
  overflow: hidden;
  border: 1px solid #394450;
  border-radius: 14px;
  background: #0d1218;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
}

.filament-brand-showcase img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  background: #f2f4f2;
}

.filament-brand-showcase div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: #fff;
}

.filament-brand-showcase span {
  color: #b7c2ce;
  font-size: 0.86rem;
  text-align: right;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.filament-brand-editorial {
  margin-top: clamp(48px, 7vw, 84px);
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.filament-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.filament-brand-narrative {
  display: grid;
  gap: 24px;
}

.filament-brand-narrative header {
  display: grid;
  gap: 10px;
}

.filament-brand-narrative h2,
.filament-brand-narrative h3,
.filament-brand-narrative p,
.filament-quality-guide h3,
.filament-quality-guide p {
  margin: 0;
}

.filament-brand-narrative h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.filament-brand-narrative p,
.filament-quality-guide p,
.filament-check-list span {
  color: var(--muted);
  text-wrap: pretty;
}

.filament-profile-label {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, var(--panel));
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
}

.filament-brand-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.filament-brand-facts div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--panel-2);
}

.filament-brand-facts dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.filament-brand-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.filament-selection-note {
  display: grid;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.filament-quality-guide {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #394450;
  border-radius: 12px;
  background: var(--dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  color: var(--on-dark);
}

.filament-quality-guide > div {
  display: grid;
  gap: 8px;
}

.filament-quality-guide p,
.filament-quality-guide .filament-check-list span {
  color: var(--on-dark-muted);
}

.filament-quality-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--success);
  color: var(--success-text);
  font-size: 1.3rem;
  font-weight: 900;
}

.filament-check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filament-check-list li {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.filament-check-list strong {
  color: var(--on-dark);
}

.filament-options-section {
  margin-top: clamp(28px, 5vw, 52px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 24, 44, 0.08);
}

.filament-options-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.filament-options-heading > div {
  display: grid;
  gap: 8px;
}

.filament-options-heading span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
}

.filament-options-heading h2,
.filament-options-heading p,
.filament-option-title h3 {
  margin: 0;
}

.filament-options-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.filament-options-heading p {
  color: var(--muted);
}

.filament-options-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.filament-material-panel,
.filament-color-panel {
  padding-top: 28px;
}

.filament-material-panel {
  padding-right: clamp(24px, 4vw, 48px);
}

.filament-color-panel {
  padding-left: clamp(24px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.filament-option-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.filament-option-title span {
  color: var(--muted);
  font-size: 0.8rem;
}

.filament-material-list,
.filament-color-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.filament-material-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.filament-material-list li {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 98px;
  padding: 15px;
  background: var(--panel-2);
}

.filament-material-list strong {
  color: var(--text);
}

.filament-material-list span {
  color: var(--muted);
  font-size: 0.84rem;
}

.filament-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filament-color-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  font-size: 0.82rem;
}

.filament-color-swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--text) 20%, var(--line));
  border-radius: 50%;
  background: var(--filament-swatch);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.filament-color-preto { --filament-swatch: #1d2026; }
.filament-color-branco { --filament-swatch: #f8fafc; }
.filament-color-cinza { --filament-swatch: #7b8490; }
.filament-color-prata { --filament-swatch: #c4cbd4; }
.filament-color-vermelho { --filament-swatch: #c73632; }
.filament-color-laranja { --filament-swatch: #e77b2b; }
.filament-color-amarelo { --filament-swatch: #e8ba2b; }
.filament-color-verde { --filament-swatch: #317c57; }
.filament-color-azul { --filament-swatch: #2f69ae; }
.filament-color-roxo { --filament-swatch: #7652a3; }
.filament-color-rosa { --filament-swatch: #d56591; }
.filament-color-marrom { --filament-swatch: #76503a; }
.filament-color-bege { --filament-swatch: #caa87d; }
.filament-color-transparente { --filament-swatch: #dbeafe; }
.filament-color-dourado { --filament-swatch: #c79d2f; }
.filament-color-cobre { --filament-swatch: #a65d3b; }
.filament-color-seda { --filament-swatch: #d7c7a8; }
.filament-color-madeira { --filament-swatch: #9a6a46; }
.filament-color-brilho-no-escuro { --filament-swatch: #b4d868; }

.filament-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.filament-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(16, 24, 44, 0.07);
}

.filament-product-card:hover,
.filament-product-card:focus-within {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  box-shadow: 0 16px 34px rgba(16, 24, 44, 0.12);
}

.filament-product-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 18px;
  background: #f2f4f2;
}

.filament-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms var(--ease-out);
}

.filament-product-card:hover .filament-product-media img {
  transform: scale(1.035);
}

.filament-product-content {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 172px;
  padding: 18px;
}

.filament-product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.filament-product-material {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, var(--panel));
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.filament-buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 80%, black);
  border-radius: 9px;
  background: var(--accent);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 20%, transparent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.filament-amazon-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: 9px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.filament-amazon-product-link:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--panel));
}

.filament-buy-link:hover {
  border-color: color-mix(in srgb, var(--accent) 72%, white);
  background: color-mix(in srgb, var(--accent) 88%, black);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .filament-brand-grid,
  .filament-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filament-editorial-layout {
    grid-template-columns: 1fr;
  }

  .filament-options-layout {
    grid-template-columns: 1fr;
  }

  .filament-material-panel {
    padding-right: 0;
  }

  .filament-color-panel {
    margin-top: 28px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .filament-catalog-hero {
    grid-template-columns: minmax(0, 1fr) 210px;
  }
}

@media (max-width: 720px) {
 .company-video-frame iframe,
 .company-map-frame iframe {
 min-height: 280px;
 }

  .filament-hero,
  .filament-brand-grid {
    grid-template-columns: 1fr;
  }

  .filament-hero {
    width: calc(100% - 28px);
    margin-top: 16px;
    padding: 24px 20px;
    border-radius: 14px;
  }

  .filament-catalog-hero {
    min-height: 560px;
  }

  .filament-catalog-hero::before {
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.98) 0%, rgba(10, 14, 20, 0.84) 58%, rgba(10, 14, 20, 0.24) 100%);
  }

  .filament-hero-photo {
    object-position: 62% center;
  }

  .filament-hero-summary {
    justify-self: start;
    width: min(240px, 100%);
  }

  .filament-brand-showcase div {
    align-items: start;
    flex-direction: column;
  }

  .filament-brand-showcase span {
    text-align: left;
  }

  .filament-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filament-brand-editorial {
    width: calc(100% - 28px);
    padding: 22px 18px;
    border-radius: 12px;
  }

  .filament-options-section {
    width: calc(100% - 28px);
    padding: 22px 18px;
    border-radius: 12px;
  }

  .filament-options-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .filament-options-heading .primary-button {
    align-self: start;
  }

  .filament-brand-facts {
    grid-template-columns: 1fr;
  }

  .printer-compare-tray {
    padding: 8px;
  }

  .printer-compare-tray-shell {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .printer-compare-tray-actions {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .printer-compare-tray-actions .primary-button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .filament-product-grid {
    grid-template-columns: 1fr;
  }

  .filament-material-list,
  .filament-product-actions {
    grid-template-columns: 1fr;
  }
}

/* Guias de ideias e produtos */
.product-hub-hero,
.product-guide-hero {
  position: relative;
  width: min(1440px, calc(100% - 56px));
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 20px;
  background: var(--dark);
  color: var(--on-dark);
  box-shadow: var(--shadow);
}

.product-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  min-height: 540px;
}

.product-hub-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(36px, 6vw, 88px);
  background:
    radial-gradient(circle at 18% 22%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 34%),
    linear-gradient(145deg, var(--dark), color-mix(in srgb, var(--dark) 84%, var(--accent)));
}

.product-hub-hero h1,
.product-guide-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.product-hub-hero-copy > p,
.product-guide-hero-copy > p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.product-hub-collage {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 540px;
}

.product-hub-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-hub-collage img:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.product-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-guide-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(16, 24, 44, 0.07);
}

.product-guide-card-media {
  min-height: 300px;
  overflow: hidden;
  background: var(--panel-2);
}

.product-guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.product-guide-card:hover .product-guide-card-media img {
  transform: scale(1.035);
}

.product-guide-card-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 3vw, 44px);
}

.product-guide-card h2,
.product-guide-card p {
  margin: 0;
}

.product-guide-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  font-weight: 500;
  line-height: 1.04;
}

.product-guide-category,
.product-ready-use {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-purpose-section {
  padding-bottom: clamp(46px, 7vw, 90px);
}

.product-purpose-grid,
.product-safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-purpose-grid article,
.product-safety-grid article {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.product-purpose-grid strong {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.product-purpose-grid h3,
.product-purpose-grid p,
.product-safety-grid h3,
.product-safety-grid p {
  margin: 10px 0 0;
}

.product-choice-note {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 36px;
  margin-top: 22px;
  padding: 30px;
  border-radius: 10px;
  background: var(--dark);
  color: var(--on-dark);
}

.product-choice-note h3,
.product-choice-note p {
  margin: 0;
}

.product-choice-note p {
  color: var(--on-dark-muted);
}

.product-guide-hero {
  min-height: 620px;
}

.product-guide-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 26, 0.95) 0%, rgba(8, 13, 26, 0.72) 48%, rgba(8, 13, 26, 0.08) 82%);
}

.product-guide-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-guide-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 620px;
  padding: clamp(34px, 7vw, 96px);
}

.product-guide-hero-copy .breadcrumbs,
.product-guide-hero-copy .breadcrumbs a {
  color: var(--on-dark-muted);
}

.product-section-nav {
  display: flex;
  gap: 10px;
  width: min(1320px, calc(100% - 56px));
  margin: 18px auto 0;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: thin;
}

.product-section-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.product-editorial-shell {
  width: min(1180px, calc(100% - 56px));
  margin: clamp(42px, 7vw, 92px) auto;
}

.product-intro {
  margin: 0 0 clamp(54px, 8vw, 110px);
  padding-left: clamp(22px, 4vw, 56px);
  border-left: 5px solid var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  line-height: 1.25;
}

.product-editorial-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px 54px;
  padding: clamp(46px, 7vw, 90px) 0;
  border-top: 1px solid var(--line);
}

.product-editorial-heading {
  display: grid;
  align-content: start;
  gap: 12px;
  grid-row: 1 / span 3;
}

.product-editorial-heading span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.product-editorial-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-editorial-section > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.product-idea-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.product-idea-list article {
  padding: 24px;
  background: var(--panel);
}

.product-idea-list h3,
.product-idea-list p {
  margin: 0;
}

.product-idea-list p {
  margin-top: 8px;
  color: var(--muted);
}

.product-ready-section {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(48px, 7vw, 96px);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent) 5%, var(--panel));
}

.product-ready-grid {
  display: grid;
  gap: 24px;
}

.product-ready-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-ready-media {
  min-height: 480px;
  padding: 24px;
  background: #fff;
}

.product-ready-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-ready-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 68px);
}

.product-ready-content h3,
.product-ready-content p,
.product-ready-content ul {
  margin: 0;
}

.product-ready-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.02;
}

.product-ready-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.product-ready-content li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.product-market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-market-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.product-market-link-ml {
  border-color: #f4d900;
  background: #ffe600;
  color: #172a53;
}

.product-market-link-ml:hover {
  background: #f4d900;
  color: #172a53;
  transform: translateY(-1px);
}

.affiliate-disclosure {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-safety-section {
  display: grid;
  gap: 30px;
}

.product-safety-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-faq-section {
  padding-bottom: clamp(48px, 7vw, 90px);
}

@media (max-width: 1100px) {
  .product-hub-hero {
    grid-template-columns: 1fr;
  }

  .product-hub-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px;
    min-height: 0;
  }

  .product-hub-collage img:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .product-guide-grid,
  .product-guide-card {
    grid-template-columns: 1fr;
  }

  .product-purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-hub-hero,
  .product-guide-hero {
    width: calc(100% - 28px);
    min-height: 0;
    border-radius: 14px;
  }

  .product-hub-hero-copy,
  .product-guide-hero-copy {
    min-height: 520px;
    padding: 28px 20px;
  }

  .product-guide-hero::after {
    background: linear-gradient(180deg, rgba(8, 13, 26, 0.92) 0%, rgba(8, 13, 26, 0.72) 70%, rgba(8, 13, 26, 0.46));
  }

  .product-hub-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 220px);
  }

  .product-hub-collage img:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .product-section-nav,
  .product-editorial-shell {
    width: calc(100% - 28px);
  }

  .product-editorial-section,
  .product-ready-card,
  .product-choice-note {
    grid-template-columns: 1fr;
  }

  .product-editorial-heading {
    grid-row: auto;
  }

  .product-ready-media {
    min-height: 340px;
  }

  .product-purpose-grid,
  .product-safety-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .product-idea-list {
    grid-template-columns: 1fr;
  }
}

/* Catálogo enxuto de produtos impressos em 3D */
.product-catalog-hero,
.product-hub-hero.product-catalog-hero {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  min-height: 0;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #323b47;
  border-radius: var(--radius);
  background: #121820;
  color: #fff;
  box-shadow: none;
}

.product-catalog-hero-copy,
.product-hub-hero-copy.product-catalog-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: initial;
  gap: 12px;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.product-catalog-hero .breadcrumbs,
.product-catalog-hero .breadcrumbs a {
  color: #aeb7c4;
}

.product-catalog-hero .eyebrow {
  color: #b8a7ff;
}

.product-catalog-hero h1,
.product-hub-hero.product-catalog-hero h1 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.product-catalog-hero p,
.product-hub-hero.product-catalog-hero p {
  margin: 0;
  color: #c8d0db;
  font-size: 1rem;
}

.product-catalog-count {
  display: grid;
  min-width: 150px;
  gap: 3px;
  padding: 18px;
  border: 1px solid #36404d;
  border-radius: var(--radius);
  background: #0d1219;
}

.product-catalog-count strong {
  font-size: 2.25rem;
  line-height: 1;
}

.product-catalog-count span {
  color: #aeb7c4;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-guide-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.product-guide-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 24, 44, 0.07);
}

.product-guide-card-media {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f2f4f2;
}

.product-guide-card-media img {
  object-fit: cover;
}

.product-guide-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-content: initial;
  gap: 10px;
  padding: 18px;
}

.product-guide-card h2 {
  font-family: inherit;
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.05;
}

.product-guide-card-body p {
  color: var(--muted);
}

.product-guide-card-body .outline-button {
  align-self: start;
  margin-top: auto;
}

.product-catalog-section {
  padding-top: 34px;
  padding-bottom: 64px;
}

.product-item-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-item-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(16, 24, 44, 0.07);
}

.product-item-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 14px;
  background: #f2f4f2;
}

.product-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms var(--ease-out);
}

.product-item-card:hover .product-item-media img,
.product-item-card:focus-within .product-item-media img {
  transform: scale(1.025);
}

.product-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.product-item-body h3,
.product-item-body p,
.product-item-facts {
  margin: 0;
}

.product-item-body h3 {
  font-size: 1.12rem;
  line-height: 1.16;
}

.product-item-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-item-use {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-item-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.product-item-facts li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-item-body .product-market-actions {
  margin-top: auto;
}

.product-item-body .product-market-link {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

@media (max-width: 880px) {
  .product-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-catalog-hero,
  .product-hub-hero.product-catalog-hero {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 14px;
    padding: 22px 18px;
  }

  .product-catalog-count {
    min-width: 0;
  }

  .product-item-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-decision-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.comparison-decision-card h3,
.comparison-decision-card p,
.comparison-verdict h3,
.comparison-verdict p {
  margin: 0;
}

.comparison-decision-card a {
  color: var(--accent);
  font-weight: 800;
}

.comparison-verdict {
  margin-top: 16px;
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
