@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: 2rem;
  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: 999px;
  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: 2rem;
  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: 1.5rem;
  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: 1.75rem;
  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: 1.25rem;
  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: 999px;
  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: 1.75rem;
  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: 1rem;
}

.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: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.theme-toggle__icon {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(255, 211, 30, 0.18);
  font-size: 0.9rem;
  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: 1rem;
  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: 1rem;
  background: rgba(246, 201, 0, 0.12);
  color: #7a5a00;
  font-weight: 700;
}

.catalog-review-shell {
  padding: 1.75rem;
  border-radius: 1.75rem;
  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: 1rem;
  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: 999px;
  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: 1rem;
  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: 1rem;
  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: 1rem;
  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: 1.5rem;
  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: 999px;
  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: 1.35rem;
  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: 1rem;
  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: 1.25rem;
  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: 1.2rem;
  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: 1rem;
  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: 1rem;
  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: 1.15rem;
  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: 999px 999px 0 0;
  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: 1rem;
  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__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-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: 1.15rem;
  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: 1rem;
  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;
}

.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 svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.stage-price-chart__axis {
  stroke: rgba(47, 125, 50, 0.18);
  stroke-width: 1;
}

.stage-price-chart__line {
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-price-chart__point circle {
  fill: var(--yellow);
  stroke: var(--green-dark);
  stroke-width: 2;
}

.stage-price-chart__labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.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: 1.2rem;
  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: 999px;
  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: 999px;
  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: 1rem;
  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: 1.5rem;
    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%;
  }
}

/*
 * 2026 refresh: editorial cosmetic layer inspired by /home/design.
 * Applied as late overrides to preserve the existing PHP/Bootstrap structure.
 */
:root {
  --green: #0b1610;
  --green-dark: #040d08;
  --green-soft: rgba(4, 13, 8, 0.06);
  --yellow: #ffd31e;
  --yellow-soft: #ffe07d;
  --yellow-deep: #725c00;
  --ink: #1b1c1c;
  --text: #434844;
  --muted: #6f746f;
  --paper: #fbf9f9;
  --white: #ffffff;
  --border: rgba(67, 72, 68, 0.08);
  --shadow: 0 22px 60px rgba(27, 28, 28, 0.08);
  --card-shadow: 0 12px 32px rgba(27, 28, 28, 0.06);
}

html[data-theme="dark"] {
  --green: #d9e6dc;
  --green-dark: #ffffff;
  --green-soft: rgba(255, 255, 255, 0.06);
  --yellow: #ffd31e;
  --yellow-soft: #ffe07d;
  --yellow-deep: #ffe07d;
  --ink: #f2f0f0;
  --text: #d6d7d3;
  --muted: #b4b7b1;
  --paper: #09110c;
  --white: #121c15;
  --border: rgba(195, 200, 195, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --card-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

body {
  font-family: "Inter", "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(114, 92, 0, 0.06), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(4, 13, 8, 0.04), transparent 24%),
    linear-gradient(180deg, #fdfbfb 0%, var(--paper) 55%, #f5f3f3 100%);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(255, 211, 30, 0.07), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #07100b 0%, var(--paper) 55%, #060d08 100%);
}

h1,
h2,
h3,
h4,
.hero-title,
.section-title,
.stage-home-product-card__title,
.stage-result-card__title,
.stage-radar-card__title {
  font-family: "Manrope", "Inter", sans-serif;
}

.brand-shell {
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 0;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

html[data-theme="dark"] .brand-shell {
  background: rgba(12, 18, 14, 0.76);
}

.brand-shell::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 211, 30, 0.14), transparent 64%);
}

.brand-shell::after {
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(4, 13, 8, 0.08), transparent 66%);
}

.site-footer {
  border-top: 0;
  background: rgba(255, 255, 255, 0.36);
}

html[data-theme="dark"] .site-footer {
  background: rgba(9, 17, 12, 0.84);
}

.site-footer__inner {
  align-items: center;
  gap: 1.5rem 3rem;
}

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

.site-footer__eyebrow {
  color: var(--yellow-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links {
  gap: 1rem 1.5rem;
}

.site-footer__links a,
.site-footer__cookie-button {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer__links a,
.site-footer__cookie-button,
.stage-mark,
.btn,
.stage-chip,
.stage-query-pill,
.stage-link-cloud__item,
.stage-category-card,
.stage-offer-row,
.stage-pagination__number {
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-pill,
.status-label {
  background: rgba(255, 211, 30, 0.14);
  color: var(--yellow-deep);
}

.status-label--verified {
  background: rgba(4, 13, 8, 0.08);
  color: var(--muted);
}

.hero-title {
  color: var(--green-dark);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.stage-highlight {
  color: var(--yellow-deep);
}

.hero-lead,
.section-copy,
.panel-card p,
.waitlist-card p {
  color: var(--text);
}

.stage-topbar {
  align-items: center;
  margin-bottom: 2.5rem;
}

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

.theme-toggle {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--card-shadow);
}

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

.btn-brand {
  color: #ffffff;
  background: linear-gradient(135deg, #0b1610, #040d08);
  box-shadow: 0 16px 34px rgba(4, 13, 8, 0.18);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #ffffff;
}

.btn-outline-brand {
  color: var(--green-dark);
  border: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--card-shadow);
}

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

.panel-card,
.info-card,
.waitlist-card,
.stage-radar-card,
.stage-proof-card,
.stage-strip__inner div,
.stage-link-cloud__item,
.stage-category-card,
.stage-home-product-card,
.stage-result-card,
.stage-offer-row,
.stage-home-product-card__summary div,
.stage-result-card__summary div,
.stage-compare-card__summary div {
  border: 0;
}

.waitlist-card,
.panel-card,
.info-card {
  border-radius: 1.6rem;
}

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

html[data-theme="dark"] .panel-card,
html[data-theme="dark"] .info-card {
  background: rgba(18, 28, 21, 0.9);
}

.waitlist-card {
  background: linear-gradient(180deg, rgba(255, 211, 30, 0.1), rgba(255, 255, 255, 0.94));
}

html[data-theme="dark"] .waitlist-card {
  background: linear-gradient(180deg, rgba(255, 211, 30, 0.08), rgba(18, 28, 21, 0.96));
}

.stage-search-card {
  gap: 1.1rem;
  padding: 1.25rem;
  border: 0;
  border-radius: 1.35rem;
  background: rgba(233, 232, 231, 0.92);
  box-shadow: var(--card-shadow);
}

html[data-theme="dark"] .stage-search-card {
  background: rgba(25, 36, 30, 0.96);
}

.stage-search-label,
.stage-kicker,
.stage-section-kicker {
  color: var(--yellow-deep);
  letter-spacing: 0.12em;
}

.brand-input,
.stage-search-input,
.stage-results-sort__select {
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.08);
}

html[data-theme="dark"] .brand-input,
html[data-theme="dark"] .stage-search-input,
html[data-theme="dark"] .stage-results-sort__select {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(195, 200, 195, 0.1);
}

.brand-input:focus,
.stage-search-input:focus,
.stage-results-sort__select:focus {
  border-color: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(4, 13, 8, 0.18),
    0 0 0 0.22rem rgba(4, 13, 8, 0.06);
}

.stage-chip,
.stage-query-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.08);
}

html[data-theme="dark"] .stage-chip,
html[data-theme="dark"] .stage-query-pill {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(195, 200, 195, 0.1);
}

.stage-query-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stage-proof-card {
  padding: 1.2rem;
  border-radius: 1.25rem;
  background: rgba(245, 243, 243, 0.96);
  box-shadow: none;
}

html[data-theme="dark"] .stage-proof-card {
  background: rgba(22, 34, 27, 0.96);
}

.stage-radar-card,
.stage-strip__inner div,
.stage-link-cloud__item,
.stage-category-card {
  background: rgba(245, 243, 243, 0.96);
}

html[data-theme="dark"] .stage-radar-card,
html[data-theme="dark"] .stage-strip__inner div,
html[data-theme="dark"] .stage-link-cloud__item,
html[data-theme="dark"] .stage-category-card {
  background: rgba(20, 31, 23, 0.96);
}

.stage-drop-item {
  padding: 1rem 0;
  border-top: 0;
}

.stage-drop-list {
  display: grid;
  gap: 0.4rem;
}

.stage-home-product-card,
.stage-result-card {
  overflow: hidden;
  padding: 1.15rem;
  border-radius: 1.5rem;
  background: rgba(245, 243, 243, 0.96);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.stage-home-product-card:hover,
.stage-result-card:hover {
  transform: translateY(-2px);
  background: rgba(227, 226, 226, 0.96);
  box-shadow: var(--card-shadow);
}

html[data-theme="dark"] .stage-home-product-card,
html[data-theme="dark"] .stage-result-card {
  background: rgba(20, 31, 23, 0.96);
}

.stage-home-product-card__media,
.stage-result-card__media {
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .stage-home-product-card__media,
html[data-theme="dark"] .stage-result-card__media {
  background: rgba(255, 255, 255, 0.03);
}

.stage-home-product-card__image,
.stage-result-card__image,
.stage-product-detail-image {
  object-fit: contain;
  background: transparent;
}

.stage-home-product-card__image,
.stage-result-card__image {
  width: 100%;
  max-width: 220px;
}

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

.stage-result-card__body,
.stage-home-product-card__body {
  gap: 0.9rem;
}

.stage-result-card__title,
.stage-home-product-card__title {
  font-size: 1.22rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.stage-result-card__description,
.stage-home-product-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.stage-result-card__summary,
.stage-home-product-card__summary {
  gap: 0.7rem;
}

.stage-result-card__summary div,
.stage-home-product-card__summary div {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.06);
}

html[data-theme="dark"] .stage-result-card__summary div,
html[data-theme="dark"] .stage-home-product-card__summary div {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(195, 200, 195, 0.08);
}

.stage-result-card__summary strong,
.stage-home-product-card__summary strong {
  font-size: 1.05rem;
}

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

.stage-search-page--results .stage-search-card {
  background: rgba(245, 243, 243, 0.94);
}

.stage-results-sort {
  gap: 0.65rem;
}

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

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

.stage-product-shell .brand-shell {
  overflow: visible;
}

.stage-product-detail-card {
  padding: 1.1rem;
  background: rgba(245, 243, 243, 0.96);
}

.stage-product-gallery__viewport {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme="dark"] .stage-product-gallery__viewport {
  background: rgba(255, 255, 255, 0.03);
}

.stage-product-gallery__controls {
  justify-content: center;
}

.stage-product-gallery__dot {
  width: 12px;
  height: 12px;
  background: rgba(67, 72, 68, 0.18);
}

.stage-product-gallery__dot.is-active {
  background: var(--yellow-deep);
}

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

.stage-product-summary div {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(245, 243, 243, 0.96);
}

html[data-theme="dark"] .stage-product-summary div {
  background: rgba(20, 31, 23, 0.96);
}

.stage-product-cta .btn-brand {
  min-width: 180px;
}

.stage-price-history-card,
#ofertas.panel-card {
  background: rgba(245, 243, 243, 0.96);
}

html[data-theme="dark"] .stage-price-history-card,
html[data-theme="dark"] #ofertas.panel-card {
  background: rgba(20, 31, 23, 0.96);
}

.stage-price-chart__axis {
  stroke: rgba(67, 72, 68, 0.14);
}

.stage-price-chart__line {
  stroke: var(--yellow-deep);
  stroke-width: 5;
}

.stage-price-chart__point circle {
  fill: var(--yellow);
  stroke: #ffffff;
  stroke-width: 3;
}

.stage-offer-list {
  gap: 0.9rem;
}

.stage-offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.06);
  text-decoration: none;
}

html[data-theme="dark"] .stage-offer-row {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(195, 200, 195, 0.08);
}

.stage-offer-row.is-best {
  background: linear-gradient(135deg, rgba(255, 211, 30, 0.16), rgba(255, 255, 255, 0.86));
}

html[data-theme="dark"] .stage-offer-row.is-best {
  background: linear-gradient(135deg, rgba(255, 211, 30, 0.12), rgba(255, 255, 255, 0.05));
}

.stage-offer-row__cta {
  align-self: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(4, 13, 8, 0.08);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html[data-theme="dark"] .stage-offer-row__cta {
  background: rgba(255, 255, 255, 0.08);
}

.stage-offer-row strong:last-child {
  color: var(--green-dark);
  font-size: 1.15rem;
}

.stage-related-products .stage-result-card--compact {
  background: rgba(245, 243, 243, 0.96);
}

.stage-pagination__number {
  border: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.08);
}

.stage-pagination__number.is-active {
  background: rgba(255, 211, 30, 0.2);
  box-shadow: inset 0 0 0 1px rgba(114, 92, 0, 0.12);
}

.stage-pagination .btn.disabled,
.stage-pagination .btn[aria-disabled="true"] {
  opacity: 0.52;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .stage-result-card,
  .stage-home-product-card {
    padding: 1rem;
  }

  .stage-results-sort__controls {
    flex-direction: column;
    align-items: stretch;
  }

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

  .stage-offer-row {
    grid-template-columns: 1fr auto;
  }

  .stage-offer-row__cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.4rem;
  }

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

  .theme-toggle span[data-theme-toggle-label] {
    display: none;
  }

  .stage-search-card,
  .panel-card,
  .waitlist-card,
  .brand-shell {
    border-radius: 1.25rem;
  }

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

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

  .stage-offer-row strong:last-child {
    justify-self: start;
  }
}

.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: 999px;
  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: 1.5rem;
  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: 999px;
  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;
  }
}

.stage-taxonomy-page .stage-copy {
  gap: 0.9rem;
}

.stage-compare-card,
.stage-taxonomy-card,
.stage-brand-card {
  height: 100%;
}

.stage-compare-card {
  padding: 1.2rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.1), transparent 30%),
    rgba(245, 243, 243, 0.96);
}

html[data-theme="dark"] .stage-compare-card {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.08), transparent 30%),
    rgba(20, 31, 23, 0.96);
}

.stage-compare-card__head strong {
  color: var(--yellow-deep);
  font-size: 1.35rem;
}

.stage-compare-card__summary div,
.stage-category-card {
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.06);
}

html[data-theme="dark"] .stage-compare-card__summary div,
html[data-theme="dark"] .stage-category-card {
  box-shadow: inset 0 0 0 1px rgba(195, 200, 195, 0.08);
}

.stage-category-card {
  padding: 1.05rem 1.1rem;
  border-radius: 1.1rem;
}

.stage-closing-card {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.12), transparent 34%),
    linear-gradient(135deg, #040d08, #0d1711);
}

.stage-closing-card .btn-outline-brand {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.stage-closing-card .btn-outline-brand:hover,
.stage-closing-card .btn-outline-brand:focus {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.editorial-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.editorial-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(4, 13, 8, 0.08);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="dark"] .editorial-status-chip {
  background: rgba(255, 255, 255, 0.08);
}

.editorial-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.editorial-product-card__body h2 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.editorial-faq-item,
.editorial-alt-item {
  padding: 1rem 1.05rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .editorial-faq-item,
html[data-theme="dark"] .editorial-alt-item {
  background: rgba(255, 255, 255, 0.04);
}

.editorial-alt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.legal-card,
.legal-side-card,
.stage-not-found-art__panel {
  background: rgba(245, 243, 243, 0.96);
}

html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .legal-side-card,
html[data-theme="dark"] .stage-not-found-art__panel {
  background: rgba(20, 31, 23, 0.96);
}

.stage-not-found-art__panel {
  border: 0;
  box-shadow: var(--card-shadow);
}

.stage-topbar__brand {
  display: flex;
  align-items: center;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
}

.stage-topbar__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stage-topbar__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.stage-topbar__nav-link:hover,
.stage-topbar__nav-link:focus,
.stage-topbar__nav-link.is-active {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.08);
}

html[data-theme="dark"] .stage-topbar__nav-link:hover,
html[data-theme="dark"] .stage-topbar__nav-link:focus,
html[data-theme="dark"] .stage-topbar__nav-link.is-active {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(195, 200, 195, 0.08);
}

.stage-spotlight-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.12), transparent 34%),
    linear-gradient(135deg, #040d08, #0f1913);
  color: rgba(255, 255, 255, 0.92);
}

.stage-spotlight-card__eyebrow {
  color: rgba(255, 224, 125, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-spotlight-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.stage-spotlight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.stage-spotlight-card__meta span,
.stage-arrival-card__footer span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.stage-spotlight-card__price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.stage-spotlight-card__price-row small {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-spotlight-card__price-row strong {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stage-arrival-card {
  display: grid;
  gap: 0.85rem;
}

.stage-arrival-card__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.stage-arrival-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.stage-arrival-card__footer strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.stage-product-price-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.2rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.12), transparent 32%),
    rgba(245, 243, 243, 0.96);
}

html[data-theme="dark"] .stage-product-price-card {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.1), transparent 32%),
    rgba(20, 31, 23, 0.96);
}

.stage-product-price-card__copy small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-product-price-card__copy strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.stage-product-price-card__copy span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-weight: 700;
}

.stage-product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0;
}

.stage-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.2rem 0 0.1rem;
}

.stage-product-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(67, 72, 68, 0.08);
}

html[data-theme="dark"] .stage-product-tabs a {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(195, 200, 195, 0.08);
}

.stage-toolbar-card {
  padding: 1.1rem 1.2rem;
  border-radius: 1.35rem;
  background: rgba(245, 243, 243, 0.92);
  box-shadow: var(--card-shadow);
}

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

.stage-collection-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.08), transparent 28%),
    rgba(245, 243, 243, 0.96);
}

html[data-theme="dark"] .stage-collection-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 30, 0.08), transparent 28%),
    rgba(20, 31, 23, 0.96);
}

.stage-product-detail-card {
  position: sticky;
  top: 1.2rem;
}

.stage-offer-list__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  padding: 0 1rem 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

  .stage-product-price-card {
    align-items: start;
  }

  .stage-product-detail-card {
    position: static;
  }

  .stage-offer-list__head {
    grid-template-columns: 1fr auto;
  }

  .stage-offer-list__head span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .stage-topbar__nav {
    gap: 0.35rem;
  }

  .stage-topbar__nav-link {
    min-height: 34px;
    padding: 0.4rem 0.65rem;
    font-size: 0.76rem;
  }

  .stage-toolbar-card {
    padding: 1rem;
  }

  .stage-offer-list__head {
    display: none;
  }
}
