/* Components */

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-lg);
}
.site-logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  line-height: 0;
}
.site-logo a { display: flex; align-items: center; }
.site-logo img { height: 36px; width: auto; }

.nav-primary { display: none; }
.nav-primary > ul { display: flex; gap: var(--space-lg); align-items: center; }
.nav-primary a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}
.nav-primary a:hover { color: var(--color-accent); }
.nav-primary .current-menu-item > a,
.nav-primary .current-menu-ancestor > a { color: var(--color-accent); }
.nav-primary .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-actions { display: flex; align-items: center; gap: var(--space-md); position: relative; }
.lang-switch { font-size: 13px; font-weight: 600; color: var(--color-text-muted); }
.lang-switch a { padding: 4px; }
.lang-switch a.is-active { color: var(--color-primary); }
.lang-switch ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
}
.lang-switch .current-lang a { color: var(--color-primary); }

.nav-toggle {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-primary);
}
.nav-primary.is-open {
  display: block;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg);
}
.nav-primary.is-open > ul { flex-direction: column; align-items: flex-start; }
.nav-primary.is-open .sub-menu {
  display: block;
  padding-inline-start: 12px;
  margin-top: 8px;
}
.nav-primary.is-open .sub-menu a { font-size: 14px; }
.nav-primary.is-open .mega-col > a { font-weight: 700; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-primary { display: block; }
  .nav-primary > ul > .menu-item-has-children { position: relative; }
  .nav-primary > ul > .menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 560px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(11, 31, 51, 0.12);
    z-index: 200;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px 28px;
  }
  .nav-primary > ul > .menu-item-has-children:hover > .sub-menu,
  .nav-primary > ul > .menu-item-has-children:focus-within > .sub-menu {
    display: grid;
  }
  .nav-primary .sub-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    padding: 0;
  }
  .nav-primary .mega-col > a {
    font-weight: 700;
    color: var(--color-primary);
  }
}

.header-quote {
  padding: 8px 18px;
  min-height: 40px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .header-quote { display: none; }
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
  width: fit-content;
  padding: 14px 32px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 32px;
}
.btn-secondary:hover { border-color: #fff; }
.btn-ghost {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover { color: var(--color-accent); }

@media (pointer: fine) {
  .btn-primary { padding: 10px 28px; min-height: auto; }
}
@media (pointer: coarse) {
  .btn-primary { padding: 14px 32px; min-height: 48px; }
}

/* Hero */
.hero {
  background: var(--color-primary);
  color: #fff;
  padding-block: var(--space-3xl);
}
.hero .label { color: rgba(255,255,255,0.7); margin-bottom: var(--space-md); }
.hero h1 { max-width: 16ch; margin-bottom: var(--space-md); }
.hero p { max-width: 48ch; color: rgba(255,255,255,0.82); margin-bottom: var(--space-xl); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-2xl); }

.metrics-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.metric-value { font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--color-accent-light); line-height: 1.2; }
.metric-label { font-size: 14px; color: rgba(255,255,255,0.75); }
.metrics-strip--light .metric-value { color: var(--color-accent); }
.metrics-strip--light .metric-label { color: var(--color-text-muted); }
.metrics-strip--light { border-top-color: var(--color-border); }

@media (min-width: 768px) {
  .metrics-strip { grid-template-columns: repeat(4, 1fr); }
}

/* Product card / grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--color-primary); }
.product-card__img {
  aspect-ratio: 1 / 1.2;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-card__body { padding: var(--space-md); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .model { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--color-text-muted); text-transform: uppercase; }
.product-card h3 {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .tags { font-size: 13px; color: var(--color-text-muted); }
.product-card .details-link { color: var(--color-accent); font-weight: 600; font-size: 14px; text-align: center; }
.product-card__cta {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__cta .btn-primary {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}
@media (hover: none) {
  .product-card .details-link { opacity: 1; }
}

/* Process */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .process-flow { flex-direction: row; }
}
.process-step { flex: 1; }
.process-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.process-step.is-current .process-num { background: var(--color-accent); }

/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
.cat-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  font-weight: 700;
  font-size: 22px;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.cat-card span { position: relative; z-index: 1; }

.collection-banner-wrap { padding-top: 0; }
.collection-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.factory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
}
.factory-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt, #f4f4f4);
}
.factory-photo img,
.factory-photo__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  min-height: 220px;
}
.factory-photo figcaption {
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  font-size: 15px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 var(--space-lg) var(--space-md); color: var(--color-text-muted); }

/* CTA */
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: var(--space-md); }
.cta-section p { max-width: 52ch; margin-inline: auto; margin-bottom: var(--space-xl); color: var(--color-text-muted); }
.section--dark .cta-section p { color: rgba(255,255,255,0.8); }
.section--dark .btn-ghost { color: #fff; }
.section--dark .btn-ghost:hover { color: var(--color-accent-light, #fff); }

/* Form */
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.required { color: var(--color-error); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.5;
  background: var(--color-bg);
  min-height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}
.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-error { display: block; font-size: 13px; color: var(--color-error); margin-top: 4px; min-height: 18px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-submit { position: relative; background: var(--color-accent); color: #fff; border: 0; }
.btn-submit.is-loading { pointer-events: none; opacity: 0.7; }
.btn-submit .spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn-submit.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-message { padding: 16px; border-radius: var(--radius); font-size: 14px; margin-top: 16px; }
.form-message--success { background: rgba(22, 163, 74, 0.1); border: 1px solid var(--color-success); color: #15803d; }
.form-message--error { background: rgba(220, 38, 38, 0.1); border: 1px solid var(--color-error); color: #b91c1c; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--space-md);
}
@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: 1 / -1; }
}

/* Empty / skeleton */
.empty-state { text-align: center; padding: var(--space-3xl) var(--space-lg); color: var(--color-text-muted); }
.empty-state h3 { color: var(--color-text); margin-bottom: var(--space-sm); }
.empty-icon { width: 64px; height: 64px; margin-inline: auto; margin-bottom: var(--space-lg); }

.skeleton {
  background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e8eaed 50%, var(--color-bg-alt) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-img { aspect-ratio: 1 / 1.2; }

/* WhatsApp + quote floats */
.cta-floats {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  inset-inline-end: max(16px, env(safe-area-inset-right));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-float,
.quote-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.18);
}
.whatsapp-float { background: #25D366; }
.quote-float { background: var(--color-primary); }
.whatsapp-float:hover,
.quote-float:hover { transform: translateY(-1px); color: #fff; }
.back-to-top {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.18);
}
.back-to-top:hover { color: var(--color-accent); }
@media (max-width: 768px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 48px; height: 48px; padding: 0; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* Specs table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  text-align: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.spec-table th { width: 40%; color: var(--color-text-muted); font-weight: 500; }

/* Product detail */
.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .product-hero { grid-template-columns: 1fr 1fr; align-items: start; }
}
.product-gallery { background: var(--color-bg-alt); border-radius: var(--radius); overflow: hidden; }
.product-gallery img { width: 100%; aspect-ratio: 1 / 1.2; object-fit: cover; }
.product-meta .model { color: var(--color-text-muted); font-weight: 600; margin-bottom: 8px; }
.product-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-lg); }

/* Breadcrumb */
.breadcrumb { font-size: 14px; color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .separator { margin-inline: 8px; }

.search-toggle {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.header-search {
  position: absolute;
  top: 100%;
  inset-inline-end: var(--space-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.08);
  z-index: 120;
}
.search-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin-top: var(--space-md);
}
.empty-state .search-form { margin-inline: auto; }
.search-form input[type="search"] {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
  min-height: 44px;
}
.search-form__submit {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
}
.header-search .search-form { margin: 0; }

.swiper-main { border-radius: var(--radius); overflow: hidden; }
.swiper-thumbs { margin-top: 8px; }
.swiper-thumbs .swiper-slide {
  opacity: 0.55;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}
.swiper-thumbs .swiper-slide-thumb-active { opacity: 1; }
.swiper-button-prev, .swiper-button-next { color: #fff; }

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
.news-card { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.news-card__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-card__body { padding: var(--space-md); }
.news-card time { font-size: 13px; color: var(--color-text-muted); }
.news-card h2 { font-size: 20px; margin: 8px 0; }
.entry-hero { margin-bottom: var(--space-xl); }
.entry-hero img { width: 100%; height: auto; border-radius: var(--radius); }
.empty-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; margin-bottom: var(--space-md); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding-block: var(--space-2xl) var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}
.site-footer h4 { color: #fff; margin-bottom: var(--space-md); }
.site-footer a:hover { color: #fff; }
.site-footer .muted { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-lg);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Archive layout */
.archive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 1024px) {
  .archive-layout { grid-template-columns: 240px 1fr; }
  .archive-layout .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.filter-panel { border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-md); }
.filter-panel summary { font-weight: 600; cursor: pointer; }
.filter-panel ul { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.filter-panel a { display: flex; justify-content: space-between; gap: 8px; font-size: 14px; }
.filter-panel a.is-active { color: var(--color-accent); font-weight: 700; }
.filter-count { color: var(--color-text-muted); font-weight: 500; }
.filter-label { font-weight: 600; margin: var(--space-md) 0 8px; font-size: 14px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.filter-chip.is-active,
.filter-chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.catalog-search { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-md); }
.catalog-search .btn-ghost { align-self: flex-start; }
.catalog-count { font-size: 14px; color: var(--color-text-muted); margin-bottom: var(--space-md); }
.filter-group { margin-top: var(--space-md); }

/* Quote modal */
body.is-quote-open { overflow: hidden; }
.quote-modal[hidden] { display: none !important; }
.quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.quote-modal.is-open { display: flex; }
.quote-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.55);
}
.quote-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  z-index: 1;
}
.quote-modal__close {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg-alt, #f4f4f4);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.quote-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.quote-modal__title,
.quote-modal h2 { margin: 0 0 0.35rem; font-size: 1.5rem; }
.quote-modal__sub,
.quote-modal__note {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.quote-modal__note { margin: 1rem 0 0; text-align: center; }
.quote-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }
.quote-preset {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: start;
  cursor: pointer;
  color: var(--color-text-muted);
}
.quote-preset.is-active,
.quote-preset:hover { border-color: var(--color-accent); color: var(--color-accent); }
.quote-modal .inquiry-form .btn-submit { width: 100%; }
.form-more { margin: 0 0 1rem; }
.form-more summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.form-textarea { min-height: 88px; }

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--space-md);
}
.catalog-toolbar .catalog-count { margin: 0; }
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.catalog-sort select {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
.trust-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.trust-card h3 { margin: 0 0 8px; font-size: 18px; }
.trust-card p { margin: 0; color: var(--color-text-muted); font-size: 14px; }
.market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.market-chips li {
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
}
.trust-band .metrics-strip { margin-bottom: 0; }

.legal-doc { max-width: 44rem; }
.legal-doc h2 { margin-top: 1.75rem; font-size: 1.2rem; }
.legal-doc .lead { font-size: 1.05rem; }
.legal-updated { color: var(--color-text-muted); font-size: 14px; }

.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { font-weight: 600; color: #fff; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: var(--space-xl); }
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.pagination .current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.section-head { margin-bottom: var(--space-xl); }
.section-head p { color: var(--color-text-muted); margin-top: 8px; max-width: 60ch; }
