@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/DM-Sans-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #75ba2d;
  --green-dark: #2f7d32;
  --green-soft: #eaf6d7;
  --yellow: #f6c900;
  --yellow-soft: #ffe36b;
  --yellow-deep: #e0ab00;
  --ink: #20411f;
  --text: #345235;
  --muted: #5b765a;
  --paper: #fffdf6;
  --white: #ffffff;
  --border: rgba(117, 186, 45, 0.18);
  --shadow: 0 22px 60px rgba(72, 123, 42, 0.16);
  --card-shadow: 0 14px 40px rgba(49, 90, 38, 0.08);
}

html[data-theme="dark"] {
  --green: #8fd655;
  --green-dark: #b5f08a;
  --green-soft: rgba(143, 214, 85, 0.14);
  --yellow: #f6c900;
  --yellow-soft: #ffd94d;
  --yellow-deep: #ffbe0b;
  --ink: #f1f7e8;
  --text: #dbe7d6;
  --muted: #9fb29c;
  --paper: #0e1711;
  --white: #17231b;
  --border: rgba(143, 214, 85, 0.16);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  --card-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 201, 0, 0.24), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(117, 186, 45, 0.22), transparent 24%),
    linear-gradient(180deg, #f9fff0 0%, var(--paper) 48%, #ffffff 100%);
  min-height: 100vh;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(246, 201, 0, 0.09), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(117, 186, 45, 0.1), transparent 24%),
    linear-gradient(180deg, #101913 0%, var(--paper) 48%, #0b120d 100%);
}

a {
  color: inherit;
}

.text-ink {
  color: var(--ink);
}

.brand-shell {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .brand-shell {
  background: rgba(18, 28, 21, 0.84);
}

.brand-shell::before,
.brand-shell::after {
  content: "";
  position: absolute;
  border-radius: 5px;
  pointer-events: none;
}

.brand-shell::before {
  width: 360px;
  height: 360px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(246, 201, 0, 0.25), transparent 65%);
}

.brand-shell::after {
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(117, 186, 45, 0.18), transparent 65%);
}

.brand-shell > .row {
  position: relative;
  z-index: 1;
}

.stage-not-found-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.stage-not-found-page .stage-copy {
  max-width: 44rem;
}

.stage-search-card--compact {
  max-width: 42rem;
}

.stage-not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin: 1.25rem 0 1rem;
}

.stage-not-found-links__secondary {
  color: var(--muted);
  font-weight: 700;
}

.stage-not-found-art {
  display: flex;
  justify-content: center;
}

.stage-not-found-art__panel {
  position: relative;
  width: min(100%, 22rem);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background:
    radial-gradient(circle at top right, rgba(246, 201, 0, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 246, 0.82));
  box-shadow: var(--card-shadow);
}

html[data-theme="dark"] .stage-not-found-art__panel {
  background:
    radial-gradient(circle at top right, rgba(246, 201, 0, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(23, 35, 27, 0.92), rgba(18, 28, 21, 0.82));
}

.stage-not-found-art__logo {
  display: block;
  width: min(100%, 15rem);
  margin: 0 auto;
}

.stage-not-found-art__badge {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-card + .legal-card {
  margin-top: 1.25rem;
}

.legal-side-card {
  position: sticky;
  top: 1.5rem;
}

.legal-side-note {
  margin-top: 1rem;
}

.legal-contact-form {
  gap: 1rem;
}

.legal-contact-form__textarea {
  min-height: 10rem;
  resize: vertical;
}

.stage-legal-page.stage-taxonomy-page .stage-copy,
.stage-legal-page .stage-copy,
.stage-legal-page.stage-taxonomy-page .stage-hero__title,
.stage-legal-page .stage-hero__title,
.stage-legal-page .stage-hero__lead {
  max-width: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
}

html[data-theme="dark"] .site-footer {
  background: rgba(255, 255, 255, 0.02);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.site-footer__brand {
  max-width: 30rem;
}

.site-footer__mark {
  display: inline-flex;
  margin-bottom: 0.9rem;
}

.site-footer__logo {
  width: 11rem;
  height: auto;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  align-items: center;
}

.site-footer__links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-footer__cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.site-footer__links a:hover,
.site-footer__links a:focus,
.site-footer__cookie-button:hover,
.site-footer__cookie-button:focus {
  color: var(--green-dark);
}

.cookie-consent {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  width: min(32rem, calc(100vw - 2rem));
}

.cookie-consent__card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .cookie-consent__card {
  background: rgba(18, 28, 21, 0.96);
}

.cookie-consent__title {
  margin: 0.6rem 0 0.5rem;
  color: var(--ink);
  font-size: 1.3rem;
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 7, 0.6);
}

.cookie-modal__dialog {
  position: relative;
  width: min(40rem, calc(100vw - 2rem));
  margin: min(8vh, 4rem) auto;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .cookie-modal__dialog {
  background: #132019;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-modal__close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
}

.cookie-modal__body {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.cookie-toggle-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
}

html[data-theme="dark"] .cookie-toggle-card {
  background: rgba(255, 255, 255, 0.04);
}

.cookie-toggle-card--interactive {
  cursor: pointer;
}

.cookie-toggle-card input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
}

.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .stage-not-found-layout {
    grid-template-columns: 1fr;
  }

  .stage-not-found-art {
    order: -1;
  }

  .legal-side-card {
    position: static;
  }

  .cookie-consent {
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

.brand-logo {
  max-width: 470px;
  margin-bottom: 1.125rem;
}

.hero-pill,
.status-label {
  display: inline-block;
  padding: 0.625rem 1rem;
  border-radius: 5px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-label {
  background: rgba(47, 125, 50, 0.1);
}

.hero-title {
  margin: 1rem 0 0.875rem;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-copy,
.info-card p,
.panel-card p,
.waitlist-card p {
  line-height: 1.7;
}

.hero-lead {
  max-width: 58ch;
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
}

.hero-tagline {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.btn-brand {
  color: #234020;
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow));
  border: 0;
  box-shadow: 0 16px 34px rgba(246, 201, 0, 0.28);
  font-weight: 800;
}

.btn-brand:hover,
.btn-brand:focus {
  color: #234020;
  transform: translateY(-1px);
}

.btn-outline-brand {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(47, 125, 50, 0.18);
  font-weight: 800;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .btn-outline-brand {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(143, 214, 85, 0.2);
}

html[data-theme="dark"] .btn-outline-brand:hover,
html[data-theme="dark"] .btn-outline-brand:focus {
  background: rgba(255, 255, 255, 0.08);
}

.waitlist-card,
.panel-card,
.info-card {
  padding: 1.75rem;
  border-radius: 5px;
  border: 1px solid var(--border);
}

.waitlist-card {
  background: linear-gradient(180deg, rgba(117, 186, 45, 0.12), rgba(255, 255, 255, 0.96));
}

.panel-card,
.info-card {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow);
}

html[data-theme="dark"] .waitlist-card {
  background: linear-gradient(180deg, rgba(143, 214, 85, 0.12), rgba(20, 31, 23, 0.96));
}

html[data-theme="dark"] .panel-card,
html[data-theme="dark"] .info-card {
  background: rgba(20, 31, 23, 0.92);
}

html[data-theme="dark"] .stage-search-card {
  background: linear-gradient(135deg, rgba(255, 217, 77, 0.14), rgba(23, 35, 27, 0.96));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .stage-chip {
  background: rgba(255, 255, 255, 0.92);
  color: #6ea92c;
}

html[data-theme="dark"] .stage-proof-card {
  background: linear-gradient(180deg, rgba(26, 40, 30, 0.96), rgba(37, 55, 43, 0.92));
}

html[data-theme="dark"] .stage-proof-card p,
html[data-theme="dark"] .stage-section-note,
html[data-theme="dark"] .stage-drop-item span,
html[data-theme="dark"] .stage-closing-metrics span {
  color: var(--muted);
}

html[data-theme="dark"] .stage-radar-card--light {
  background: rgba(18, 29, 22, 0.96);
}

html[data-theme="dark"] .stage-link-cloud__item {
  background: rgba(31, 46, 35, 0.98);
  border-color: rgba(143, 214, 85, 0.16);
  color: var(--ink);
}

html[data-theme="dark"] .stage-link-cloud__item small {
  color: #c6d9c3;
}

html[data-theme="dark"] .stage-strip__inner div {
  background: rgba(30, 44, 34, 0.96);
}

html[data-theme="dark"] .stage-home-product-card__summary div,
html[data-theme="dark"] .stage-compare-card__summary div {
  background: rgba(28, 43, 32, 0.96);
  border-color: rgba(143, 214, 85, 0.14);
}

html[data-theme="dark"] .stage-category-card {
  background: rgba(30, 44, 34, 0.98);
  border-color: rgba(143, 214, 85, 0.14);
}

html[data-theme="dark"] .stage-category-card span {
  color: #c6d9c3;
}

html[data-theme="dark"] .stage-closing-card {
  background: linear-gradient(135deg, rgba(11, 20, 14, 0.98), rgba(22, 38, 28, 0.98));
}

.brand-input {
  min-height: 54px;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 5px;
}

.brand-input::placeholder {
  color: rgba(52, 82, 53, 0.58);
  opacity: 1;
}

html[data-theme="dark"] .brand-input {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(143, 214, 85, 0.18);
}

html[data-theme="dark"] .brand-input::placeholder {
  color: rgba(219, 231, 214, 0.58);
}

.brand-input:focus {
  border-color: rgba(47, 125, 50, 0.38);
  box-shadow: 0 0 0 0.25rem rgba(117, 186, 45, 0.16);
}

html[data-theme="dark"] .brand-input:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(47, 125, 50, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.theme-toggle__icon {
  font-size: 0.95rem;
  line-height: 1;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(143, 214, 85, 0.2);
}

.consent-check {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.consent-check input {
  margin-top: 0.25rem;
}

.small-note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.success-message {
  display: none;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(117, 186, 45, 0.22);
  border-radius: 5px;
  background: rgba(117, 186, 45, 0.14);
  color: var(--green-dark);
  font-weight: 700;
}

.success-message.is-visible {
  display: block;
}

.error-message {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(224, 171, 0, 0.28);
  border-radius: 5px;
  background: rgba(246, 201, 0, 0.12);
  color: #7a5a00;
  font-weight: 700;
}

.catalog-review-shell {
  padding: 1.75rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.catalog-review-title {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.catalog-review-copy {
  color: var(--muted);
  line-height: 1.6;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.admin-stat-value {
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.catalog-review-table th {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-review-thumb,
.catalog-review-detail-image {
  display: block;
  border-radius: 5px;
  background: #f7f7f2;
  object-fit: cover;
}

.catalog-review-thumb {
  width: 150px;
  height: 150px;
}

.catalog-review-thumb-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  border: 1px dashed rgba(47, 125, 50, 0.18);
}

.catalog-review-badge {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.25rem 0.55rem;
  border-radius: 5px;
  background: rgba(117, 186, 45, 0.14);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.catalog-review-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
  gap: 1rem;
}

.catalog-review-figure {
  margin: 0;
}

.catalog-review-detail-image {
  width: 150px;
  height: 150px;
}

.catalog-review-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.catalog-review-meta dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-review-meta dd {
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.catalog-review-offers {
  display: grid;
  gap: 0.9rem;
}

.catalog-review-offer {
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: rgba(117, 186, 45, 0.06);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: 1.25rem;
  border-right: 1px solid rgba(117, 186, 45, 0.16);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.admin-sidebar-inner {
  display: grid;
  gap: 1.5rem;
}

.admin-main {
  min-width: 0;
}

.admin-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--ink);
}

.admin-brand strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.admin-brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-environment-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-nav {
  display: grid;
  gap: 0.5rem;
}

.admin-nav-title {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-nav-link {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(117, 186, 45, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.admin-nav-link.is-active {
  background: rgba(117, 186, 45, 0.14);
  color: var(--green-dark);
}

.merchant-form .form-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.merchant-textarea {
  min-height: 150px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
}

.merchant-stat-card {
  display: grid;
  gap: 0.4rem;
}

.merchant-stat-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.merchant-stat-value {
  color: var(--ink);
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
}

.merchant-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.merchant-metrics-grid div {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 5px;
  border: 1px solid rgba(117, 186, 45, 0.14);
  background: rgba(117, 186, 45, 0.06);
}

.merchant-metrics-grid strong {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.merchant-metrics-grid span {
  color: var(--ink);
  font-weight: 700;
}

.cf-turnstile {
  min-height: 65px;
}

.feature-ticks {
  padding-left: 0;
  list-style: none;
}

.feature-ticks li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.875rem;
  color: var(--ink);
  font-weight: 600;
}

.feature-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-deep);
  font-weight: 900;
}

.section-head {
  width: 100%;
  max-width: none;
}

.section-title {
  margin-bottom: 0.625rem;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

.info-card strong {
  display: inline-block;
  margin-bottom: 0.625rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(117, 186, 45, 0.15);
  color: #6a8067;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 600;
}

.stage-home {
  position: relative;
}

.stage-hero {
  padding: 1.5rem;
}

.stage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stage-mark {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}

.stage-mark__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100px;
}

.stage-topbar__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.stage-topbar__status,
.stage-section-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.stage-copy {
  display: grid;
  gap: 1.1rem;
}

.stage-kicker,
.stage-section-kicker {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-hero__title {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
}

.stage-hero__lead {
  margin-bottom: 0;
  max-width: 42rem;
  color: var(--muted);
}

.stage-search-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(246, 201, 0, 0.26);
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(255, 227, 107, 0.26), rgba(255, 255, 255, 0.96));
  box-shadow: 0 24px 54px rgba(246, 201, 0, 0.14);
}

.stage-search-label {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.stage-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.stage-search-input {
  background: rgba(255, 255, 255, 0.92);
  min-height: 60px;
  font-size: 1.05rem;
  font-weight: 600;
}

html[data-theme="dark"] .stage-search-input {
  background: rgba(255, 255, 255, 0.05);
}

.stage-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stage-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(47, 125, 50, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.stage-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.stage-proof-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem;
  border: 1px solid rgba(117, 186, 45, 0.16);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 246, 215, 0.6));
}

.stage-proof-card strong,
.stage-radar-card__title,
.stage-product-card__title {
  color: var(--ink);
}

.stage-proof-card p,
.stage-radar-card p,
.stage-section-note,
.stage-drop-item span,
.stage-closing-metrics span {
  line-height: 1.6;
}

.stage-radar-stack {
  display: grid;
  gap: 1rem;
}

.stage-radar-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.stage-radar-card--light {
  background: rgba(255, 255, 255, 0.94);
}

.stage-radar-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.stage-radar-card__title {
  margin: 0.9rem 0 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.stage-radar-card__eyebrow {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-drop-list,
.stage-priority-list {
  margin: 0;
  padding: 0;
}

.stage-drop-list {
  list-style: none;
}

.stage-drop-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(47, 125, 50, 0.1);
}

.stage-drop-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.stage-drop-item strong,
.stage-drop-item em {
  display: block;
}

.stage-link-clean {
  color: inherit;
  text-decoration: none;
}

.stage-link-clean:hover {
  color: var(--brand-green-strong);
}

.stage-drop-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stage-drop-item em {
  color: var(--green-dark);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 800;
}

.stage-priority-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}

.stage-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stage-link-cloud--stacked {
  display: grid;
}

.stage-link-cloud__item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(117, 186, 45, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.stage-link-cloud__item small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.stage-strip {
  padding-bottom: 3rem;
}

.stage-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stage-strip__inner div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(117, 186, 45, 0.15);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
}

.stage-strip__inner strong {
  color: var(--ink);
}

.stage-strip__inner span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stage-product-card {
  display: grid;
  gap: 1.2rem;
}

.stage-home-product-card,
.stage-compare-card,
.stage-taxonomy-card,
.stage-brand-card {
  display: grid;
  gap: 1rem;
}

.stage-home-product-card__media {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.stage-home-product-card__image {
  width: 220px;
  height: 220px;
  display: block;
  border-radius: 5px;
  background: #f7f7f2;
  object-fit: cover;
}

.stage-home-product-card__image--empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed rgba(47, 125, 50, 0.18);
}

.stage-home-product-card__body {
  display: grid;
  gap: 0.85rem;
}

.stage-home-product-card__meta,
.stage-compare-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.stage-home-product-card__category {
  text-decoration: none;
}

.stage-home-product-card__title,
.stage-compare-card__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.stage-home-product-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.stage-home-product-card__summary,
.stage-compare-card__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.stage-home-product-card__summary div,
.stage-compare-card__summary div {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border-radius: 5px;
  border: 1px solid rgba(117, 186, 45, 0.14);
  background: rgba(117, 186, 45, 0.06);
}

.stage-home-product-card__summary small,
.stage-compare-card__summary small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-home-product-card__summary strong,
.stage-compare-card__summary strong {
  color: var(--ink);
}

.stage-home-product-card__actions {
  display: flex;
}

.stage-compare-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stage-compare-card__head strong {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.stage-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stage-category-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(117, 186, 45, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-decoration: none;
}

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

.stage-product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.stage-product-card__price {
  display: grid;
  justify-items: end;
  text-align: right;
}

.stage-product-card__price small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stage-product-card__price strong {
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}

.stage-product-card__price span {
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.stage-product-card__title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.18;
}

.stage-history-card {
  padding: 1rem;
  border: 1px solid rgba(47, 125, 50, 0.12);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(234, 246, 215, 0.46), rgba(255, 255, 255, 0.94));
}

.stage-history-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.stage-history-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 0.45rem;
  height: 92px;
}

.stage-history-bars span {
  border-radius: 5px;
  background: linear-gradient(180deg, var(--yellow), var(--green));
  box-shadow: inset 0 -10px 16px rgba(32, 65, 31, 0.08);
}

.stage-offer-list {
  display: grid;
  gap: 0.7rem;
}

.stage-offer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 5px;
  border: 1px solid rgba(117, 186, 45, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

html[data-theme="dark"] .stage-offer-row {
  border-color: rgba(143, 214, 85, 0.16);
  background: rgba(20, 31, 23, 0.92);
}

.stage-offer-row.is-best {
  border-color: rgba(246, 201, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 227, 107, 0.28), rgba(255, 255, 255, 0.96));
}

html[data-theme="dark"] .stage-offer-row.is-best {
  border-color: rgba(246, 201, 0, 0.22);
  background: linear-gradient(135deg, rgba(246, 201, 0, 0.12), rgba(20, 31, 23, 0.96));
}

.stage-offer-row span {
  color: var(--ink);
  font-weight: 600;
}

.stage-offer-row__meta {
  display: grid;
  gap: 0.2rem;
}

.stage-offer-row__status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border: 1px solid rgba(117, 186, 45, 0.2);
  border-radius: 5px;
  background: rgba(91, 118, 90, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-offer-row__merchant {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.stage-offer-row__meta small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.stage-offer-row strong {
  color: var(--green-dark);
}

html[data-theme="dark"] .stage-offer-row strong,
html[data-theme="dark"] .stage-offer-row__merchant {
  color: var(--green-dark);
}

.stage-offer-row__price-block {
  display: grid;
  gap: 0.18rem;
  justify-items: end;
}

.stage-offer-row__price-block small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.stage-offer-row--inactive {
  border-style: dashed;
  border-color: rgba(91, 118, 90, 0.24);
  background: rgba(248, 250, 246, 0.9);
  opacity: 0.9;
}

.stage-offer-row--inactive .stage-offer-row__merchant,
.stage-offer-row--inactive strong {
  color: var(--ink);
}

html[data-theme="dark"] .stage-offer-row--inactive {
  border-color: rgba(159, 178, 156, 0.28);
  background: rgba(18, 28, 21, 0.72);
}

html[data-theme="dark"] .stage-offer-row--inactive .stage-offer-row__merchant,
html[data-theme="dark"] .stage-offer-row--inactive strong {
  color: var(--text);
}

.stage-search-turnstile {
  display: none;
}

.search-turnstile-message {
  min-height: 1.4rem;
}

.stage-search-page {
  min-height: auto;
}

.stage-search-page--results {
  padding: 0.85rem 1rem;
}

.stage-search-page--results .stage-copy {
  gap: 0.55rem;
}

.stage-search-page--results .stage-hero__title {
  max-width: 30rem;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  line-height: 0.98;
  margin-bottom: 0.2rem;
}

.stage-search-page--results .stage-topbar {
  margin-bottom: 0.5rem;
}

.stage-search-page--results .stage-search-card {
  padding: 1rem;
  gap: 0.75rem;
}

.stage-search-page--results .stage-search-label {
  font-size: 0.82rem;
  margin-bottom: -0.15rem;
}

.stage-search-page--results .stage-search-input {
  min-height: 56px;
  font-size: 1rem;
}

.stage-search-page--results .stage-search-button {
  min-height: 56px;
  padding-inline: 1.25rem;
}

.stage-search-page--results .small-note {
  font-size: 0.78rem;
}

.stage-result-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

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

.stage-result-card--compact .stage-result-card__image {
  width: 220px;
  height: 220px;
}

.stage-result-card--compact .stage-result-card__media {
  display: flex;
  justify-content: center;
}

.stage-result-card__media {
  min-width: 0;
}

.status-label--verified {
  background: rgba(120, 128, 138, 0.12);
  color: #6f7781;
}

html[data-theme="dark"] .status-label--verified {
  background: rgba(161, 170, 181, 0.12);
  color: #aab2bc;
}

.stage-result-card__image {
  width: 160px;
  height: 160px;
  display: block;
  border-radius: 5px;
  background: #f7f7f2;
  object-fit: cover;
}

.stage-result-card__image--empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed rgba(47, 125, 50, 0.18);
}

.stage-result-card__body {
  display: grid;
  gap: 1rem;
}

.stage-result-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.stage-result-card__brand {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.stage-result-card__brand-link {
  text-decoration: none;
}

.stage-result-card__brand-link:hover {
  color: var(--brand-green-strong);
}

.stage-result-card__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.2;
}

.stage-result-card__description {
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.stage-result-card__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.stage-result-card__summary div {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border-radius: 5px;
  border: 1px solid rgba(117, 186, 45, 0.14);
  background: rgba(117, 186, 45, 0.06);
}

.stage-result-card__summary small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-result-card__summary strong {
  color: var(--ink);
}

.stage-result-card__actions {
  display: flex;
  justify-content: flex-start;
}

.stage-product-detail-card {
  padding: 1rem;
}

.stage-product-detail-layout {
  display: grid;
  gap: 1.25rem;
}

.stage-product-page {
  padding: 1rem 1.15rem;
  overflow: clip;
}

.stage-product-page .stage-topbar {
  margin-bottom: 0.5rem;
}

.stage-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.stage-breadcrumb a,
.stage-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

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

.stage-product-ean {
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-product-verification {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
}

.stage-product-verification__badge {
  background: rgba(47, 125, 50, 0.16);
}

.stage-product-verification small {
  color: var(--muted);
  font-size: 0.92rem;
}

.stage-product-summary__link {
  color: inherit;
  text-decoration: none;
}

.stage-product-summary__link:hover {
  color: var(--brand-green-strong);
}

.stage-product-cta {
  margin-top: 1rem;
}

.stage-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.stage-price-history-card {
  display: grid;
  gap: 1rem;
}

.stage-product-description {
  display: grid;
  gap: 1rem;
}

.stage-product-description__intro {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.stage-product-highlights {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.stage-taxonomy-page .stage-copy {
  max-width: 42rem;
}

.stage-taxonomy-page .stage-hero__title {
  margin-bottom: 0.75rem;
}

.stage-product-highlights li {
  line-height: 1.6;
}

.stage-related-products {
  display: grid;
  gap: 1.25rem;
}

.stage-price-history-card__range {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: right;
}

.stage-price-chart {
  display: grid;
  gap: 0.65rem;
}

.stage-price-chart__canvas-wrap {
  position: relative;
  min-height: 260px;
}

.stage-price-chart__canvas {
  width: 100%;
  height: 260px !important;
}

.stage-product-gallery {
  display: grid;
  gap: 1rem;
}

.stage-product-gallery__viewport {
  position: relative;
  min-height: 280px;
}

.stage-product-detail-image {
  width: 100%;
  max-width: 480px;
  display: block;
  border-radius: 5px;
  background: #f7f7f2;
  object-fit: cover;
}

.stage-product-gallery__slide {
  display: none;
}

.stage-product-gallery__slide.is-active {
  display: block;
}

.stage-product-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.stage-product-gallery__button {
  min-width: 100px;
}

.stage-product-gallery__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stage-product-gallery__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: rgba(47, 125, 50, 0.22);
}

.stage-product-gallery__dot.is-active {
  background: var(--green-dark);
}

.stage-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.stage-pagination__status {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.stage-pagination__numbers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.stage-pagination__number {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  border: 1px solid rgba(117, 186, 45, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.stage-pagination__number.is-active {
  border-color: rgba(246, 201, 0, 0.45);
  background: linear-gradient(135deg, rgba(255, 227, 107, 0.52), rgba(234, 246, 215, 0.94));
}

.stage-editorial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 255, 241, 0.94));
}

.stage-closing-card {
  background: linear-gradient(135deg, rgba(32, 65, 31, 0.98), rgba(47, 125, 50, 0.94));
  color: rgba(255, 255, 255, 0.92);
}

.stage-closing-card .section-title,
.stage-closing-card .section-copy,
.stage-closing-card .stage-section-kicker {
  color: inherit;
}

.stage-closing-metrics {
  display: grid;
  gap: 0.8rem;
}

.stage-closing-metrics div {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
}

.stage-closing-metrics strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .brand-shell {
    padding: 1.375rem;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(117, 186, 45, 0.16);
  }

  .stage-strip__inner,
  .stage-proof-grid,
  .stage-proof-grid--metrics {
    grid-template-columns: 1fr 1fr;
  }

  .stage-topbar,
  .stage-product-card__head,
  .stage-radar-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-topbar__meta,
  .stage-product-card__price,
  .stage-price-history-card__range {
    justify-items: start;
    text-align: left;
  }

  .stage-section-heading {
    flex-direction: column;
  }

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

  .stage-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stage-search-page--results .stage-hero__title {
    font-size: 1.1rem;
    max-width: none;
  }

  .stage-result-card__summary {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 575.98px) {
  .brand-shell {
    border-radius: 5px;
    padding: 1.125rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .merchant-metrics-grid {
    grid-template-columns: 1fr;
  }

  .stage-search-row,
  .stage-proof-grid,
  .stage-proof-grid--metrics,
  .stage-strip__inner {
    grid-template-columns: 1fr;
  }

  .stage-mark__logo {
    max-height: 74px;
  }

  .stage-home-product-card__summary,
  .stage-compare-card__summary,
  .stage-category-grid {
    grid-template-columns: 1fr;
  }

  .stage-home-product-card__image {
    width: 190px;
    height: 190px;
  }
}

.stage-results-sort {
  display: grid;
  gap: 0.5rem;
  min-width: min(100%, 20rem);
}

.stage-results-sort__label {
  color: var(--ink-soft, #5f7152);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-results-sort__select {
  min-width: 16rem;
}

@media (max-width: 991.98px) {
  .stage-results-sort,
  .stage-results-sort__select {
    min-width: 100%;
  }
}

.stage-results-sort__controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.stage-results-sort__button {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .stage-results-sort__controls {
    flex-direction: column;
    align-items: stretch;
  }
}

.editorial-page {
  position: relative;
  z-index: 1;
}

.editorial-hero__topbar {
  margin-bottom: 1.5rem;
}

.editorial-meta-row,
.editorial-hero__actions,
.editorial-history-pills,
.editorial-alt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.editorial-status-chip {
  padding: 0.35rem 0.7rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-soft);
  color: var(--green-dark);
}

.editorial-status-chip--published {
  background: rgba(117, 186, 45, 0.18);
}

.editorial-status-chip--review {
  background: rgba(246, 201, 0, 0.18);
  color: #946e00;
}

.editorial-status-chip--draft {
  background: rgba(32, 65, 31, 0.12);
  color: var(--ink);
}

.editorial-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.editorial-side-stack,
.editorial-alt-list,
.editorial-faq-list {
  display: grid;
  gap: 1rem;
}

.editorial-product-card__media {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 1rem;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 246, 215, 0.6));
}

html[data-theme="dark"] .editorial-product-card__media {
  background: linear-gradient(180deg, rgba(29, 40, 31, 0.94), rgba(18, 28, 21, 0.86));
}

.editorial-product-card__media img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.editorial-product-card__placeholder {
  color: var(--muted);
  font-weight: 700;
}

.editorial-product-card__body {
  margin-top: 1rem;
}

.editorial-product-card__body h2,
.editorial-faq-item h3,
.editorial-alt-item h3 {
  color: var(--ink);
}

.editorial-copy-card p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.editorial-history-pills span,
.editorial-alt-meta span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-weight: 700;
}

html[data-theme="dark"] .editorial-history-pills span,
html[data-theme="dark"] .editorial-alt-meta span {
  background: rgba(23, 35, 27, 0.7);
}

.editorial-side-card h2 {
  margin-bottom: 1rem;
}

.editorial-signal-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.editorial-signal-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.editorial-signal-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.editorial-methodology-list {
  display: grid;
  gap: 0.85rem;
}

.editorial-methodology-list dt {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-methodology-list dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.editorial-preview-note p {
  color: var(--ink);
}

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