:root {
  --navy-950: #03182f;
  --navy-900: #06264d;
  --navy-800: #0b396c;
  --blue-600: #086be8;
  --blue-500: #1680f5;
  --blue-100: #e8f2ff;
  --orange-600: #d9600d;
  --orange-500: #f47b20;
  --orange-100: #fff0e3;
  --paper: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4f9;
  --line: #dbe8f4;
  --line-strong: #bfd2e3;
  --ink: #172e46;
  --muted: #69809a;
  --success: #14804a;
  --danger: #c63d32;
  --warning: #9c5b10;
  --shadow-sm: 0 8px 24px rgba(6, 38, 77, 0.06);
  --shadow-lg: 0 28px 70px rgba(6, 38, 77, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --content: 1200px;
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(8, 107, 232, 0.09), transparent 26rem),
    linear-gradient(180deg, #f8fbfe 0, var(--paper) 24rem, var(--paper) 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.has-mobile-action {
  padding-bottom: 0;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-900);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.7vw, 3.6rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.container {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.container--wide {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-900);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(219, 232, 244, 0.9);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--navy-900);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-900);
}

.brand__logo {
  width: 230px;
  height: auto;
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 9px;
  color: #39536d;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue-600);
  background: var(--blue-100);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 9px;
  background: currentColor;
  content: "";
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 10px 24px rgba(8, 107, 232, 0.22);
}

.button--primary:hover {
  color: #fff;
  background: #0060d3;
}

.button--conversion {
  color: #fff;
  background: var(--orange-500);
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.24);
}

.button--conversion:hover {
  color: #fff;
  background: var(--orange-600);
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--navy-900);
  background: #fff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button--small {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 14px;
}

.page-main {
  min-height: 70vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(3, 24, 47, 0.98), rgba(6, 38, 77, 0.95) 55%, rgba(8, 107, 232, 0.87)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.04) 55px 56px);
}

.hero::before {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  top: -220px;
  border: 86px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  width: 8px;
  height: 74%;
  left: max(20px, calc((100vw - var(--content)) / 2 - 24px));
  top: 13%;
  border-radius: 999px;
  background: var(--orange-500);
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.hero__eyebrow,
.eyebrow {
  margin-bottom: 12px;
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: #fff;
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: #d6e8ff;
  font-size: clamp(17px, 2vw, 20px);
}

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

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-panel__label {
  margin-bottom: 14px;
  color: #bcd7f6;
  font-size: 13px;
  font-weight: 800;
}

.task-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.task-link {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.task-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.task-link strong,
.task-link span {
  display: block;
}

.task-link span {
  margin-top: 5px;
  color: #c5dbf3;
  font-size: 12px;
}

.search-shell {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.search-shell input {
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search-shell:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8, 107, 232, 0.1);
}

.section {
  padding: clamp(58px, 7vw, 94px) 0;
}

.section--tight {
  padding-block: 42px;
}

.section--surface {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.section--navy {
  color: #d9e8f8;
  background: var(--navy-900);
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

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

.section-head__copy {
  max-width: 700px;
}

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

.section--navy .section-head p {
  color: #bcd0e4;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.page-hero {
  padding: 52px 0 46px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.page-hero p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.status-pill {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: #47617b;
  background: #fff;
}

.status-pill--success {
  border-color: #bfe4d0;
  color: var(--success);
  background: #edf9f2;
}

.status-pill--warning {
  border-color: #f0d4af;
  color: var(--warning);
  background: #fff8ed;
}

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

.stat-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  border-color: #b8d1e8;
  box-shadow: 0 18px 42px rgba(6, 38, 77, 0.1);
  transform: translateY(-2px);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dbe5ee;
}

.card__image--square {
  aspect-ratio: 1;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.card:hover .card__image img {
  transform: scale(1.025);
}

.merchant-card .card__image {
  display: block;
  aspect-ratio: 16 / 9;
}

.merchant-card .card__image img {
  object-fit: contain;
}

.merchant-card:hover .card__image img {
  transform: none;
}

.image-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 7px;
  color: #fff;
  background: rgba(3, 24, 47, 0.78);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.card__body {
  padding: 18px;
}

.card__title {
  margin-bottom: 7px;
  font-size: 19px;
}

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

.card__meta,
.card__description {
  color: var(--muted);
  font-size: 14px;
}

.card__description {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  margin-bottom: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  padding: 5px 9px;
  color: #315578;
  background: #eef5fc;
}

.tag--market {
  color: #8c4a16;
  background: var(--orange-100);
}

.card__actions {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.card__actions .button {
  flex: 1 1 auto;
}

.product-card .card__image {
  display: block;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #e9eef2, #cfd9e1);
}

.product-card .card__image img {
  object-fit: contain;
}

.product-card:hover .card__image img {
  transform: none;
}

.product-card .card__body {
  padding: 14px 16px 17px;
}

.product-card .card__title {
  margin-bottom: 3px;
  font-size: 17px;
}

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

.product-finder {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #c9def2;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 12%, rgba(22, 128, 245, 0.14), transparent 18rem),
    linear-gradient(135deg, #fff 0%, #f4f9ff 62%, #eaf4ff 100%);
  box-shadow: 0 18px 50px rgba(6, 38, 77, 0.09);
}

.product-finder::before {
  position: absolute;
  inset: 26px auto 26px 0;
  width: 5px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, var(--blue-500), var(--navy-800));
  content: "";
}

.product-finder__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.product-finder__head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.product-finder__head p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-finder__eyebrow {
  margin-bottom: 6px !important;
  color: var(--blue-600) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.product-finder__summary {
  flex: 0 0 auto;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 107, 232, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.76);
  text-align: right;
}

.product-finder__summary strong,
.product-finder__summary span {
  display: block;
}

.product-finder__summary strong {
  color: var(--navy-900);
  font-size: 18px;
}

.product-finder__summary span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.product-finder__search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 12px;
  margin-top: 22px;
}

.product-finder__search-box {
  position: relative;
  min-width: 0;
}

.product-finder__search-box input {
  width: 100%;
  height: 58px;
  padding: 0 78px 0 52px;
  border: 2px solid #bfd4e8;
  border-radius: 15px;
  outline: 0;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(6, 38, 77, 0.05);
}

.product-finder__search-box input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8, 107, 232, 0.11);
}

.product-finder__search-icon {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 20px;
  width: 19px;
  height: 19px;
  border: 3px solid var(--blue-600);
  border-radius: 50%;
  pointer-events: none;
}

.product-finder__search-icon::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-600);
  transform: rotate(45deg);
  content: "";
}

.product-finder__clear {
  position: absolute;
  top: 50%;
  right: 12px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: var(--blue-600);
  background: var(--blue-100);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-50%);
  cursor: pointer;
}

.product-finder__submit {
  min-height: 58px;
  border-radius: 15px;
}

.product-finder__row {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 17px;
}

.product-finder__label {
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 900;
}

.product-finder__quick,
.product-finder__rail {
  display: flex;
  min-width: 0;
  gap: 9px;
  flex-wrap: wrap;
}

.product-finder__quick button,
.product-filter-chip {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid #c8dbea;
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.product-finder__quick button:hover,
.product-filter-chip:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
  transform: translateY(-1px);
}

.product-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-filter-chip small {
  min-width: 23px;
  padding: 1px 6px;
  border-radius: 99px;
  color: var(--muted);
  background: #edf3f8;
  font-size: 10px;
}

.product-filter-chip.is-active {
  border-color: var(--navy-900);
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  box-shadow: 0 8px 18px rgba(8, 107, 232, 0.18);
}

.product-filter-chip.is-active small {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.product-directory-results {
  margin-top: 30px;
}

.product-directory-results__head {
  align-items: end;
  margin-bottom: 18px;
}

.product-directory-results__head h2 {
  margin-bottom: 5px;
}

.product-directory-results__head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-filter-reset {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--blue-600);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.product-filter-reset:disabled {
  color: #94a4b5;
  background: #f1f5f8;
  cursor: not-allowed;
}

.directory-layout {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 98px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.filter-panel h2 {
  margin-bottom: 16px;
  font-size: 19px;
}

.filter-panel--horizontal {
  position: static;
  margin-bottom: 22px;
}

.filter-panel--horizontal .filter-panel__fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.filter-panel--horizontal .field {
  margin-bottom: 0;
}

.field {
  margin-bottom: 16px;
}

.field label,
.field__label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: #fff;
}

.field input,
.field select {
  height: 44px;
  padding: 0 12px;
}

.field textarea {
  min-height: 120px;
  padding: 11px 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8, 107, 232, 0.1);
}

.directory-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.result-count {
  color: var(--muted);
  font-size: 14px;
}

.price-finder {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #cfe0f0;
  border-radius: 22px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.97) 58%, rgba(234, 244, 254, 0.96) 100%);
  box-shadow: 0 18px 46px rgba(6, 38, 77, 0.09);
}

.price-finder::before {
  position: absolute;
  z-index: -1;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--blue-500), var(--navy-800));
  content: "";
}

.price-finder::after {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 107, 232, 0.12), rgba(8, 107, 232, 0));
  content: "";
}

.price-finder__head,
.price-finder__search-row,
.price-finder__filter-row,
.price-results-bar,
.price-results-bar__actions {
  display: flex;
  align-items: center;
}

.price-finder__head {
  justify-content: space-between;
  gap: 28px;
}

.price-finder__intro {
  min-width: 0;
}

.price-finder__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.price-finder__eyebrow::before {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
  content: "";
}

.price-finder h2 {
  margin-bottom: 7px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.price-finder__intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-finder__badge {
  flex: 0 1 470px;
  min-width: 390px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  box-shadow: 0 12px 24px rgba(6, 38, 77, 0.16);
}

.price-finder__badge strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
}

.price-finder__badge span {
  display: block;
  color: #dcecff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.price-finder__search-row {
  gap: 12px;
  margin: 24px 0 18px;
}

.price-finder__search-box {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.price-finder__search-box input {
  width: 100%;
  height: 58px;
  padding: 0 82px 0 54px;
  border: 2px solid #c3d7e8;
  border-radius: 15px;
  outline: 0;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 650;
  box-shadow: inset 0 1px 2px rgba(6, 38, 77, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.price-finder__search-box input::placeholder {
  color: #8396a9;
  font-weight: 500;
}

.price-finder__search-box input:focus {
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(8, 107, 232, 0.1), 0 10px 24px rgba(6, 38, 77, 0.07);
}

.price-finder__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.price-finder__search-icon {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
  pointer-events: none;
}

.price-finder__search-icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.price-finder__clear {
  position: absolute;
  top: 50%;
  right: 12px;
  min-width: 52px;
  padding: 6px 9px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: #edf3f8;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
}

.price-finder__clear:hover {
  color: var(--blue-600);
  background: var(--blue-100);
}

.price-finder__submit {
  flex: 0 0 132px;
  min-height: 58px;
  border-radius: 15px;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(217, 96, 13, 0.2);
}

.price-finder__filter-row {
  min-width: 0;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(191, 210, 227, 0.72);
}

.price-finder__filter-row:last-child {
  padding-bottom: 0;
}

.price-finder__filter-label {
  flex: 0 0 72px;
  color: #45617b;
  font-size: 13px;
  font-weight: 900;
}

.price-finder__rail {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 9px;
}

.price-filter-chip,
.price-product-chip {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid #cbddeb;
  border-radius: 999px;
  color: #37536e;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.price-filter-chip small,
.price-product-chip small {
  min-width: 20px;
  padding: 1px 5px;
  border-radius: 999px;
  color: #6b8094;
  background: #edf3f8;
  font-size: 10px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.price-filter-chip:hover,
.price-product-chip:hover {
  border-color: #82b6ee;
  color: var(--blue-600);
  background: #fff;
  transform: translateY(-1px);
}

.price-filter-chip.is-active {
  border-color: var(--blue-600);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  box-shadow: 0 7px 16px rgba(8, 107, 232, 0.17);
}

.price-filter-chip.is-active small {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.price-product-chip.is-active {
  border-color: #e96e16;
  color: #a94706;
  background: var(--orange-100);
  box-shadow: 0 7px 16px rgba(217, 96, 13, 0.12);
}

.price-product-chip.is-active small {
  color: #8f3e07;
  background: rgba(255, 255, 255, 0.72);
}

.price-finder__loading {
  padding: 7px 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-results-bar {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
}

.price-results-bar .result-count {
  position: relative;
  margin-bottom: 0;
  padding-left: 15px;
  color: var(--navy-800);
  font-weight: 850;
}

.price-results-bar .result-count::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(20, 128, 74, 0.1);
  content: "";
  transform: translateY(-50%);
}

.price-results-bar__actions {
  flex: 0 0 auto;
  gap: 16px;
}

.price-results-bar__actions button {
  padding: 3px 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.price-results-bar__actions button:hover:not(:disabled) {
  color: var(--blue-600);
}

.price-results-bar__actions button:disabled {
  opacity: 0.45;
  cursor: default;
}

.price-results-bar__actions a {
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.price-empty-row td {
  padding: 0;
}

.price-empty-state {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 48px 20px;
  color: var(--muted);
  text-align: center;
}

.price-empty-state strong {
  color: var(--navy-900);
  font-size: 17px;
}

.price-empty-state span {
  font-size: 13px;
}

.load-more {
  margin-top: 28px;
  text-align: center;
}

.empty-state {
  padding: 52px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

.price-table th,
.price-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.price-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  color: #45617b;
  background: #f2f7fb;
  font-size: 13px;
  white-space: nowrap;
}

.price-table td {
  font-size: 14px;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-value {
  color: var(--danger);
  font-size: 17px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.price-cards {
  display: none;
}

.price-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-card__top,
.price-card__bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.price-product,
.price-card__identity {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.price-product img,
.price-card__identity img {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, #f3f6f8, #dde5eb);
}

.price-card__identity {
  align-items: flex-start;
}

.price-card__identity > div {
  min-width: 0;
}

.price-card__spec {
  color: var(--muted);
  font-size: 13px;
}

.price-card__bottom {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  align-items: center;
}

.detail-hero {
  padding: 42px 0 34px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.detail-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.detail-media--square {
  aspect-ratio: 1;
}

.detail-media--merchant {
  aspect-ratio: 16 / 9;
}

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

.detail-media--square img {
  object-fit: contain;
}

.detail-media--merchant img {
  object-fit: contain;
}

.detail-summary {
  color: var(--muted);
  font-size: 17px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.info-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.info-row {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row dt {
  color: var(--muted);
  font-weight: 700;
}

.info-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  align-items: start;
}

.content-grid > div,
.content-grid > aside {
  min-width: 0;
}

.content-card,
.notice-card,
.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.content-card + .content-card {
  margin-top: 18px;
}

.notice-card {
  border-color: #f0d4af;
  background: #fffaf3;
}

.sidebar-card {
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 25px;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  position: absolute;
  width: 8px;
  height: 8px;
  left: 3px;
  top: 18px;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.form-card {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-step {
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-step:last-of-type {
  border-bottom: 0;
}

.form-step__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.form-step__number {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #fff;
  background: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .field {
  margin-bottom: 0;
}

.field--wide {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: #edf9f2;
}

.form-status.is-error {
  color: var(--danger);
  background: #fff1ef;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 50px;
  justify-content: center;
  align-items: start;
}

.article-body {
  font-size: 17px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 26px;
}

.article-body table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: collapse;
  border-radius: 12px;
}

.article-body th,
.article-body td {
  padding: 11px 13px;
  border: 1px solid var(--line);
  text-align: left;
}

.article-body th {
  background: #edf4fa;
}

.article-toc {
  position: sticky;
  top: 100px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.article-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.trust-item p {
  margin-bottom: 0;
  color: #bcd0e4;
  font-size: 14px;
}

.site-footer {
  color: #bcd0e4;
  background: var(--navy-950);
}

.site-footer__main {
  padding: 58px 0 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff;
}

.footer-grid h2 {
  font-size: 24px;
}

.footer-grid h3 {
  font-size: 15px;
}

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

.footer-links a {
  color: #bcd0e4;
  font-size: 14px;
  text-decoration: none;
}

.footer-mobile-actions {
  display: none;
}

.site-footer__legal {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #849db6;
  font-size: 12px;
}

.hero-search {
  margin-top: 28px;
  max-width: 760px;
}

.hero-search .search-shell {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 48px rgba(3, 24, 47, 0.24);
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
}

.section-offset {
  margin-top: 28px;
}

.feature-grid,
.process-grid,
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.process-card,
.market-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.process-card__number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy-900);
  font-weight: 900;
}

.feature-card p,
.process-card p,
.market-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.market-card {
  min-height: 260px;
  padding: 0;
}

.market-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-soft);
}

.market-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-card__body {
  padding: 20px;
}

.market-card__body h2,
.market-card__body h3 {
  margin-bottom: 8px;
}

.market-card__body a {
  color: inherit;
  text-decoration: none;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-lg);
  color: #d9e9fa;
  background:
    linear-gradient(125deg, var(--navy-950), var(--navy-900) 65%, #0a4a88),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.callout h2,
.callout h3 {
  color: #fff;
}

.callout p {
  max-width: 760px;
  margin-bottom: 0;
}

.detail-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--orange-500);
  color: var(--muted);
  background: var(--orange-100);
  font-size: 13px;
}

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

.product-mini {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy-900);
  background: #fff;
  text-decoration: none;
}

.product-mini img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--surface-soft);
}

.product-mini .deferred-product-image {
  opacity: 0.35;
  transition: opacity 180ms ease;
}

.product-mini .deferred-product-image.is-loaded {
  opacity: 1;
}

.product-mini strong {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
}

.merchant-gallery-card {
  min-width: 0;
  overflow: hidden;
}

.merchant-gallery__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.merchant-gallery__head h2 {
  margin-bottom: 0;
}

.merchant-gallery__eyebrow {
  margin: 0 0 5px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.merchant-gallery__count {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--navy-800);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 800;
}

.merchant-gallery__filters {
  display: flex;
  max-width: 100%;
  gap: 7px;
  margin: 16px 0 12px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  scrollbar-width: thin;
}

.gallery-filter {
  min-width: 88px;
  min-height: 40px;
  flex: 1 0 auto;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #42617d;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.gallery-filter span {
  color: var(--muted);
  font-size: 11px;
}

.gallery-filter.is-active {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: #fff;
  box-shadow: 0 2px 0 var(--blue-600), inset 0 1px 0 #fff;
}

.gallery-filter.is-active span {
  color: var(--blue-600);
}

.gallery-filter:active {
  transform: translateY(2px);
  box-shadow: none;
}

.gallery-filter:focus-visible,
.gallery-photo__button:focus-visible,
.gallery-dialog button:focus-visible {
  outline: 3px solid rgba(8, 107, 232, 0.3);
  outline-offset: 2px;
}

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

.gallery-photo {
  min-width: 0;
  margin: 0;
}

.gallery-photo--featured {
  grid-column: 1 / -1;
}

.gallery-photo[hidden] {
  display: none;
}

.gallery-photo__button {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface-soft);
  cursor: zoom-in;
}

.gallery-photo--featured .gallery-photo__button {
  aspect-ratio: 16 / 9;
}

.gallery-photo__button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-photo__button:hover img {
  transform: scale(1.02);
}

.gallery-photo__expand {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 24, 47, 0.8);
  font-size: 19px;
  line-height: 1;
}

.gallery-photo figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 2px 3px;
}

.gallery-photo figcaption strong {
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.gallery-photo figcaption span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
}

.merchant-gallery__more {
  width: 100%;
  margin-top: 12px;
}

.merchant-gallery__more[hidden] {
  display: none;
}

.merchant-gallery__note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--blue-500);
  color: var(--muted);
  background: #f5f9fd;
  font-size: 12px;
  line-height: 1.7;
}

.gallery-dialog + .content-card {
  margin-top: 18px;
}

.gallery-dialog {
  width: min(920px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.gallery-dialog::backdrop {
  background: rgba(3, 18, 34, 0.86);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.gallery-dialog__panel {
  position: relative;
  padding: 46px 56px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: #071b2e;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.gallery-dialog figure {
  margin: 0;
}

.gallery-dialog figure img {
  width: 100%;
  max-height: 72vh;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: #06121f;
}

.gallery-dialog figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  color: #fff;
}

.gallery-dialog figcaption strong {
  color: #fff;
}

.gallery-dialog figcaption span {
  color: #b8c9d7;
  font-size: 12px;
}

.gallery-dialog__close,
.gallery-dialog__nav {
  position: absolute;
  width: 38px;
  height: 38px;
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(1, 18, 34, 0.8);
  font-size: 28px;
  cursor: pointer;
}

.gallery-dialog__close {
  top: 7px;
  right: 8px;
  font-size: 24px;
}

.gallery-dialog__nav {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-dialog__nav--prev {
  left: 8px;
}

.gallery-dialog__nav--next {
  right: 8px;
}

.source-box,
.disclaimer-box {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 14px;
}

.source-box strong,
.disclaimer-box strong {
  color: var(--navy-900);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.faq-list summary {
  padding: 15px 18px;
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 18px 17px;
  margin-bottom: 0;
  color: var(--muted);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-links a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--navy-900);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.helper-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.status-result {
  min-height: 120px;
  padding: 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  color: var(--muted);
  background: #fff;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: 24px;
}

.legal-content li + li {
  margin-top: 8px;
}

.error-page {
  min-height: 64vh;
  display: grid;
  place-items: center;
  padding: 60px 20px;
  text-align: center;
}

.error-code {
  display: block;
  color: var(--blue-600);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.qr-dialog {
  width: min(440px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: transparent;
  box-shadow: var(--shadow-lg);
}

.qr-dialog::backdrop {
  background: rgba(3, 24, 47, 0.66);
  backdrop-filter: blur(6px);
}

.qr-dialog__panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-align: center;
}

.qr-dialog__panel img {
  width: min(100%, 300px);
  margin: 16px auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.qr-dialog__panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}

.mobile-bottom-nav,
.mobile-action-bar {
  display: none;
}

.mobile-bottom-nav__icon {
  display: none;
}

.reveal {
  animation: reveal 520ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header__inner {
    gap: 16px;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: 14px;
  }

  .header-actions .button--secondary {
    display: none;
  }

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

@media (max-width: 840px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  body.has-mobile-action {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand__logo {
    width: 186px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 54px 0 48px;
  }

  .hero::after {
    display: none;
  }

  .hero__grid,
  .detail-hero__grid,
  .content-grid,
  .form-shell,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 16px;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .stats-grid,
  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .filter-panel {
    position: static;
  }

  .filter-panel__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .filter-panel__fields .field {
    margin-bottom: 0;
  }

  .filter-panel--horizontal .filter-panel__fields {
    grid-template-columns: 1fr 1fr;
  }

  .product-finder__head {
    display: grid;
    gap: 16px;
  }

  .product-finder__summary {
    min-width: 0;
    text-align: left;
  }

  .product-finder__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-finder__quick,
  .product-finder__rail {
    padding-bottom: 5px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
  }

  .product-finder__quick button,
  .product-filter-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .price-finder__badge {
    min-width: 320px;
  }

  .detail-hero__grid {
    gap: 24px;
  }

  .detail-media {
    max-height: 460px;
  }

  .sidebar-card,
  .article-toc {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .feature-grid,
  .process-grid,
  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(66px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(191, 210, 227, 0.92);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -10px 30px rgba(6, 38, 77, 0.08);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    color: var(--blue-600);
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 110;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    padding: 8px;
    border: 1px solid rgba(191, 210, 227, 0.92);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(6, 38, 77, 0.2);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--navy-900);
    background: #edf4fa;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .mobile-action-bar a[data-primary="true"] {
    color: #fff;
    background: var(--orange-500);
  }
}

@media (max-width: 560px) {
  .container,
  .container--wide {
    width: min(100% - 24px, var(--content));
  }

  h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.45rem);
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero__lead,
  .page-hero p,
  .detail-summary {
    font-size: 16px;
  }

  .hero__actions,
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions .button,
  .detail-actions .button {
    width: 100%;
  }

  .task-grid,
  .stats-grid,
  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

  .task-link {
    min-height: 86px;
  }

  .search-shell {
    display: grid;
  }

  .search-shell .button {
    width: 100%;
  }

  .section-head {
    display: block;
  }

  .section-head .button {
    margin-top: 16px;
  }

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

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

  .product-card .card__body {
    padding: 12px;
  }

  .product-card .card__title {
    font-size: 15px;
  }

  .merchant-card .card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-panel__fields,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel--horizontal .filter-panel__fields {
    grid-template-columns: 1fr;
  }

  .product-finder {
    padding: 21px 16px 18px;
    border-radius: 19px;
  }

  .product-finder::before {
    inset: 20px auto auto 0;
    height: 54px;
  }

  .product-finder__head h2 {
    font-size: 1.45rem;
  }

  .product-finder__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
  }

  .product-finder__summary strong {
    font-size: 15px;
  }

  .product-finder__summary span {
    margin-top: 0;
    text-align: right;
  }

  .product-finder__search {
    grid-template-columns: 1fr;
    margin-top: 17px;
  }

  .product-finder__search-box input {
    height: 54px;
    padding-right: 68px;
    font-size: 14px;
  }

  .product-finder__search-icon {
    top: 16px;
  }

  .product-finder__submit {
    width: 100%;
    min-height: 48px;
  }

  .product-finder__row {
    margin-top: 15px;
  }

  .product-finder__quick,
  .product-finder__rail {
    margin-right: -16px;
    padding-right: 16px;
  }

  .product-directory-results {
    margin-top: 24px;
  }

  .product-directory-results__head {
    align-items: flex-start;
  }

  .product-filter-reset {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .price-finder {
    margin-bottom: 12px;
    padding: 21px 17px 17px;
    border-radius: 18px;
  }

  .price-finder::before {
    top: 20px;
    bottom: auto;
    width: 4px;
    height: 48px;
  }

  .price-finder__head {
    display: grid;
    align-items: flex-start;
    gap: 12px;
  }

  .price-finder__eyebrow {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .price-finder h2 {
    margin-bottom: 6px;
    font-size: 1.45rem;
  }

  .price-finder__intro > p:last-child {
    max-width: 250px;
    font-size: 12px;
    line-height: 1.55;
  }

  .price-finder__badge {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border-radius: 12px;
  }

  .price-finder__badge strong {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .price-finder__badge span {
    font-size: 11px;
    line-height: 1.6;
  }

  .price-finder__search-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 19px 0 14px;
  }

  .price-finder__search-box input {
    height: 54px;
    padding-right: 67px;
    padding-left: 48px;
    border-radius: 13px;
    font-size: 15px;
  }

  .price-finder__search-icon {
    top: 17px;
    left: 18px;
    width: 17px;
    height: 17px;
  }

  .price-finder__clear {
    right: 9px;
    min-width: 46px;
    padding-inline: 7px;
  }

  .price-finder__submit {
    width: 100%;
    min-height: 48px;
  }

  .price-finder__filter-row {
    display: block;
    padding: 12px 0;
  }

  .price-finder__filter-label {
    display: block;
    margin-bottom: 8px;
  }

  .price-finder__rail {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 1px 2px 5px;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .price-finder__rail::-webkit-scrollbar {
    display: none;
  }

  .price-filter-chip,
  .price-product-chip {
    flex: 0 0 auto;
    min-height: 40px;
  }

  .price-results-bar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 12px;
  }

  .price-results-bar__actions {
    width: 100%;
    justify-content: space-between;
    gap: 11px;
  }

  .price-results-bar__actions a,
  .price-results-bar__actions button {
    font-size: 12px;
  }

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

  .price-table-wrap {
    display: none;
  }

  .price-cards {
    display: grid;
    gap: 12px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .merchant-gallery-card {
    padding: 16px;
  }

  .merchant-gallery__head {
    align-items: flex-start;
    gap: 10px;
  }

  .merchant-gallery__head h2 {
    font-size: 20px;
  }

  .merchant-gallery__count {
    padding: 5px 7px;
    font-size: 11px;
  }

  .gallery-filter {
    min-height: 38px;
    font-size: 12px;
  }

  .merchant-gallery__grid {
    gap: 8px;
  }

  .gallery-photo figcaption {
    display: block;
  }

  .gallery-photo figcaption strong,
  .gallery-photo figcaption span {
    display: block;
  }

  .gallery-photo figcaption strong {
    min-height: 36px;
    font-size: 12px;
  }

  .gallery-dialog {
    width: calc(100% - 16px);
  }

  .gallery-dialog__panel {
    padding: 48px 8px 14px;
  }

  .gallery-dialog figure img {
    max-height: 68vh;
  }

  .gallery-dialog figcaption {
    display: block;
    padding: 10px 44px 0;
    text-align: center;
  }

  .gallery-dialog figcaption span {
    display: block;
    margin-top: 3px;
  }

  .gallery-dialog__nav {
    top: auto;
    bottom: 8px;
    transform: none;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  body.has-mobile-action {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(155deg, #03182f 0%, #06264d 62%, #07396b 100%);
  }

  .site-footer::before {
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -130px;
    width: 310px;
    height: 310px;
    border: 74px solid rgba(35, 132, 247, 0.12);
    border-radius: 50%;
    content: "";
  }

  .site-footer__main {
    position: relative;
    z-index: 1;
    padding: 20px 0 10px;
  }

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

  .footer-grid > :first-child,
  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(149, 197, 241, 0.2);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
    box-shadow: 0 18px 42px rgba(0, 11, 29, 0.22);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .footer-brand::after {
    position: absolute;
    top: 0;
    left: 20px;
    width: 46px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: linear-gradient(90deg, var(--orange-500), #ffb15f);
    content: "";
  }

  .footer-brand h2 {
    margin-bottom: 8px;
    font-size: 25px;
    letter-spacing: -0.04em;
  }

  .footer-brand__intro {
    margin-bottom: 12px;
    color: #c5d7e9;
    font-size: 13px;
    line-height: 1.75;
  }

  .footer-brand__operator {
    margin-bottom: 0;
    padding: 9px 11px;
    border: 1px solid rgba(149, 197, 241, 0.14);
    border-radius: 12px;
    color: #a9bed3;
    background: rgba(1, 18, 39, 0.25);
    font-size: 11px;
    line-height: 1.55;
  }

  .footer-brand__operator span {
    display: block;
    margin-bottom: 2px;
    color: #72b7ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
  }

  .footer-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .footer-mobile-action {
    min-width: 0;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 9px 11px;
    border: 1px solid rgba(116, 183, 255, 0.3);
    border-radius: 14px;
    color: #fff;
    background: rgba(8, 107, 232, 0.17);
    text-decoration: none;
  }

  .footer-mobile-action span {
    margin-bottom: 2px;
    color: #9fc9f4;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .footer-mobile-action strong {
    max-width: 100%;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer-mobile-action--primary {
    border-color: rgba(255, 181, 103, 0.5);
    background: linear-gradient(135deg, #ff751a, #f45d09);
    box-shadow: 0 10px 24px rgba(244, 93, 9, 0.2);
  }

  .footer-mobile-action--primary span {
    color: #fff2e5;
  }

  .footer-group {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(149, 197, 241, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .footer-group h3 {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-group h3::before {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #59aaff, #086be8);
    box-shadow: 0 0 0 4px rgba(8, 107, 232, 0.12);
    content: "";
  }

  .footer-links {
    gap: 5px;
  }

  .footer-links a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 7px 9px;
    border: 1px solid rgba(149, 197, 241, 0.08);
    border-radius: 10px;
    color: #d1e0ee;
    background: rgba(1, 18, 39, 0.2);
    font-size: 12px;
    line-height: 1.25;
  }

  .footer-links a:active {
    border-color: rgba(116, 183, 255, 0.38);
    background: rgba(8, 107, 232, 0.2);
  }

  .footer-group--help {
    grid-column: 1 / -1;
  }

  .footer-group--help .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    position: relative;
    z-index: 1;
    padding: 0 0 18px;
    border-top: 0;
    background: transparent;
    font-size: 10px;
    line-height: 1.65;
  }

  .site-footer__legal .container {
    padding: 12px 14px;
    border: 1px solid rgba(149, 197, 241, 0.12);
    border-radius: 15px;
    color: #91a9c0;
    background: rgba(1, 18, 39, 0.28);
  }

  .mobile-bottom-nav {
    right: 10px;
    bottom: 8px;
    left: 10px;
    height: calc(66px + env(safe-area-inset-bottom));
    gap: 2px;
    padding: 5px 4px calc(5px + env(safe-area-inset-bottom));
    border: 1px solid rgba(191, 210, 227, 0.9);
    border-radius: 22px;
    background: rgba(250, 252, 255, 0.94);
    box-shadow: 0 16px 42px rgba(6, 38, 77, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .mobile-bottom-nav a {
    min-width: 0;
    flex-direction: column;
    gap: 2px;
    border-radius: 15px;
    font-size: 10px;
    line-height: 1;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    color: #086be8;
    background: linear-gradient(145deg, rgba(8, 107, 232, 0.12), rgba(8, 107, 232, 0.045));
    box-shadow: inset 0 0 0 1px rgba(8, 107, 232, 0.1);
  }

  .mobile-bottom-nav a:active {
    transform: translateY(1px);
  }

  .mobile-bottom-nav__icon {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 auto;
  }

  .mobile-action-bar {
    right: 10px;
    left: 10px;
    padding: 7px;
    border-radius: 22px;
    background: rgba(250, 252, 255, 0.94);
    box-shadow: 0 16px 42px rgba(6, 38, 77, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .mobile-action-bar a {
    border-radius: 15px;
  }

  .feature-grid,
  .process-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

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

  .callout .button {
    width: 100%;
  }
}

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