/* Preserve the established design; add compact seller navigation and contact tools. */
.seo-related {
  border-top: 1px solid var(--color-border);
}
.seo-related__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.seo-related p {
  color: var(--color-text-muted);
}
.seo-related ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
}
.seo-related a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.mobile-contact {
  display: none;
}
@media (max-width: 760px) {
  .has-mobile-contact {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-contact {
    position: fixed;
    inset: auto 0 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.2fr;
    gap: 6px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--color-border-strong);
    background: var(--color-surface-solid);
    box-shadow: 0 -3px 18px rgb(0 0 0 / 10%);
  }
  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
  }
  .mobile-contact .mobile-contact__offer {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-inverse);
  }
  body:has(form:focus-within) .mobile-contact {
    display: none;
  }
}
