@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700&display=swap");

:root {
  --bg: #f4f6fb;
  --bg-strong: #e9edf6;
  --surface: #ffffff;
  --surface-alt: #f8faff;
  --surface-dark: #101726;
  --text: #111827;
  --muted: #667085;
  --line: #e5eaf2;
  --line-strong: #d8dfeb;
  --brand: #ff6a00;
  --brand-strong: #ff4d00;
  --brand-soft: #fff1e7;
  --landing-ink: #050607;
  --landing-panel: #101317;
  --landing-panel-soft: #161a20;
  --landing-text: #f5f7fa;
  --landing-muted: #9ba3af;
  --landing-line: rgba(255, 255, 255, 0.08);
  --landing-accent: #ccff00;
  --landing-accent-strong: #b8e600;
  --landing-accent-soft: rgba(204, 255, 0, 0.12);
  --info: #2d7bff;
  --info-soft: #eaf2ff;
  --success: #0f9f63;
  --success-soft: #e7fbf1;
  --warning: #d68a00;
  --warning-soft: #fff5db;
  --danger: #e34d59;
  --danger-soft: #ffe8eb;
  --neutral-soft: #f1f4fa;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 30px 74px rgba(15, 23, 42, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(45, 123, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #f7f9fd 0%, #eef2f8 100%);
}

a {
  color: inherit;
}

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

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--space-6) clamp(18px, 4vw, 40px) var(--space-8);
}

.topline {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.82);
}

.topline-inner,
.header-main,
.header-nav,
.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 40px);
  padding-right: clamp(18px, 4vw, 40px);
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.88rem;
}

.topline-copy,
.topline-stats,
.site-nav,
.header-categories,
.example-row,
.chip-row,
.attribute-row,
.trust-row,
.offer-meta,
.empty-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.topline-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(216, 223, 235, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  padding-top: 16px;
  padding-bottom: 14px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  min-width: 0;
}

.brandmark-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.28);
}

.brandmark-copy {
  display: grid;
  gap: 2px;
}

.brandmark-copy strong {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.brandmark-copy span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.header-search,
.header-search-field,
.search-shell,
.search-field,
.filters-form,
.issue-form {
  display: grid;
  gap: var(--space-3);
}

.header-search {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
}

.header-search-field,
.search-field {
  position: relative;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  gap: 6px;
  padding: 10px;
  max-height: min(320px, calc(100dvh - 240px));
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
}

.search-suggestions.is-open {
  display: grid;
}

.header-search-field .search-suggestions,
.search-shell-hero .search-suggestions {
  z-index: 60;
}

.search-shell-hero .search-suggestions {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 23, 0.96);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.search-shell-hero .search-suggestion-item {
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-text);
}

.search-shell-hero .search-suggestion-item:hover,
.search-shell-hero .search-suggestion-item.is-active {
  border-color: rgba(204, 255, 0, 0.22);
  background: rgba(204, 255, 0, 0.1);
  box-shadow: none;
}

.search-shell-hero .search-suggestion-title {
  color: var(--landing-text);
}

.search-shell-hero .search-suggestion-meta {
  color: rgba(255, 255, 255, 0.6);
}

.search-shell-hero .search-suggestion-kind {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.hero-showcase:has(.search-suggestions.is-open) {
  padding-bottom: clamp(180px, 24vw, 250px);
}

.search-suggestion-item {
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.search-suggestion-item:hover,
.search-suggestion-item.is-active {
  transform: none;
  border-color: rgba(255, 106, 0, 0.18);
  background: #fff7f1;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.08);
}

.search-suggestion-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.search-suggestion-title {
  font-weight: 700;
  color: #101726;
}

.search-suggestion-meta {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion-kind {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3ff;
  color: #40639a;
  font-size: 0.76rem;
  font-weight: 700;
}

.header-search-field input,
.search-field input,
.filters-form select,
.filters-form input,
.issue-form select,
.field-inline select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  padding: 13px 16px 13px 46px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.field-inline select {
  padding-left: 16px;
}

.header-search-field input {
  background: #f8fafe;
}

.search-glyph {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 2px solid #8793a9;
  border-radius: 50%;
  pointer-events: none;
}

.search-glyph::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: #8793a9;
  transform: rotate(45deg);
  border-radius: 999px;
}

button,
.primary-link,
.ghost-link,
.secondary-link,
.category-pill,
.nav-link,
.chip,
.hero-badge,
.hero-badge-alt,
.topline-badge,
.badge {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

button,
.primary-link {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
  cursor: pointer;
}

button:hover,
.primary-link:hover,
.ghost-link:hover,
.secondary-link:hover,
.category-pill:hover,
.nav-link:hover,
.chip:hover,
.example-row a:hover,
.product-card:hover {
  transform: translateY(-1px);
}

.ghost-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.ghost-link {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--text);
}

.secondary-link {
  color: var(--info);
}

.header-side {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  padding-top: 0;
  padding-bottom: 12px;
}

.site-nav {
  align-items: center;
}

.header-categories {
  justify-content: flex-end;
}

.nav-link {
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  color: #344054;
  font-weight: 700;
}

.nav-link.is-active {
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 23, 38, 0.18);
}

.category-pill {
  border-radius: 999px;
  padding: 9px 13px;
  text-decoration: none;
  background: #fff3e8;
  color: #b54708;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero,
.page-shell {
  display: grid;
  gap: var(--space-5);
}

.hero {
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.72fr);
  align-items: stretch;
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top center, rgba(204, 255, 0, 0.08), transparent 20%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(145deg, #040506 0%, #0b0d10 52%, #14181e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 36px 90px rgba(3, 5, 7, 0.28);
}

.hero-showcase {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at top center, rgba(204, 255, 0, 0.14), transparent 18%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(150deg, #090b0d 0%, #0f1216 44%, #181c22 100%);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--landing-line);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-showcase::before {
  inset: auto auto -80px -50px;
  width: 220px;
  height: 220px;
  background: rgba(204, 255, 0, 0.06);
}

.hero-showcase::after {
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
}

.hero h1,
.page-shell h1,
.section-head h2,
.trust-strip h2,
.variant-panel h2,
.empty-state h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.hero h1,
.page-shell h1 {
  margin: 0;
  font-size: clamp(1.75rem, 2.7vw, 2.7rem);
  line-height: 0.98;
  max-width: 10ch;
}

.hero-showcase h1 {
  color: var(--landing-text);
}

.hero-copy,
.results-summary,
.page-shell p,
.store-header p,
.product-header p,
.trust-strip li {
  font-size: 1rem;
  line-height: 1.6;
}

.hero-copy {
  color: var(--landing-muted);
  max-width: 48ch;
  margin: 10px 0 16px;
  font-size: 0.88rem;
}

.hero-badge {
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--landing-text);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 800;
  font-size: 0.74rem;
}

.hero-badge-alt {
  background: rgba(255, 255, 255, 0.04);
}

.trust-strip,
.search-shell,
.filters-panel,
.product-card,
.offer-card,
.interpretation-banner,
.coverage-banner,
.permission-banner,
.guidance-banner,
.empty-state,
.variant-panel {
  background: var(--surface);
  border: 1px solid rgba(229, 234, 242, 0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.trust-strip,
.coverage-banner,
.permission-banner,
.guidance-banner,
.interpretation-banner,
.empty-state,
.variant-panel,
.map-panel,
.offer-card {
  padding: var(--space-5);
}

.policy-shell {
  max-width: 980px;
}

.content-card {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 30px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 223, 235, 0.86);
  box-shadow: var(--shadow-sm);
}

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

.content-card code {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--neutral-soft);
  color: var(--text);
  font-size: 0.9em;
}

.trust-strip {
  display: grid;
  align-content: start;
  gap: var(--space-5);
}

.hero .trust-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  border-color: var(--landing-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-strip-head {
  display: grid;
  gap: 10px;
}

.trust-strip-head .eyebrow {
  color: rgba(204, 255, 0, 0.82);
}

.hero .trust-strip h2 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.hero .trust-strip h2,
.hero .trust-strip p,
.hero .trust-strip strong {
  color: var(--landing-text);
}

.hero .trust-strip p {
  margin: 0;
  color: var(--landing-muted);
}

.trust-benefits {
  display: grid;
  gap: 14px;
}

.trust-benefit-card {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-benefit-card strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.trust-benefit-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.metric-grid-landing .metric-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}

.metric-grid-landing .metric-card strong {
  color: var(--landing-text);
}

.metric-grid-landing .metric-card span {
  color: var(--landing-muted);
}

.metric-card {
  display: grid;
  gap: 4px;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8faff 0%, #f1f5fb 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.metric-card strong {
  font-size: 1.45rem;
  line-height: 1;
}

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

.search-shell {
  padding: var(--space-4);
  gap: var(--space-4);
}

.search-shell-hero {
  margin-bottom: 30px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.search-shell-hero .search-main {
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-shell-hero .search-label,
.search-shell-hero .search-head-note,
.search-shell-hero .field-inline,
.search-shell-hero .toggle-label {
  color: var(--landing-muted);
  font-size: 0.88rem;
}

.search-shell-hero .search-field input,
.search-shell-hero .field-inline select {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.07);
  color: var(--landing-text);
  box-shadow: none;
}

.search-shell-hero .search-field input {
  min-height: 50px;
  padding-left: 48px;
  border-radius: 999px;
}

.search-shell-hero .search-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-shell-hero .search-glyph,
.search-shell-hero .search-glyph::after {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.5);
}

.search-shell-hero .search-glyph {
  background: transparent;
}

.search-shell-hero .toggle-inline-map {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.search-shell-hero .toggle-visual {
  background: rgba(255, 255, 255, 0.18);
}

.search-shell-hero .toggle-inline-map input:checked + .toggle-visual {
  background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-strong) 100%);
}

.search-shell-hero .toggle-inline-map input:checked + .toggle-visual .toggle-knob {
  background: #0a0a0a;
}

.search-shell-hero .search-submit {
  min-width: 152px;
  min-height: 50px;
  padding-inline: 18px;
  border-radius: 999px;
  color: #091004;
  background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-strong) 100%);
  box-shadow: 0 14px 30px rgba(184, 230, 0, 0.24);
}

.search-shell-hero .search-submit:hover {
  background: linear-gradient(135deg, #d8ff4d 0%, var(--landing-accent) 100%);
}

.search-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
}

.search-label,
.eyebrow {
  font-size: 0.84rem;
  line-height: 1.3;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.search-head-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-showcase .example-row {
  margin-top: 8px;
}

.hero-showcase .example-row a {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.search-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
}

.search-meta,
.filter-actions,
.content-split,
.product-card-head,
.inline-offer,
.offer-price-row,
.offer-store-row,
.section-head,
.store-header,
.product-header {
  display: flex;
  gap: var(--space-3);
  justify-content: space-between;
  align-items: flex-start;
}

.field-inline {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.toggle-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.toggle-inline input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.toggle-inline-map {
  position: relative;
  min-height: 48px;
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 223, 235, 0.92);
  box-shadow: var(--shadow-sm);
}

.toggle-inline-map input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.toggle-visual {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 46px;
  height: 28px;
  padding: 3px;
  border-radius: 999px;
  background: #d6deeb;
  transition: background 0.18s ease;
}

.toggle-knob {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.16);
  transition: transform 0.18s ease;
}

.toggle-label {
  font-weight: 700;
}

.toggle-inline-map input:checked + .toggle-visual {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
}

.toggle-inline-map input:checked + .toggle-visual .toggle-knob {
  transform: translateX(18px);
}

.toggle-inline-map input:focus-visible + .toggle-visual {
  outline: 3px solid var(--info);
  outline-offset: 2px;
}

.example-row a,
.empty-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.page-shell {
  gap: var(--space-4);
}

.page-lead {
  display: grid;
  gap: var(--space-4);
}

.page-lead-search {
  width: min(100%, 980px);
  margin-inline: auto;
}

.results-summary,
.page-shell p,
.store-header p,
.product-header p {
  color: var(--muted);
  margin: 0;
}

.filters-panel {
  padding: var(--space-4);
}

.filters-panel summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.filters-panel summary::-webkit-details-marker {
  display: none;
}

.catalog-layout {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.page-shell-search {
  gap: var(--space-4);
}

.catalog-search-stack {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: var(--space-3);
}

.catalog-search-filters {
  width: min(100%, 980px);
  margin: 0 auto;
}

.catalog-search-filters .filters-panel {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafe 100%);
  box-shadow: var(--shadow-sm);
}

.catalog-search-filters .filters-panel summary {
  font-size: 0.92rem;
}

.catalog-results-centered {
  width: min(100%, 980px);
  margin: 0 auto;
}

.filters-column {
  flex: 0 0 290px;
  position: sticky;
  top: 144px;
  align-self: flex-start;
}

.catalog-results {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  gap: var(--space-3);
}

.filters-panel-sidebar summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filters-panel-sidebar .filters-form {
  grid-template-columns: 1fr;
}

.filters-panel-sidebar .filter-actions {
  grid-column: auto;
}

.filters-form {
  margin-top: var(--space-4);
}

.filters-form label,
.issue-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.content-split {
  align-items: stretch;
}

.results-column {
  flex: 1 1 0;
  width: 100%;
}

.results-grid {
  display: grid;
  gap: var(--space-4);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: var(--space-5);
  padding: var(--space-4);
  text-decoration: none;
}

.product-card-media {
  display: block;
  text-decoration: none;
}

.product-media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6f8ff 0%, #edf1fb 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

.media-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  max-width: none;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.12;
}

.product-card-body {
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.product-card-head {
  gap: var(--space-4);
}

.product-card h2 {
  margin: 6px 0 8px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.product-card h2 a,
.store-link {
  text-decoration: none;
}

.product-summary {
  color: var(--muted);
}

.price-box {
  min-width: 170px;
  display: grid;
  gap: 4px;
  justify-items: end;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7f2 0%, #fff1e6 100%);
  border: 1px solid #ffd9bf;
}

.price-caption,
.price-note {
  color: #a45a1d;
  font-size: 0.82rem;
  font-weight: 700;
}

.price-from,
.price {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
}

.attribute-row {
  gap: 10px;
}

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

.badge,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.chip {
  background: var(--neutral-soft);
  color: var(--text);
  border: 1px solid var(--line);
}

.chip-static {
  color: var(--text);
}

.badge-success {
  background: var(--success-soft);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.badge-danger {
  background: var(--danger-soft);
  color: var(--danger);
}

.badge-info {
  background: var(--info-soft);
  color: var(--info);
}

.badge-neutral {
  background: var(--neutral-soft);
  color: #344054;
}

.inline-offer {
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
  border: 1px solid var(--line);
}

.inline-offer-copy,
.offer-price-stack,
.store-info {
  display: grid;
  gap: 4px;
}

.offer-store-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.offer-source-line {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 800;
}

.inline-offer-actions,
.offer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}

.offer-card {
  display: grid;
  gap: var(--space-4);
}

.offer-store-row {
  align-items: center;
}

.offer-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.store-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.store-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.store-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  border: 1px solid rgba(216, 223, 235, 0.96);
  background: #fff;
  box-shadow: var(--shadow-sm);
  object-fit: contain;
  padding: 6px;
}

.store-avatar-sm {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 10px;
  box-shadow: none;
  padding: 4px;
}

.store-link {
  font-size: 1.1rem;
  font-weight: 800;
}

.issue-form {
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.offer-store-group {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5);
  margin-block: var(--space-4);
  background: var(--surface);
  border: 1px solid rgba(229, 234, 242, 0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  scroll-margin-top: 110px;
}

.offer-store-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}

.offer-contact-grid {
  flex: 1 1 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: var(--space-3);
}

.offer-contact-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.offer-contact-item a {
  color: var(--info);
  font-weight: 700;
  text-decoration: none;
}

.contact-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 800;
}

.offer-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.offer-list {
  display: grid;
  gap: 22px;
}

.offer-card {
  gap: var(--space-3);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.offer-card-top,
.offer-card-corners {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
}

.offer-variant-note {
  color: var(--muted);
  font-weight: 600;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.offer-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(237, 243, 255, 0.9);
  border: 1px solid var(--line);
}

.purchase-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.purchase-link {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(45, 123, 255, 0.08);
  border: 1px solid rgba(45, 123, 255, 0.18);
  box-shadow: none;
  color: var(--info);
}

.purchase-count {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
  font-weight: 700;
}

.issue-compact {
  margin-left: auto;
  min-width: min(100%, 280px);
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.issue-compact summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: right;
}

.issue-compact summary::-webkit-details-marker {
  display: none;
}

.issue-compact[open] summary {
  margin-bottom: 10px;
}

.issue-form-compact {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  display: grid;
  gap: 10px;
}

.issue-form-compact label {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
}

.issue-form-compact select,
.issue-form-compact button {
  width: 100%;
}

.map-panel {
  width: min(360px, 100%);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcff 0%, #f0f5fe 100%);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 144px;
  min-height: 380px;
}

.map-stage {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(45, 123, 255, 0.06) 0, rgba(45, 123, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(45, 123, 255, 0.06) 0, rgba(45, 123, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #dce8d1 0%, #ebf0d8 30%, #efe7d7 100%);
  background-size: 44px 44px, 44px 44px, auto;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 24%, rgba(45, 123, 255, 0.12), transparent 18%),
    radial-gradient(circle at 68% 72%, rgba(255, 106, 0, 0.12), transparent 20%);
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(16, 23, 38, 0.22);
}

.pin-selected {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
}

.map-caption {
  margin-top: var(--space-3);
  color: var(--muted);
}

.empty-state {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
}

.empty-visual {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff4ea 0%, #ffe7d8 100%);
  border: 1px solid #ffd7c1;
}

.empty-visual span {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-strong);
}

.empty-visual small {
  color: #9b5830;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.empty-copy {
  display: grid;
  gap: var(--space-3);
}

.empty-actions a {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero .example-row a {
  color: #fff;
}

.product-header,
.store-header {
  gap: var(--space-5);
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafe 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.product-hero-visual {
  width: min(280px, 100%);
}

.product-meta,
.store-meta {
  min-width: 220px;
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.section-head {
  align-items: end;
}

.section-head h2 {
  margin: 0;
  font-size: 1.6rem;
}

.variant-panel h2,
.trust-strip h2,
.empty-state h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.coverage-banner,
.permission-banner,
.guidance-banner,
.interpretation-banner {
  display: grid;
  gap: 8px;
}

.coverage-banner {
  background: linear-gradient(180deg, #fffaf0 0%, #fff5de 100%);
}

.permission-banner {
  background: linear-gradient(180deg, #f5f8ff 0%, #edf3ff 100%);
}

.guidance-banner {
  background: linear-gradient(180deg, #fdf6f1 0%, #fff0e7 100%);
}

.interpretation-banner {
  background: linear-gradient(180deg, #f7f9ff 0%, #edf2ff 100%);
}

.site-footer {
  max-width: none;
  margin: 0;
  padding: 0;
  background: #0f1117;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 40px) 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.footer-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

@media (max-width: 1200px) {
  .header-main {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .header-side {
    justify-items: start;
    text-align: left;
  }

  .header-nav,
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .content-split,
  .catalog-layout,
  .product-header,
  .store-header {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .filters-column {
    position: static;
    width: 100%;
    flex-basis: auto;
  }

  .filters-panel-sidebar .filters-form {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .filters-panel-sidebar .filter-actions {
    grid-column: 1 / -1;
  }

  .map-panel {
    position: static;
    width: 100%;
  }
}

@media (max-width: 920px) {
  main {
    padding-top: var(--space-5);
  }

  .topline-inner,
  .search-head,
  .search-meta,
  .product-card,
  .product-card-head,
  .inline-offer,
  .offer-price-row,
  .offer-store-row,
  .offer-store-head,
  .offer-card-top,
  .offer-card-corners,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-identity {
    align-items: flex-start;
  }

  .topline-stats {
    display: none;
  }

  .search-main,
  .header-search {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-contact-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .issue-compact,
  .purchase-form,
  .offer-card-top .primary-link {
    width: 100%;
  }

  .price-box,
  .product-meta,
  .store-meta {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .empty-state {
    grid-template-columns: 1fr;
  }

  .empty-visual {
    width: 100%;
  }

  .hero h1,
  .page-shell h1 {
    max-width: 100%;
  }
}

.hero-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-4);
}

.hero-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
}

.hero-showcase .example-row a:hover,
.hero-showcase .hero-link-row a:hover {
  border-color: rgba(204, 255, 0, 0.5);
  color: var(--landing-accent);
  background: rgba(204, 255, 0, 0.08);
}

.showcase-section {
  display: grid;
  gap: var(--space-4);
}

.merchant-showcase-summary {
  cursor: pointer;
  list-style: none;
}

.merchant-showcase-summary::-webkit-details-marker {
  display: none;
}

.merchant-showcase-chevron {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 8px;
  border-right: 2px solid #6b7c95;
  border-bottom: 2px solid #6b7c95;
  transform: rotate(45deg);
  transition: transform 160ms ease, border-color 160ms ease;
}

.merchant-showcase[open] .merchant-showcase-chevron {
  transform: rotate(225deg);
}

.merchant-showcase-summary:hover .merchant-showcase-chevron {
  border-color: #24324a;
}

.category-showcase,
.merchant-strip {
  display: grid;
  gap: var(--space-4);
}

.category-showcase {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.category-tile,
.merchant-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 234, 242, 0.98);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.category-tile {
  display: grid;
  text-decoration: none;
  background: #fff;
  border-color: rgba(216, 223, 235, 0.92);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.category-tile:hover {
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.category-tile .product-media {
  min-height: 120px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 18px 8px;
  background:
    radial-gradient(circle at top center, rgba(16, 23, 38, 0.04), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  border-bottom: 1px solid rgba(229, 234, 242, 0.96);
}

.category-tile-copy {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
}

.category-tile-eyebrow {
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8797;
  font-weight: 800;
}

.category-tile-copy strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.category-tile-stat,
.merchant-card p {
  color: var(--muted);
}

.merchant-strip {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.merchant-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

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

.merchant-card strong {
  font-size: 1.02rem;
}

.featured-grid .product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
}

.product-card {
  border-color: rgba(220, 228, 240, 0.95);
}

.product-card:hover {
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.product-card-media {
  position: relative;
}

.product-media {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 26%),
    linear-gradient(180deg, #f9fbff 0%, #edf2fb 100%);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 24px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  filter: blur(10px);
  z-index: 0;
}

.product-media img {
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease;
}

.product-card:hover .product-media img,
.category-tile:hover .product-media img {
  transform: scale(1.03);
}

.price-box {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.site-footer-inner {
  padding-top: 22px;
  padding-bottom: 30px;
}

.topline-copy {
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  text-align: center;
  gap: 10px;
  min-width: 0;
  white-space: normal;
}

.topline-badge {
  min-width: 92px;
  justify-content: center;
}

.page-shell {
  gap: var(--space-3);
}

.page-lead.page-lead-compact {
  gap: var(--space-3);
}

.page-lead-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.page-title-inline {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.page-title-inline .eyebrow {
  margin: 0;
}

.page-lead-compact h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.02;
}

.page-results-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 223, 235, 0.92);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.meta-pill strong {
  color: var(--text);
  font-size: 0.96rem;
}

.meta-pill-muted {
  background: #f8fbff;
}

.page-lead-rail {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.lead-info-card {
  min-width: 198px;
  max-width: 320px;
  flex: 0 0 auto;
  position: relative;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(216, 223, 235, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.lead-info-card summary {
  list-style: none;
  cursor: pointer;
}

.lead-info-card summary::-webkit-details-marker {
  display: none;
}

.lead-info-card strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.3;
}

.lead-info-card span {
  display: none;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lead-info-card[open] span,
.lead-info-card:hover span,
.lead-info-card:focus-within span {
  display: block;
}

.lead-info-info {
  background: #f5f8ff;
  border-color: #dbe7ff;
}

.lead-info-warning {
  background: #fff8e8;
  border-color: #ffe1a4;
}

.results-grid-search {
  gap: var(--space-4);
}

.result-slot.is-hidden {
  display: none;
}

.results-loader {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 20px 0 4px;
}

.results-loader-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.results-sentinel {
  width: 100%;
  height: 1px;
}

.product-media {
  min-height: 220px;
  padding: 14px;
}

.product-media-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 190px;
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 255, 0.9) 100%);
  overflow: hidden;
}

.category-tile .product-media-frame {
  min-height: 128px;
  border-radius: 18px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px 18px 14px;
  transform-origin: center center;
}

.category-tile .product-media img {
  padding: 22px 24px 12px;
}

.product-media::after {
  inset: auto 22px 8px 22px;
}

.map-panel {
  min-width: min(380px, 100%);
}

.map-stage {
  position: relative;
  min-height: 380px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3fb 0%, #dde8f7 100%);
}

.editorial-showcase,
.editorial-page-shell,
.story-page,
.story-layout,
.story-main,
.story-sidebar,
.story-section,
.story-sources {
  display: grid;
  gap: var(--space-4);
}

.editorial-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
}

.editorial-grid-index {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.editorial-stack {
  display: grid;
  gap: var(--space-4);
}

.editorial-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(220, 228, 240, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.editorial-card-featured {
  min-height: 100%;
}

.editorial-card-media {
  display: block;
  text-decoration: none;
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fd 100%);
}

.editorial-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.editorial-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.editorial-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.editorial-card h3,
.story-section h2 {
  margin: 0;
}

.editorial-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.editorial-card h3 a {
  text-decoration: none;
}

.editorial-card p,
.story-section p,
.story-sidebar-card span,
.story-callout span,
.story-source-card span,
.story-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.editorial-card-featured h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.story-page {
  gap: var(--space-5);
}

.story-hero {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.75), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
  border: 1px solid rgba(220, 228, 240, 0.96);
  box-shadow: var(--shadow-md);
}

.story-hero-copy,
.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.story-hero-copy {
  flex-direction: column;
  align-items: flex-start;
}

.story-hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.story-hero-media img,
.story-sidebar-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.story-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: start;
}

.story-main {
  gap: var(--space-5);
}

.story-callout,
.story-sidebar-card,
.story-section,
.story-source-card {
  border-radius: 22px;
  border: 1px solid rgba(220, 228, 240, 0.96);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.story-callout,
.story-sidebar-card,
.story-section {
  padding: 20px 22px;
}

.story-callout {
  display: grid;
  gap: 10px;
  background: #fff7ed;
  border-color: rgba(255, 178, 102, 0.45);
}

.story-sidebar {
  position: sticky;
  top: 118px;
}

.story-sidebar-card {
  display: grid;
  gap: 14px;
}

.story-bullets {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.65;
}

.story-bullets li + li {
  margin-top: 8px;
}

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

.story-source-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
}

.story-source-card strong {
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .editorial-grid,
  .story-hero,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .editorial-grid-index {
    grid-template-columns: 1fr;
  }

  .editorial-card-body,
  .story-callout,
  .story-sidebar-card,
  .story-section {
    padding: 18px;
  }
}

.map-placeholder {
  position: absolute;
  inset: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.map-stage[data-map-ready="1"] .map-placeholder {
  display: none;
}

.map-marker {
  min-width: 120px;
  border: 0;
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(16, 23, 38, 0.92);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.map-marker strong,
.map-marker span {
  display: block;
}

.map-marker strong {
  font-size: 0.82rem;
  line-height: 1.2;
}

.map-marker span {
  margin-top: 3px;
  font-size: 0.72rem;
  line-height: 1.25;
  opacity: 0.82;
}

.map-marker.is-selected {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
}

@media (max-width: 960px) {
  .topline-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .topline-stats {
    justify-content: center;
  }

  .page-lead-row,
  .page-title-inline {
    align-items: flex-start;
  }

  .page-results-meta {
    width: 100%;
  }

  .map-panel {
    min-width: 0;
  }
}

.header-main {
  grid-template-columns: auto minmax(0, 1fr);
}

.results-toolbar {
  display: grid;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(220, 228, 240, 0.96);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.results-sort-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.toolbar-select-label {
  display: grid;
  gap: 6px;
  min-width: min(280px, 100%);
  color: var(--text);
  font-weight: 700;
}

.toolbar-select-label span {
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.toolbar-select-label select {
  width: 100%;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  font: inherit;
}

.results-quickfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chip-quick {
  background: rgba(255, 255, 255, 0.92);
}

.chip-quick.is-active {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: #fff;
  box-shadow: 0 12px 24px rgba(16, 23, 38, 0.14);
}

.toolbar-reset {
  min-height: 36px;
  padding: 8px 14px;
}

.filters-panel {
  padding: 14px 18px;
}

.filters-form {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: end;
}

.filters-form .filter-actions {
  grid-column: 1 / -1;
}

.results-grid-search {
  gap: 16px;
}

.product-card {
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.product-card .product-media {
  min-height: 0;
  padding: 12px;
}

.product-card .product-media-frame {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
}

.product-card .product-media img {
  padding: 14px;
}

.product-card-body {
  gap: 12px;
}

.product-card h2 {
  margin: 4px 0 6px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.product-summary {
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-box {
  min-width: 136px;
  padding: 14px;
  border-radius: 18px;
}

.price-from {
  font-size: clamp(1.35rem, 2vw, 1.55rem);
}

.product-card .chip,
.product-card .badge {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.84rem;
}

.inline-offer {
  gap: 12px;
  padding: 14px 16px;
}

.inline-offer-copy strong {
  font-size: 1.18rem;
  line-height: 1.2;
}

.product-shell .product-header {
  align-items: flex-start;
}

.product-shell .product-hero-visual {
  width: min(220px, 100%);
  flex: 0 0 220px;
}

.product-shell .product-media {
  min-height: 0;
  padding: 12px;
}

.product-shell .product-media-frame {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.product-shell .product-media img {
  padding: 18px 14px 12px;
}

@media (max-width: 1200px) {
  .header-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .results-sort-form {
    align-items: stretch;
  }

  .product-card {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .product-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-box {
    width: auto;
    min-width: 0;
    justify-items: start;
    text-align: left;
  }

  .inline-offer {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-offer-actions {
    width: 100%;
    justify-content: stretch;
  }

  .inline-offer-actions a {
    flex: 1 1 160px;
  }

  .search-shell-hero .search-main {
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .site-nav,
  .header-categories,
  .results-quickfilters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .product-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .product-card .product-media {
    padding: 10px;
    border-radius: 18px;
  }

  .product-card .product-media-frame {
    border-radius: 14px;
  }

  .product-card h2 {
    font-size: 1.05rem;
  }

  .product-summary {
    font-size: 0.9rem;
  }

  .media-tag {
    top: 10px;
    left: 10px;
    min-height: 28px;
    padding: 6px 9px;
    font-size: 0.68rem;
    max-width: calc(100% - 20px);
  }

  .price-box {
    padding: 10px 12px;
  }

  .price-from {
    font-size: 1.18rem;
  }

  .product-card .attribute-row,
  .product-card .trust-row {
    gap: 6px;
  }

  .product-card .chip,
  .product-card .badge {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .offer-source-line {
    font-size: 0.72rem;
  }

  .product-shell .product-hero-visual {
    width: min(180px, 100%);
    flex-basis: 180px;
  }

  .product-shell .product-media-frame {
    aspect-ratio: 1 / 1.2;
  }

  .search-shell-hero .search-main {
    grid-template-columns: 1fr;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .search-shell-hero .search-field input,
  .search-shell-hero .search-submit {
    min-width: 0;
    width: 100%;
    border-radius: 20px;
  }

  .search-shell-hero .search-submit {
    min-height: 54px;
  }

  .store-avatar {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .store-avatar-sm {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-radius: 8px;
  }

  .category-pill {
    padding: 8px 12px;
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .results-toolbar {
    padding: 12px 14px;
  }

  .toolbar-select-label {
    min-width: 0;
  }

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

  .product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .inline-offer-actions .ghost-link,
  .inline-offer-actions .primary-link {
    width: 100%;
  }
}

.header-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.header-account .ghost-link,
.header-account .primary-link {
  white-space: nowrap;
}

.header-account-authenticated {
  gap: 12px;
}

.header-account-cta {
  box-shadow: 0 18px 36px rgba(255, 110, 28, 0.18);
}

.account-chip {
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 11px 14px;
  border-radius: 18px;
  border: 1px solid rgba(28, 55, 90, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #183153;
  text-decoration: none;
}

.account-chip strong {
  font-size: 0.96rem;
}

.account-chip span {
  font-size: 0.8rem;
  color: #607089;
}

.logout-form {
  margin: 0;
}

.account-shell,
.consultant-shell {
  display: grid;
  gap: 20px;
}

.auth-grid,
.account-grid,
.consultant-layout {
  display: grid;
  gap: 20px;
}

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

.consultant-layout {
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  align-items: start;
}

.auth-card,
.account-card,
.test-accounts-card,
.review-summary-card,
.auth-inline-card {
  border-radius: 26px;
  border: 1px solid rgba(28, 55, 90, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(33, 53, 85, 0.08);
  padding: 24px;
}

.auth-card.is-active {
  border-color: rgba(255, 110, 28, 0.28);
  box-shadow: 0 22px 48px rgba(255, 110, 28, 0.12);
}

.auth-form,
.review-form,
.consultant-form {
  display: grid;
  gap: 14px;
}

.auth-form label,
.review-form label,
.consultant-form label {
  display: grid;
  gap: 8px;
  color: #4b5b75;
  font-size: 0.95rem;
  font-weight: 600;
}

.auth-form input,
.review-form input,
.review-form select,
.review-form textarea,
.consultant-form textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(31, 50, 81, 0.14);
  background: #f8fbff;
  color: #11284a;
  padding: 12px 14px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.auth-form input:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus,
.consultant-form textarea:focus {
  outline: none;
  border-color: rgba(255, 110, 28, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 110, 28, 0.12);
  background: #fff;
}

.review-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.review-form-comment {
  grid-column: 1 / -1;
}

.review-form textarea,
.consultant-form textarea {
  min-height: 132px;
  resize: vertical;
}

.review-form .primary-link,
.auth-form .primary-link,
.consultant-form .primary-link {
  justify-self: start;
}

.test-account-grid,
.favorites-list,
.review-list,
.consultant-prompt-list {
  display: grid;
  gap: 12px;
}

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

.test-account-item,
.favorite-item,
.review-card {
  border-radius: 20px;
  border: 1px solid rgba(31, 50, 81, 0.1);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(255, 255, 255, 0.98));
  padding: 18px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.test-account-item {
  display: grid;
  gap: 4px;
}

.test-account-item strong,
.favorite-item strong,
.review-card strong {
  color: #163255;
}

.test-account-item span,
.favorite-item p,
.review-card p {
  margin: 0;
  color: #607089;
}

.favorite-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.favorite-item a {
  color: #17375d;
}

.favorite-inline-form,
.favorite-form,
.purchase-form {
  margin: 0;
}

.favorite-inline-form .ghost-link,
.favorite-form .ghost-link {
  white-space: nowrap;
}

.favorite-link.is-active {
  border-color: rgba(255, 110, 28, 0.22);
  background: rgba(255, 241, 232, 0.94);
  color: #d65c11;
}

.reviews-section {
  display: grid;
  gap: 18px;
}

.reviews-section .section-head {
  align-items: start;
  gap: 16px;
}

.review-summary-card {
  display: grid;
  gap: 6px;
  min-width: min(290px, 100%);
  padding: 20px 22px;
}

.review-summary-card strong {
  font-size: 1.18rem;
  color: #17375d;
}

.review-summary-card span {
  color: #607089;
}

.review-card {
  display: grid;
  gap: 10px;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-card-head span {
  color: #5b6d87;
  font-size: 0.9rem;
}

.auth-inline-card {
  display: grid;
  gap: 10px;
}

.auth-inline-card span {
  color: #607089;
}

.consultant-sidecard {
  position: sticky;
  top: 24px;
}

.consultant-prompt-list form {
  margin: 0;
}

.consultant-prompt-list .ghost-link {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  white-space: normal;
}

.consultant-card {
  display: grid;
  gap: 16px;
  min-height: 620px;
}

.consultant-thread {
  display: grid;
  align-content: start;
  gap: 12px;
  max-height: 560px;
  overflow: auto;
  padding-right: 6px;
}

.chat-bubble {
  display: grid;
  gap: 8px;
  max-width: min(700px, 100%);
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 50, 81, 0.12);
  box-shadow: 0 10px 24px rgba(33, 53, 85, 0.06);
}

.chat-bubble strong,
.chat-bubble p {
  margin: 0;
}

.chat-bubble p {
  color: #304760;
  line-height: 1.6;
}

.chat-bubble-assistant {
  margin-right: auto;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.chat-bubble-user {
  margin-left: auto;
  background: linear-gradient(180deg, rgba(255, 241, 232, 0.96), rgba(255, 255, 255, 0.98));
  border-color: rgba(255, 110, 28, 0.18);
}

@media (max-width: 1200px) {
  .consultant-layout {
    grid-template-columns: 1fr;
  }

  .consultant-sidecard {
    position: static;
  }
}

@media (max-width: 920px) {
  .auth-grid,
  .account-grid,
  .review-form {
    grid-template-columns: 1fr;
  }

  .header-account {
    justify-content: flex-start;
  }

  .favorite-item,
  .review-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .favorite-item .ghost-link {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .header-account {
    width: 100%;
  }

  .header-account-authenticated {
    align-items: stretch;
  }

  .header-account-authenticated .ghost-link,
  .header-account-authenticated .primary-link,
  .logout-form,
  .logout-form .ghost-link,
  .account-chip {
    width: 100%;
  }

  .auth-card,
  .account-card,
  .test-accounts-card,
  .review-summary-card,
  .auth-inline-card {
    padding: 18px;
    border-radius: 22px;
  }

  .favorite-item,
  .review-card,
  .test-account-item,
  .chat-bubble {
    padding: 16px;
    border-radius: 18px;
  }

  .consultant-card {
    min-height: 0;
  }

  .consultant-thread {
    max-height: 460px;
  }
}

@media (max-width: 560px) {
  .account-chip {
    min-width: 0;
  }

  .auth-form input,
  .review-form input,
  .review-form select,
  .review-form textarea,
  .consultant-form textarea {
    min-height: 46px;
    padding: 11px 12px;
  }

  .review-form textarea,
  .consultant-form textarea {
    min-height: 120px;
  }

  .consultant-thread {
    max-height: 400px;
  }
}

.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;
}

.topline-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.topline-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.topline-account .ghost-link,
.topline-account .primary-link,
.header-utility .ghost-link {
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.topline-account .primary-link {
  box-shadow: none;
}

.account-chip-compact {
  min-width: 0;
  padding: 9px 14px;
  border-radius: 999px;
}

.site-header .header-main {
  grid-template-columns: auto minmax(280px, 560px) auto;
  justify-content: space-between;
  gap: 18px;
}

.header-search-compact {
  width: min(100%, 560px);
  justify-self: center;
}

.header-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.header-utility-guest {
  display: none;
}

.route-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding: 96px 20px 20px;
  background: rgba(244, 246, 251, 0.42);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.route-loader.is-visible {
  opacity: 1;
  visibility: visible;
}

.route-loader-card {
  display: grid;
  gap: 14px;
  width: min(100%, 440px);
  padding: 18px 20px 20px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.96);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.route-loader-track {
  position: relative;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #ebeff7;
}

.route-loader-bar {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  animation: route-loader-progress 1.1s ease-in-out infinite;
}

.route-loader-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7f9fd 0%, #edf2fb 100%);
  border: 1px solid rgba(216, 223, 235, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.route-tool-dumbbell::before,
.route-tool-dumbbell::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 8px;
  border-radius: 4px;
  background: #263246;
}

.route-tool-dumbbell::before {
  left: 9px;
  box-shadow: 4px 0 0 #263246, 20px 0 0 #263246, 24px 0 0 #263246;
}

.route-tool-dumbbell::after {
  left: 17px;
  top: 12px;
  bottom: 12px;
  width: 14px;
  border-radius: 999px;
  background: #5a6780;
}

.route-tool-plate::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #31415b;
  box-shadow: inset 0 0 0 3px #d9e1ee;
}

.route-tool-shaker::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 18px;
  border-radius: 6px 6px 8px 8px;
  background: linear-gradient(180deg, #ff8c3a 0%, #ff6a00 100%);
}

.route-tool-shaker::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #24334a;
}

.route-loader-title {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.route-loader-copy {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

@keyframes route-loader-progress {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(240%);
  }
}

@media (max-width: 1200px) {
  .site-header .header-main {
    grid-template-columns: auto 1fr;
  }

  .header-search-compact {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .header-utility {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .topline-right,
  .topline-account,
  .header-utility {
    width: 100%;
    justify-content: flex-start;
  }

  .site-header .header-main {
    grid-template-columns: 1fr;
  }

  .header-utility .ghost-link,
  .header-utility .logout-form,
  .header-utility .logout-form .ghost-link {
    flex: 1 1 140px;
  }

  .route-loader {
    padding-top: 82px;
  }

  .route-loader-card {
    border-radius: 20px;
    padding: 16px;
  }
}

.site-header {
  padding-bottom: 0;
  background: linear-gradient(180deg, #0b1018 0%, #141b28 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(6, 10, 18, 0.22);
}

.site-header-top,
.site-header-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 40px);
  padding-right: clamp(18px, 4vw, 40px);
}

.site-header-top {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 223, 235, 0.92);
}

.site-header-center {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.site-header-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.site-header-location,
.site-header-stats,
.site-header-actions,
.support-empty-actions,
.support-landing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header-summary {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.site-header-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f7f9fd;
  border: 1px solid rgba(216, 223, 235, 0.92);
  color: #455468;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-header-actions {
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-header-actions .ghost-link,
.site-header-actions .primary-link {
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-header-actions .primary-link {
  box-shadow: none;
}

.site-header .brandmark-copy strong {
  color: #f7f9fe;
}

.site-header .brandmark-copy span:last-child {
  color: rgba(217, 225, 238, 0.72);
}

.site-header .header-search {
  min-width: 0;
}

.site-header .header-search-field input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.site-header .header-search-field input::placeholder {
  color: rgba(219, 226, 238, 0.6);
}

.site-header .header-search-field input:focus {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.site-header .search-glyph {
  border-color: rgba(221, 228, 240, 0.7);
}

.site-header .search-glyph::after {
  background: rgba(221, 228, 240, 0.7);
}

.site-header .ghost-link,
.site-header .account-chip,
.site-header .site-nav-top .nav-link {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  color: #eef3fb;
  box-shadow: none;
}

.site-header .ghost-link:hover,
.site-header .account-chip:hover,
.site-header .site-nav-top .nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header .account-chip span {
  color: rgba(221, 228, 240, 0.72);
}

.site-header .site-nav-top {
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.site-header .site-nav-top .nav-link {
  white-space: nowrap;
}

.site-header .site-nav-top::-webkit-scrollbar {
  display: none;
}

.site-header .site-nav-top .nav-link.is-active {
  background: #05070b;
  color: #fff;
  border-color: #05070b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-nav-group {
  display: grid;
  gap: 10px;
}

.site-nav {
  align-items: center;
}

.header-categories {
  justify-content: flex-start;
}

.header-search-compact {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.support-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.support-launcher {
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #0d1522 0%, #162131 52%, #1c2940 100%);
  color: #f3f6fb;
  box-shadow: 0 26px 44px rgba(8, 12, 21, 0.32);
  transition: transform 280ms ease, opacity 280ms ease, visibility 280ms ease;
}

.support-launcher-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.support-launcher-copy strong {
  font-size: 0.96rem;
}

.support-launcher-copy span:last-child {
  font-size: 0.8rem;
  color: rgba(224, 231, 242, 0.72);
}

.support-widget.is-open .support-launcher {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.96) translateY(8px);
}

.guest-auth-nudge {
  position: fixed;
  top: auto;
  bottom: 24px;
  left: 16px;
  z-index: 120;
  display: grid;
  gap: 12px;
  width: min(320px, calc(100vw - 32px));
  padding: 16px 16px 14px;
  border-radius: 24px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  isolation: isolate;
}

.guest-auth-nudge[hidden] {
  display: none !important;
}

.guest-auth-nudge strong {
  padding-right: 40px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.guest-auth-nudge p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.guest-auth-nudge-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  pointer-events: auto;
}

.guest-auth-nudge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guest-auth-nudge-actions .ghost-link,
.guest-auth-nudge-actions .primary-link {
  flex: 1 1 132px;
  justify-content: center;
}

.support-widget.is-open .support-launcher-copy span:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.support-panel {
  display: none;
  position: fixed;
  inset: 16px;
  margin: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  padding: 18px;
  position: fixed;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fbfdff;
  box-shadow: 0 36px 80px rgba(8, 12, 21, 0.34);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.support-panel::before {
  content: none;
}

.support-panel > * {
  position: relative;
  z-index: 1;
}

.support-widget.is-open .support-panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  gap: 0;
}

.support-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 154, 84, 0.18), transparent 34%),
    linear-gradient(135deg, #0f1724 0%, #172235 100%);
}

.support-panel-copyblock {
  display: grid;
  gap: 4px;
}

.support-panel-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-panel-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
}

.support-panel-copy {
  color: rgba(225, 231, 242, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: 30ch;
}

.support-panel-copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-close {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.support-empty,
.support-landing-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(31, 50, 81, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(33, 53, 85, 0.1);
}

.support-banner-slot {
  display: grid;
  gap: 12px;
  padding: 0 16px;
}

.support-banner-slot:empty {
  display: none;
}

.support-empty p,
.support-landing-card p {
  margin: 0;
  color: #607089;
}

.support-prompt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.support-thread-prompts:empty {
  display: none;
}

.support-welcome-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 191, 128, 0.42);
  background: linear-gradient(135deg, rgba(255, 244, 233, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 28px rgba(255, 106, 0, 0.1);
}

.support-welcome-card strong {
  color: #132540;
}

.support-welcome-card span {
  color: #627189;
  font-size: 0.9rem;
  line-height: 1.5;
}

.support-prompt-form {
  margin: 0;
}

.support-prompt-form .ghost-link,
.support-prompt-chip {
  min-height: 36px;
  padding: 10px 14px;
  border-radius: 16px;
  justify-content: flex-start;
  text-align: left;
  white-space: normal;
  box-shadow: 0 10px 24px rgba(20, 31, 50, 0.08);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 223, 235, 0.92);
  color: #24324a;
}

.support-thread {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: 12px;
  min-height: 0;
  max-height: none;
  overflow: auto;
  margin: 12px 16px;
  padding: 14px;
  padding-right: 10px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 32px rgba(24, 38, 59, 0.08);
}

.support-thread .chat-bubble {
  max-width: min(860px, 100%);
}

.consultant-thread-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
}

.chat-bubble-prompts {
  gap: 14px;
}

.chat-bubble-prompts .support-prompt-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chat-link-card-list {
  display: grid;
  gap: 10px;
}

.chat-link-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(216, 223, 235, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.chat-link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 110, 28, 0.24);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.chat-link-card-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3fb 0%, #f8fbff 100%);
  border: 1px solid rgba(223, 230, 240, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.chat-link-card-media img,
.chat-link-card-media .store-avatar {
  width: 100%;
  height: 100%;
}

.chat-link-card-media img {
  object-fit: cover;
}

.chat-link-card-media-search {
  font-size: 1.6rem;
  color: #ff6f1a;
}

.chat-link-card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.chat-link-card-copy strong,
.chat-link-card-copy span,
.chat-link-card-copy small {
  display: block;
  min-width: 0;
}

.chat-link-card-copy strong {
  color: #132540;
  line-height: 1.35;
}

.chat-link-card-copy span {
  color: #344861;
  line-height: 1.45;
}

.chat-link-card-copy small {
  color: #6b7c95;
  line-height: 1.35;
}

.chat-bubble.is-pending {
  opacity: 0.92;
}

.support-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(216, 223, 235, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.98));
  box-shadow: 0 18px 40px rgba(28, 41, 61, 0.08);
}

.support-form label {
  display: grid;
  gap: 8px;
}

.support-form label > span:not(.visually-hidden) {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #53627a;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid #dce4ef;
  border-radius: 18px;
  background: #fff;
  color: #132540;
  font: inherit;
  padding: 14px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 18px rgba(15, 23, 42, 0.04);
}

.support-form input {
  min-height: 52px;
}

.support-form textarea {
  min-height: 118px;
  resize: vertical;
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.support-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.support-form-note {
  margin: 0;
  color: #66768c;
  font-size: 0.83rem;
  line-height: 1.45;
}

.support-reset-form {
  margin: 0;
}

.support-composer-slot,
.support-reset-slot,
.support-guest-flow {
  display: grid;
  gap: 12px;
}

.support-composer-slot,
.support-reset-slot {
  padding: 0 16px 16px;
}

.support-reset-form .ghost-link {
  min-height: 38px;
  border-radius: 999px;
}

.support-guest-note {
  margin: 0;
  padding-inline: 4px;
  color: #66768c;
  font-size: 0.83rem;
  line-height: 1.45;
}

.auth-inline-card-register {
  gap: 14px;
  border-color: rgba(255, 191, 128, 0.42);
  background: linear-gradient(135deg, rgba(255, 244, 233, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.12);
}

.support-form-register {
  border-color: rgba(255, 191, 128, 0.42);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.12);
}

.support-register-summary {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 191, 128, 0.48);
  background: linear-gradient(135deg, rgba(255, 244, 233, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.1);
}

.support-register-summary strong {
  color: #132540;
}

.support-register-summary p {
  margin: 0;
  color: #617189;
  line-height: 1.5;
}

.support-upgrade-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(216, 223, 235, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.98));
  box-shadow: 0 18px 40px rgba(28, 41, 61, 0.08);
}

.support-upgrade-copy {
  display: grid;
  gap: 6px;
}

.support-upgrade-copy strong {
  color: #132540;
}

.support-upgrade-copy span {
  color: #617189;
  line-height: 1.5;
}

.support-upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-upgrade-actions .ghost-link {
  min-height: 42px;
  flex: 1 1 160px;
}

.auth-inline-copy {
  display: grid;
  gap: 6px;
}

.auth-inline-copy strong {
  color: #132540;
}

.auth-inline-register-form {
  gap: 12px;
}

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

.auth-inline-actions .ghost-link,
.auth-inline-actions .primary-link {
  min-height: 44px;
  flex: 1 1 160px;
}

.support-form-actions-register {
  justify-content: space-between;
}

.support-form-actions-register .ghost-link,
.support-form-actions-register .primary-link {
  flex: 1 1 160px;
  min-height: 46px;
}

.chat-bubble {
  border-radius: 20px;
  border: 1px solid rgba(219, 226, 236, 0.92);
  box-shadow: 0 14px 28px rgba(16, 23, 38, 0.08);
}

.chat-bubble strong {
  color: #132540;
}

.chat-bubble-assistant {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
}

.chat-bubble-user {
  background: linear-gradient(135deg, rgba(255, 239, 227, 0.98), rgba(255, 248, 242, 0.98));
  border-color: rgba(255, 110, 28, 0.18);
}

.support-landing {
  width: min(100%, 760px);
  margin-inline: auto;
}

.support-landing-card h1 {
  margin: 0;
  max-width: 12ch;
}

@media (max-width: 1200px) {
  .site-header-top,
  .site-header-bottom {
    grid-template-columns: 1fr;
  }

  .site-header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .site-header-top,
  .site-header-bottom {
    gap: 14px;
  }

  .site-header-actions,
  .support-empty-actions,
  .support-landing-actions {
    width: 100%;
  }

  .site-header-actions .ghost-link,
  .site-header-actions .primary-link,
  .support-empty-actions .ghost-link,
  .support-empty-actions .primary-link,
  .support-landing-actions .ghost-link,
  .support-landing-actions .primary-link {
    flex: 1 1 140px;
  }

  .support-widget {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-items: stretch;
  }

  .support-panel {
    width: 100%;
    max-height: min(72vh, 640px);
  }

  .support-form-actions {
    flex-wrap: wrap;
  }
}

/* Search marketplace refresh */
.page-shell-search {
  padding-top: 4px;
}

.catalog-search-frame {
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  gap: 22px;
}

.page-lead-search-market {
  width: 100%;
  margin-inline: 0;
  gap: 20px;
}

.catalog-search-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.catalog-search-copy {
  display: grid;
  gap: 10px;
}

.catalog-search-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.catalog-search-copy p:last-child {
  max-width: 70ch;
  font-size: 1rem;
}

.page-shell-search .page-results-meta {
  justify-content: flex-end;
  align-self: start;
}

.page-shell-search .meta-pill-query {
  min-width: 180px;
  align-items: flex-start;
}

.page-shell-search .meta-pill-query strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-shell-search .search-shell {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border: 1px solid #dfe6f0;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.page-shell-search .search-head {
  align-items: baseline;
}

.page-shell-search .search-main {
  gap: 10px;
  padding: 8px;
  border-radius: 28px;
  background: #f7f9fc;
  border: 1px solid #e3e8f0;
}

.page-shell-search .search-field input {
  min-height: 58px;
  border-radius: 20px;
  font-size: 1rem;
  background: #fff;
}

.page-shell-search .search-submit {
  min-width: 160px;
  min-height: 58px;
  border-radius: 20px;
}

.catalog-discovery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 18px;
}

.catalog-discovery-block {
  display: grid;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 28px;
  border: 1px solid #dfe6f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
}

.catalog-discovery-toggle {
  display: block;
}

.catalog-discovery-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.catalog-discovery-summary::-webkit-details-marker {
  display: none;
}

.catalog-discovery-summary:focus-visible {
  border-radius: 18px;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.14);
}

.catalog-discovery-head {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.catalog-discovery-head .eyebrow {
  margin: 0;
}

.catalog-discovery-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-discovery-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a1a 0%, #ff4d00 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(255, 95, 0, 0.22);
}

.catalog-discovery-toggle[open] .cue-open,
.catalog-discovery-toggle:not([open]) .cue-close {
  display: none;
}

.catalog-discovery-body {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

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

.catalog-section-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 22px;
  text-decoration: none;
  background: #f7f9fc;
  border: 1px solid #dfe6f0;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.catalog-section-card strong {
  color: var(--text);
  font-size: 1rem;
}

.catalog-section-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.catalog-section-card:hover {
  transform: translateY(-1px);
  border-color: #ffcfad;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.08);
}

.catalog-section-card.is-active {
  background: linear-gradient(180deg, #fff7f1 0%, #fff2e7 100%);
  border-color: #ffc99b;
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.1);
}

.catalog-source-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-source-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 18px;
  text-decoration: none;
  background: #f8fbff;
  border: 1px solid #dfe6f0;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.catalog-source-chip:hover {
  transform: translateY(-1px);
  border-color: #c7d3e4;
  background: #fff;
}

.catalog-source-chip span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.catalog-source-chip strong,
.catalog-source-chip small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-source-chip strong {
  color: var(--text);
  font-size: 0.92rem;
}

.catalog-source-chip small {
  color: var(--muted);
  font-size: 0.79rem;
}

.catalog-layout-market {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filters-column-market {
  position: sticky;
  top: 126px;
}

.page-shell-search .filters-panel-sidebar {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #dfe6f0;
  box-shadow: var(--shadow-sm);
}

.page-shell-search .filters-panel-sidebar summary {
  font-size: 1rem;
  font-weight: 900;
}

.page-shell-search .filters-panel-sidebar .filters-form {
  gap: 14px;
}

.page-shell-search .filters-panel-sidebar .filter-actions {
  margin-top: 4px;
}

.catalog-results-market {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.page-shell-search .results-toolbar {
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid #dfe6f0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.page-shell-search .results-sort-form {
  flex: 0 0 auto;
}

.page-shell-search .results-quickfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-shell-search .chip-quick {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f7f9fc;
  border: 1px solid #dfe6f0;
}

.page-shell-search .chip-quick.is-active {
  background: #fff2e7;
  border-color: #ffc99b;
  color: #8a450f;
}

.page-shell-search .results-grid {
  gap: 16px;
}

.page-shell-search .product-card {
  grid-template-columns: minmax(210px, 230px) minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #dfe6f0;
  box-shadow: var(--shadow-sm);
}

.page-shell-search .product-card:hover {
  transform: translateY(-1px);
}

.page-shell-search .product-media {
  min-height: 214px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfcff 0%, #f1f5fb 100%);
}

@media (min-width: 1180px) {
  .page-shell-search .product-card,
  .store-results .product-card,
  .results-grid-search .product-card {
    grid-template-columns: minmax(220px, 240px) minmax(0, 1fr);
  }

  .page-shell-search .product-card .product-media-frame,
  .store-results .product-card .product-media-frame,
  .results-grid-search .product-card .product-media-frame {
    min-height: 214px;
  }

  .page-shell-search .product-card .product-media img,
  .store-results .product-card .product-media img,
  .results-grid-search .product-card .product-media img {
    padding: 18px 18px 12px;
  }
}

.page-shell-search .product-card-body {
  gap: 16px;
}

.page-shell-search .product-card-head {
  gap: 18px;
}

.page-shell-search .product-card h2 {
  margin-bottom: 6px;
  font-size: 1.28rem;
  line-height: 1.08;
}

.page-shell-search .product-summary {
  max-width: 64ch;
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-store-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-store-chip,
.product-store-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-store-chip {
  background: #f7f9fc;
  border: 1px solid #dfe6f0;
  color: var(--text);
}

.product-store-chip .store-avatar {
  width: 24px;
  height: 24px;
  border-radius: 10px;
}

.product-store-more {
  background: #fff4e7;
  border: 1px solid #ffd8b4;
  color: #9a5317;
}

.page-shell-search .price-box {
  min-width: 154px;
  padding: 14px;
  border-radius: 18px;
}

.page-shell-search .price-from {
  font-size: 1.56rem;
}

.page-shell-search .attribute-row,
.page-shell-search .trust-row {
  gap: 8px;
}

.page-shell-search .chip,
.page-shell-search .badge {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 0.77rem;
}

.page-shell-search .inline-offer {
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid #e6ecf5;
  background: #fbfcfe;
  align-items: center;
}

.page-shell-search .inline-offer-copy {
  gap: 4px;
}

.page-shell-search .inline-offer-copy strong {
  font-size: 1.12rem;
}

.catalog-map-row .map-panel {
  width: 100%;
  max-width: none;
}

@media (max-width: 1180px) {
  .catalog-discovery {
    grid-template-columns: 1fr;
  }

  .catalog-layout-market {
    grid-template-columns: 1fr;
  }

  .filters-column-market {
    position: static;
  }
}

@media (max-width: 900px) {
  .catalog-search-heading {
    grid-template-columns: 1fr;
  }

  .page-shell-search .page-results-meta {
    justify-content: flex-start;
  }

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

  .page-shell-search .product-card {
    grid-template-columns: 1fr;
  }

  .page-shell-search .product-card-head {
    flex-direction: column;
  }

  .page-shell-search .price-box {
    width: 100%;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .catalog-search-copy h1 {
    font-size: 1.82rem;
  }

  .page-shell-search .search-main {
    grid-template-columns: 1fr;
  }

  .page-shell-search .search-submit {
    width: 100%;
  }

  .page-shell-search .results-toolbar {
    gap: 12px;
  }

  .catalog-section-grid {
    grid-template-columns: 1fr;
  }
}

/* Header and main polish */
.site-header-actions {
  gap: 10px;
}

.site-nav-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-right: 4px;
}

.site-nav-top .nav-link {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(216, 223, 235, 0.92);
  background: rgba(247, 249, 253, 0.96);
  white-space: nowrap;
}

.site-nav-top .nav-link.is-active {
  background: var(--surface-dark);
  color: #fff;
  border-color: var(--surface-dark);
  box-shadow: 0 10px 22px rgba(16, 23, 38, 0.18);
}

.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: var(--space-5);
  padding-bottom: var(--space-8);
  padding-left: clamp(14px, 3vw, 28px);
  padding-right: clamp(14px, 3vw, 28px);
}

.page-main-landing {
  max-width: 1440px;
  display: block;
}

.page-main-inner {
  min-width: 0;
}

.page-main-side {
  display: none !important;
}

.page-main-side::before,
.page-main-side::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-main-side::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%, transparent 72%, rgba(255, 106, 0, 0.08) 100%);
}

.page-main-side::after {
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.page-main-orb,
.page-main-badges {
  display: none;
}

@media (max-width: 1200px) {
  .site-nav-top {
    flex-basis: 100%;
    margin-right: 0;
  }

  .site-header-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-main-landing {
    grid-template-columns: 1fr;
  }

  .page-main-side {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .site-header-top,
  .site-header-bottom,
  .site-footer-inner,
  .page-main {
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .site-header-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .site-nav-top {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .site-nav-top::-webkit-scrollbar {
    display: none;
  }

  .site-nav-top .nav-link {
    flex: 0 0 auto;
  }

  .site-header-stats {
    gap: 8px;
  }

  .site-header-stats span {
    min-height: 34px;
    padding: 7px 11px;
  }

  input,
  select,
  textarea,
  button {
    font-size: 16px;
  }

  .support-widget {
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .support-panel {
    inset: auto 12px calc(12px + env(safe-area-inset-bottom)) 12px;
    width: auto;
    height: min(78dvh, 700px);
    max-height: calc(100dvh - 24px - env(safe-area-inset-bottom));
    border-radius: 24px;
  }
}

/* 2026-04 relaunch polish */
.site-header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.site-header-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.site-header-mobile-actions .ghost-link {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.header-search {
  grid-template-columns: 1fr;
}

.site-header .header-search-field {
  position: relative;
}

.site-header .header-search-field input {
  min-height: 50px;
  padding-right: 108px;
}

.header-search-submit {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  min-height: 38px;
  min-width: 88px;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.24);
}

.hero {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.trust-strip-article {
  padding: 0;
  overflow: hidden;
}

.latest-article-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.latest-article-media {
  min-height: 100%;
  background: linear-gradient(180deg, #f6f9ff 0%, #eef3fb 100%);
}

.latest-article-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.latest-article-copy {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  min-width: 0;
}

.latest-article-copy h2 {
  margin: 0;
}

.latest-article-copy .hero-copy {
  margin: 0;
  color: var(--muted);
  max-width: none;
}

.latest-article-link {
  width: fit-content;
}

.catalog-section-card {
  gap: 12px;
  align-content: start;
}

.catalog-section-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(223, 230, 240, 0.9);
  background: linear-gradient(180deg, #eef3fb 0%, #f8fbff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.reviews-shell {
  display: grid;
}

.reviews-section {
  border-radius: 28px;
  border: 1px solid rgba(229, 234, 242, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.reviews-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.reviews-toggle::-webkit-details-marker {
  display: none;
}

.reviews-panel {
  display: grid;
  gap: 18px;
  padding: 0 20px 20px;
}

.support-panel {
  width: auto;
  height: auto;
  max-height: none;
  padding: 0;
  border-radius: 26px;
  background: #fbfdff;
}

.support-panel::before {
  content: none;
}

.support-widget.is-open .support-panel {
  gap: 0;
}

.support-panel-head {
  padding: 12px 16px;
}

.support-thread {
  margin: 12px 16px;
  padding: 14px;
  border-radius: 20px;
  min-height: 0;
}

.support-form {
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
}

.support-form input {
  min-height: 46px;
}

.support-form textarea {
  min-height: 88px;
}

.support-form-actions {
  justify-content: stretch;
}

.support-form-actions .primary-link,
.support-form-actions .ghost-link {
  flex: 1 1 auto;
}

.support-register-summary {
  padding: 12px 14px;
  border-radius: 18px;
}

.support-form-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff0f1;
  border: 1px solid #ffd2d7;
  color: #b42332;
  font-size: 0.84rem;
  line-height: 1.45;
}

@keyframes soft-surface-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes soft-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes catalog-cue-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 28px rgba(255, 95, 0, 0.22);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 95, 0, 0.32);
  }
}

@keyframes catalog-details-open {
  from {
    opacity: 0;
    transform: translateY(-10px);
    clip-path: inset(0 0 100% 0 round 20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0 round 20px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-showcase,
  .catalog-search-frame,
  .catalog-discovery-block,
  .section-card,
  .editorial-card,
  .store-detail-card,
  .offer-store-group,
  .reviews-shell,
  .support-panel,
  .guest-auth-nudge {
    animation: soft-surface-in 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .product-card,
  .catalog-section-card,
  .article-card,
  .category-tile,
  .metric-card,
  .trust-benefit-card,
  .chat-bubble,
  .chat-link-card,
  .review-card {
    animation: soft-surface-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
    transition:
      transform 340ms ease,
      box-shadow 340ms ease,
      border-color 340ms ease,
      background-color 340ms ease;
  }

  .result-slot,
  .offer-card {
    animation: soft-surface-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .result-slot:nth-child(2),
  .catalog-section-card:nth-child(2),
  .article-card:nth-child(2),
  .offer-card:nth-child(2) {
    animation-delay: 45ms;
  }

  .result-slot:nth-child(3),
  .catalog-section-card:nth-child(3),
  .article-card:nth-child(3),
  .offer-card:nth-child(3) {
    animation-delay: 90ms;
  }

  .result-slot:nth-child(4),
  .catalog-section-card:nth-child(4),
  .article-card:nth-child(4),
  .offer-card:nth-child(4) {
    animation-delay: 135ms;
  }

  .search-suggestions,
  .support-thread,
  .support-form {
    animation: soft-fade-in 420ms ease both;
  }

  .catalog-discovery-cue {
    animation: catalog-cue-pulse 1.8s ease-in-out infinite;
  }

  .catalog-discovery-toggle[open] .catalog-discovery-body {
    animation: catalog-details-open 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@media (min-width: 960px) {
  .support-panel {
    inset: auto 24px 24px auto;
    width: min(480px, calc(100vw - 48px));
    height: min(760px, calc(100dvh - 48px));
    max-height: calc(100dvh - 48px);
    border-radius: 28px;
  }

  .support-thread .chat-bubble {
    max-width: 100%;
  }

  .chat-link-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .chat-link-card-media {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
}

@media (max-width: 900px) {
  .latest-article-card {
    grid-template-columns: 1fr;
  }

  .latest-article-media img {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .site-header-top {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-header-actions {
    display: none;
  }

  .site-header-mobile-actions {
    display: inline-flex;
  }

  .site-header .brandmark {
    min-width: 0;
  }

  .site-header .brandmark-copy span:last-child {
    font-size: 0.74rem;
  }

  .site-header .header-search {
    width: 100%;
  }

  .search-suggestions {
    max-height: min(280px, calc(100dvh - 260px));
  }

  .site-header .header-search-field input {
    min-height: 48px;
    padding-right: 96px;
  }

  .header-search-submit {
    min-height: 34px;
    min-width: 78px;
    padding: 8px 12px;
  }

  .hero-showcase {
    padding: 18px;
  }

  .hero-showcase:has(.search-suggestions.is-open) {
    padding-bottom: 180px;
  }

  .support-panel {
    inset: 8px;
    padding: 0;
    border-radius: 22px;
  }

  .chat-bubble-prompts .support-prompt-list {
    grid-template-columns: 1fr;
  }

  .guest-auth-nudge {
    top: auto;
    right: 12px;
    bottom: 94px;
    left: 12px;
    width: auto;
    padding: 14px 14px 12px;
  }

  .guest-auth-nudge p {
    font-size: 0.88rem;
  }
}
