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

:root {
  --brand: #1f79df;
  --brand-deep: #0c4a8e;
  --ink: #06111d;
  --ink-muted: #28435b;
  --surface: #f1ece2;
  --surface-strong: #e3dbc8;
  --paper: #faf7f0;
  --line: rgba(6, 17, 29, 0.14);
  --line-strong: rgba(6, 17, 29, 0.28);
  --success: #12724f;
  --warning: #bf7d18;
  --danger: #bf4747;
  --focus: #95c7ff;
  --shadow: 0 18px 42px rgba(6, 17, 29, 0.1);
  --content: min(1160px, calc(100vw - 40px));
  --content-wide: min(1320px, calc(100vw - 40px));
  --hero-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

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

::selection {
  background: rgba(31, 121, 223, 0.18);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

body.menu-open {
  overflow: hidden;
}

.install-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(31, 121, 223, 0.12), transparent 18%),
    linear-gradient(180deg, #f3ede2 0%, #ebe2d2 100%);
}

.install-shell {
  min-height: 100vh;
}

.install-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(243, 237, 226, 0.82);
  border-bottom: 1px solid rgba(6, 17, 29, 0.06);
}

.install-header-inner {
  width: min(1180px, calc(100vw - 72px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.install-header .brand img {
  width: min(220px, 38vw);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(250, 247, 240, 0.76);
  border-bottom: 1px solid rgba(6, 17, 29, 0.06);
}

.header-inner {
  width: var(--content-wide);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 178px;
  height: auto;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  color: var(--ink-muted);
}

.header-nav a {
  position: relative;
  padding-bottom: 6px;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  transition: transform 180ms ease;
}

.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: white;
}

.button-primary:hover {
  background: #1168cb;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: rgba(6, 17, 29, 0.04);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #132435;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(6, 17, 29, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-draft {
  background: rgba(191, 125, 24, 0.16);
  color: #81540d;
}

.status-active {
  background: rgba(18, 114, 79, 0.14);
  color: var(--success);
}

.status-archived {
  background: rgba(6, 17, 29, 0.12);
  color: var(--ink-muted);
}

.availability-available {
  background: rgba(18, 114, 79, 0.14);
  color: var(--success);
}

.availability-on_request {
  background: rgba(191, 125, 24, 0.16);
  color: #81540d;
}

.availability-quote_required {
  background: rgba(31, 121, 223, 0.15);
  color: var(--brand-deep);
}

.table-meta {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.field-help {
  display: inline-block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.pricing-autocomplete {
  position: relative;
}

.pricing-autocomplete-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(6, 17, 29, 0.12);
}

.pricing-autocomplete-option {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.pricing-autocomplete-option:hover,
.pricing-autocomplete-option:focus-visible {
  background: rgba(31, 121, 223, 0.08);
  outline: none;
}

.pricing-autocomplete-option strong {
  font-size: 0.92rem;
}

.pricing-autocomplete-option span {
  color: var(--ink-muted);
  font-size: 0.79rem;
}

.catalog-image-preview {
  margin-top: 12px;
  width: min(320px, 100%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.catalog-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-gallery-admin {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 132px));
  gap: 10px;
  margin-top: 12px;
}

.catalog-gallery-admin-item {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  background: rgba(255, 255, 255, 0.88);
  cursor: default;
}

.catalog-gallery-admin-item img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(10, 75, 145, 0.1);
}

.catalog-gallery-admin-copy {
  display: grid;
  gap: 3px;
}

.catalog-gallery-admin-copy strong {
  color: #10263f;
  font-size: 0.88rem;
}

.catalog-gallery-admin-copy span,
.catalog-gallery-admin-remove {
  color: #60758d;
  font-size: 0.82rem;
}

.catalog-gallery-admin-remove {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    linear-gradient(135deg, rgba(31, 121, 223, 0.16), rgba(31, 121, 223, 0)),
    linear-gradient(180deg, #f5f1e8 0%, #e6decd 100%);
}

.catalog-hero-inner,
.catalog-shell {
  width: var(--content);
  margin: 0 auto;
}

.catalog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: end;
}

.catalog-hero h1,
.catalog-heading h1,
.catalog-family-hero h1,
.catalog-product-hero h1 {
  margin: 14px 0 14px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.catalog-hero p,
.catalog-heading .section-copy,
.catalog-family-hero p,
.catalog-product-hero p {
  max-width: 700px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.catalog-hero-note,
.catalog-empty,
.catalog-filters,
.catalog-family-copy,
.catalog-family-siblings,
.detail-block,
.catalog-panel,
.catalog-product {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.catalog-hero-note {
  padding: 24px;
}

.catalog-hero-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.catalog-panel,
.catalog-product,
.catalog-filters,
.catalog-family-copy,
.catalog-family-siblings,
.detail-block {
  padding: 24px;
}

.catalog-card-media,
.catalog-heading-media,
.catalog-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.catalog-card-media {
  aspect-ratio: 16 / 10;
  margin: -24px -24px 18px;
}

.catalog-heading-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 320px);
  gap: 24px;
  align-items: end;
}

.catalog-heading-media,
.catalog-hero-media {
  aspect-ratio: 4 / 3;
}

.catalog-hero-media {
  min-height: 280px;
}

.catalog-card-media img,
.catalog-heading-media img,
.catalog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-panel h3,
.catalog-product h2,
.detail-block h2 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.catalog-panel p,
.catalog-product p,
.catalog-family-copy p,
.detail-block p {
  color: var(--ink-muted);
}

.catalog-panel-kicker,
.catalog-breadcrumbs,
.catalog-toolbar-copy span {
  color: var(--ink-muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-links,
.catalog-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.catalog-product-meta {
  margin-bottom: 12px;
}

.catalog-link-list,
.variant-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.catalog-link-list a,
.variant-switcher a,
.catalog-breadcrumbs a {
  color: var(--brand-deep);
}

.catalog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.catalog-toolbar-copy {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.filter-section + .filter-section {
  margin-top: 18px;
}

.catalog-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.catalog-attributes {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.catalog-attributes div {
  display: grid;
  grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.catalog-attributes dt {
  color: var(--ink-muted);
  text-transform: capitalize;
}

.catalog-attributes dd {
  margin: 0;
  font-weight: 700;
}

.catalog-empty {
  padding: 28px;
}

.catalog-family-hero,
.catalog-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.catalog-family-body,
.catalog-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 28px;
}

.catalog-product-main,
.catalog-product-side {
  display: grid;
  gap: 24px;
}

.variant-switcher a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
}

.variant-switcher a[aria-current="page"] {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

@media (max-width: 980px) {
  .catalog-heading-with-media,
  .catalog-hero-inner,
  .catalog-layout,
  .catalog-family-hero,
  .catalog-family-body,
  .catalog-product-hero,
  .catalog-product-detail {
    grid-template-columns: 1fr;
  }

  .catalog-products,
  .catalog-grid,
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(135deg, rgba(31, 121, 223, 0.12), rgba(12, 74, 142, 0)),
    linear-gradient(180deg, #f7f4ed 0%, #ebe5d8 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  top: -6vw;
  left: -16vw;
  width: 38vw;
  height: 120vh;
  background: linear-gradient(180deg, rgba(31, 121, 223, 0.95), rgba(31, 121, 223, 0.72));
  transform: rotate(41deg) translateY(calc(var(--hero-shift) * -0.25));
}

.hero::after {
  right: -12vw;
  bottom: -16vh;
  width: 42vw;
  height: 62vh;
  background: linear-gradient(180deg, rgba(6, 17, 29, 0.96), rgba(13, 34, 56, 0.88));
  transform: skewX(-26deg) translateY(calc(var(--hero-shift) * 0.12));
  opacity: 0.96;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content-wide);
  margin: 0 auto;
  padding: 72px 0 64px;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 44px;
  align-items: end;
}

.hero-copy {
  max-width: 620px;
  padding-top: 48px;
}

.hero-logo {
  width: clamp(220px, 26vw, 360px);
  margin-bottom: 24px;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.section-title,
.admin-title,
.auth-heading,
.table-title {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7.3rem);
  text-transform: uppercase;
}

.hero p {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  max-width: 530px;
}

.hero-list-row {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
}

.hero-list-row strong {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.hero-list-row span {
  color: var(--ink-muted);
}

.coverage-panel {
  position: relative;
  padding: 28px;
  margin-left: auto;
  width: min(100%, 460px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 247, 240, 0.94)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.coverage-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
}

.panel-kicker,
.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.panel-heading {
  margin: 10px 0 0;
  font-size: 2.2rem;
  line-height: 0.98;
}

.panel-body {
  margin: 12px 0 24px;
  color: var(--ink-muted);
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  gap: 8px;
}

.field-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-row label,
.check-row span,
.status-label,
.table-caption {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.field-row textarea {
  min-height: 130px;
  resize: vertical;
}

.field-row select[multiple] {
  min-height: 160px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-muted);
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.coverage-result {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  background: rgba(6, 17, 29, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 999px;
}

.status-pending {
  color: var(--warning);
}

.status-success {
  color: var(--success);
}

.status-danger {
  color: var(--danger);
}

.status-detail {
  display: grid;
  gap: 8px;
  color: var(--ink-muted);
}

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

.section {
  width: var(--content-wide);
  margin: 0 auto;
  padding: 94px 0;
}

.section-band {
  background: var(--surface);
}

.section-dark {
  background: var(--ink);
  color: white;
}

.section-dark .section-kicker,
.section-dark .section-copy,
.section-dark .detail-row span,
.section-dark .split-copy {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .divider {
  background: rgba(255, 255, 255, 0.16);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.96;
  margin: 0;
}

.section-copy {
  font-size: 1.02rem;
  color: var(--ink-muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 48px;
}

.support-block {
  min-height: 220px;
  padding: 26px 0 0;
  border-top: 2px solid var(--line-strong);
}

.support-block strong,
.detail-row strong,
.metric-value {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.support-block strong {
  display: block;
  margin-bottom: 12px;
  font-size: 2.1rem;
  line-height: 1;
}

.support-block p,
.detail-row span,
.metric-label,
.split-copy {
  color: var(--ink-muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  margin-top: 44px;
  align-items: start;
}

.detail-media {
  min-height: 540px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(31, 121, 223, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    var(--surface-strong);
  display: grid;
  align-content: end;
  gap: 20px;
}

.detail-media::before {
  content: "";
  width: 120px;
  height: 120px;
  border-top: 8px solid var(--brand);
  border-left: 8px solid var(--brand-deep);
  margin-bottom: auto;
}

.detail-media strong {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 3rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 20px;
}

.detail-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.detail-row strong {
  font-size: 0.96rem;
  letter-spacing: 0.14em;
  color: var(--brand-deep);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: end;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.metric {
  display: grid;
  gap: 6px;
}

.metric-value {
  font-size: 2rem;
  line-height: 0.9;
}

.footer {
  background: #08111b;
  color: white;
}

.footer-inner {
  width: var(--content-wide);
  margin: 0 auto;
  padding: 42px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  width: var(--content-wide);
  margin: 0 auto;
  padding: 72px 0 40px;
  display: grid;
  gap: 18px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
}

.page-hero p {
  max-width: 620px;
  color: var(--ink-muted);
}

.install-main {
  width: min(1180px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 42px 0 104px;
  display: grid;
  gap: 34px;
}

.install-stage-shell {
  display: grid;
  gap: 0;
}

.install-stage-hero {
  display: grid;
  gap: 12px;
  min-height: 360px;
  padding: 58px 54px 128px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    linear-gradient(135deg, rgba(255, 221, 115, 0.84), rgba(255, 221, 115, 0.84)) center/42vw 42vw no-repeat,
    linear-gradient(135deg, rgba(91, 198, 98, 0.56), rgba(91, 198, 98, 0.56)) left 22% bottom 18%/22vw 22vw no-repeat,
    linear-gradient(135deg, rgba(240, 104, 159, 0.42), rgba(240, 104, 159, 0.42)) right 18% top 22%/18vw 18vw no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2));
  overflow: hidden;
}

.install-stage-copy {
  display: grid;
  gap: 12px;
  width: min(1180px, calc(100vw - 72px));
  margin: 0 auto;
  max-width: none;
  position: relative;
  z-index: 1;
}

.install-stage-copy h1,
.install-stage-head h2,
.install-group-head h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.install-stage-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.88;
}

.install-stage-copy p {
  margin: 0;
  max-width: 44ch;
  color: var(--ink-muted);
}

.install-form {
  display: grid;
  gap: 22px;
  margin: 0;
  margin-top: -94px;
  position: relative;
  z-index: 2;
}

.install-stepper-card {
  position: relative;
  width: min(980px, calc(100vw - 96px));
  margin: 0 auto;
  padding: 34px 42px 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(6, 17, 29, 0.16);
  border-radius: 28px;
  backdrop-filter: blur(12px);
}

.install-stepper-line {
  position: absolute;
  inset: 62px 82px auto;
  height: 4px;
  background: rgba(6, 17, 29, 0.08);
  border-radius: 999px;
}

.install-stepper-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #b87a2c, #d89d4f);
  border-radius: 999px;
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.install-stepper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.install-stepper-step {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(6, 17, 29, 0.42);
  cursor: pointer;
  transition: color 180ms ease;
}

.install-stepper-step.is-blocked {
  cursor: not-allowed;
  opacity: 0.45;
}

.install-stepper-dot {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(184, 122, 44, 0.28);
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.82);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.install-stepper-dot span {
  font-size: 0.82rem;
  font-weight: 700;
}

.install-stepper-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.install-stepper-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}

.install-stepper-copy small {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}

.install-stepper-step.is-active {
  color: #b87a2c;
}

.install-stepper-step.is-active .install-stepper-dot {
  border-color: #b87a2c;
  background: #b87a2c;
  color: white;
  transform: scale(1.12);
  box-shadow: 0 0 0 10px rgba(216, 157, 79, 0.16);
}

.install-stepper-step.is-complete {
  color: #b87a2c;
}

.install-stepper-step.is-complete .install-stepper-dot {
  border-color: #b87a2c;
  background: #b87a2c;
  color: white;
}

.install-workspace {
  display: grid;
  gap: 24px;
  padding: 38px 42px 30px;
  background:
    radial-gradient(circle at top right, rgba(31, 121, 223, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(6, 17, 29, 0.12);
  border-radius: 26px;
}

.install-workspace-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 17, 29, 0.1);
}

.install-progress-meta {
  display: grid;
  gap: 6px;
}

.install-progress-meta span,
.install-stage-submit-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.install-progress-meta strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.install-workspace-head p {
  margin: 0;
  color: var(--ink-muted);
}

.install-stage-frame {
  display: grid;
}

.install-stage-panel {
  display: grid;
  gap: 22px;
  animation: install-stage-enter 220ms ease;
}

.install-stage-panel[hidden] {
  display: none;
}

.install-stage-head {
  display: grid;
  gap: 8px;
}

.install-stage-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
}

.install-stage-head p,
.install-group-head p {
  margin: 0;
  color: var(--ink-muted);
}

.install-checkpoint {
  display: grid;
  gap: 20px;
}

.install-checkpoint-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.install-checkpoint-summary strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.install-preflight-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 4px solid rgba(6, 17, 29, 0.12);
}

.install-preflight-card.is-ok {
  border-top-color: var(--success);
}

.install-preflight-card.is-error {
  border-top-color: var(--danger);
}

.install-preflight-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(6, 17, 29, 0.06);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.install-preflight-card strong {
  font-size: 1rem;
}

.install-preflight-card p,
.install-inline-note {
  margin: 0;
  color: var(--ink-muted);
}

.install-fields {
  display: grid;
  gap: 16px;
}

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

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

.install-span-full {
  grid-column: 1 / -1;
}

.install-span-2 {
  grid-column: span 2;
}

.install-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.install-check {
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(6, 17, 29, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.install-group {
  display: grid;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 17, 29, 0.1);
}

.install-group:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.install-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.install-group-head h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 0.95;
}

.install-advanced-group {
  padding-top: 18px;
  border-top: 1px solid rgba(6, 17, 29, 0.1);
}

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

.install-advanced-group summary::-webkit-details-marker {
  display: none;
}

.install-advanced-group summary span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.install-advanced-group summary small {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.install-advanced-group > .install-fields {
  margin-top: 16px;
}

.install-stage-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(6, 17, 29, 0.1);
}

.install-stage-submit {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.install-stage-submit-meta {
  display: grid;
  gap: 3px;
  min-width: 110px;
}

.install-form-pane .field-row {
  display: grid;
  gap: 8px;
}

.install-form-pane .field-row label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.install-form-pane .field-row input,
.install-form-pane .field-row select,
.install-form-pane .field-row textarea {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(6, 17, 29, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.install-form-pane .field-row input:focus,
.install-form-pane .field-row select:focus,
.install-form-pane .field-row textarea:focus {
  border-color: rgba(31, 121, 223, 0.34);
  background: white;
  box-shadow: 0 0 0 3px rgba(31, 121, 223, 0.1);
}

.install-form-pane .field-row textarea {
  min-height: 136px;
  resize: vertical;
}

.install-form-pane .field-row input[type="file"] {
  min-height: 64px;
  padding-top: 18px;
}

.install-error-list {
  padding: 18px 20px;
  border-left: 4px solid var(--danger);
  background: rgba(255, 247, 246, 0.98);
  color: var(--danger);
  display: grid;
  gap: 8px;
}

@keyframes install-stage-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-grid {
  width: var(--content-wide);
  margin: 0 auto;
  padding: 24px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: 34px;
}

.surface {
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
}

.surface-accent {
  padding: 30px;
  background: linear-gradient(180deg, rgba(31, 121, 223, 0.12), rgba(31, 121, 223, 0.03));
}

.toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 50;
  display: grid;
  gap: 12px;
  width: min(420px, calc(100vw - 36px));
}

.toast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast-success {
  border-color: rgba(31, 121, 223, 0.28);
}

.toast-error {
  border-color: rgba(172, 57, 49, 0.28);
  background: rgba(255, 247, 246, 0.98);
}

.toast-copy {
  color: var(--ink);
  font-size: 0.96rem;
}

.toast-close {
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
}

.surface-dark {
  padding: 30px;
  background: var(--ink);
  color: white;
}

.surface-dark .split-copy,
.surface-dark .field-row label,
.surface-dark .check-row,
.surface-dark .table-caption {
  color: rgba(255, 255, 255, 0.72);
}

.surface-dark .field-row input,
.surface-dark .field-row select,
.surface-dark .field-row textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.surface-dark .button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

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

.auth-heading {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  text-transform: uppercase;
}

.subtle-list {
  display: grid;
  gap: 14px;
}

.subtle-item {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.subtle-item strong {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.auth-form {
  display: grid;
  gap: 18px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.auth-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.auth-footnote {
  margin: -6px 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.surface-login-v2 {
  padding: 34px 0 52px;
}

.login-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: start;
}

.login-copy-v2 {
  display: grid;
  gap: 18px;
  align-content: start;
}

.login-heading-v2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: none;
}

.login-body-v2 {
  max-width: 56ch;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.6;
}

.login-points-v2 {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.login-point-v2 {
  display: grid;
  gap: 4px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.login-point-v2 strong {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-point-v2 span {
  color: var(--ink-muted);
  line-height: 1.55;
}

.login-panel-v2 {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: white;
}

.login-panel-head-v2 {
  display: grid;
  gap: 6px;
}

.login-panel-head-v2 .panel-heading {
  margin: 0;
}

.login-register-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.login-register-v2 span {
  color: var(--ink-muted);
}

.helper-link {
  color: var(--brand-deep);
}

.account-layout,
.dashboard-layout {
  width: var(--content-wide);
  margin: 0 auto;
  padding: 26px 0 84px;
  display: grid;
  gap: 28px;
}

.account-header {
  padding: 34px 0;
  border-top: 1px solid var(--line-strong);
}

.role-list,
.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-pill,
.status-chip {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-chip.is-locked {
  background: rgba(191, 125, 24, 0.08);
  border-color: rgba(191, 125, 24, 0.22);
  color: var(--warning);
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
}

.stack {
  display: grid;
  gap: 24px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table td,
.info-table th {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.info-table th {
  width: 34%;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.account-note {
  padding: 20px 0 0;
  color: var(--ink-muted);
}

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

.admin-sidebar {
  background: #07111b;
  color: white;
  padding: 24px 22px 30px;
  display: grid;
  align-content: start;
  gap: 26px;
}

.admin-brand {
  display: grid;
  gap: 18px;
}

.admin-brand img {
  width: 170px;
}

.admin-brand p,
.admin-section-label,
.nav-meta {
  color: rgba(255, 255, 255, 0.68);
}

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

.admin-nav a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.admin-nav a:hover,
.admin-nav a[aria-current="page"] {
  background: rgba(31, 121, 223, 0.16);
  border-color: rgba(31, 121, 223, 0.3);
}

.admin-nav strong {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-meta {
  font-size: 0.84rem;
}

.admin-main {
  background: var(--paper);
}

.admin-main-inner {
  width: min(1200px, calc(100vw - 360px));
  margin: 0 auto;
  padding: 34px 0 70px;
  display: grid;
  gap: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.admin-title {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  text-transform: uppercase;
}

.admin-subtitle {
  max-width: 680px;
  color: var(--ink-muted);
}

.admin-section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.admin-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 30px;
}

.list-lines {
  display: grid;
  gap: 16px;
}

.list-line {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.list-line strong {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.summary-rail {
  display: grid;
  gap: 18px;
}

.summary-block {
  padding: 22px 0 0;
  border-top: 2px solid var(--line-strong);
}

.summary-block strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 0.95;
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line-strong);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.data-table th,
.data-table td {
  padding: 18px 14px 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.data-table th {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
}

.data-table td {
  color: var(--ink);
}

.table-title {
  font-size: 2rem;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.table-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-danger {
  background: transparent;
  color: var(--danger);
  border-color: rgba(191, 71, 71, 0.35);
}

.button-danger:hover {
  background: rgba(191, 71, 71, 0.06);
}

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

.mini-metric {
  padding-top: 18px;
  border-top: 2px solid var(--line-strong);
}

.mini-metric strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-entry {
  opacity: 0;
  transform: translateY(18px);
  animation: admin-entry-reveal 440ms ease forwards;
}

.admin-entry-delay-1 {
  animation-delay: 70ms;
}

.admin-entry-delay-2 {
  animation-delay: 140ms;
}

.admin-entry-delay-3 {
  animation-delay: 210ms;
}

@keyframes admin-entry-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

@media (max-width: 1120px) {
  .hero-inner,
  .detail-layout,
  .cta-layout,
  .page-grid,
  .account-grid,
  .admin-section-grid,
  .split-layout,
  .login-layout-v2 {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .coverage-panel {
    margin-left: 0;
  }

  .admin-main-inner {
    width: min(100vw - 32px, 1200px);
  }

  .install-stage-hero {
    min-height: 320px;
    padding: 48px 32px 118px;
    background:
      linear-gradient(135deg, rgba(255, 221, 115, 0.82), rgba(255, 221, 115, 0.82)) center/54vw 54vw no-repeat,
      linear-gradient(135deg, rgba(91, 198, 98, 0.5), rgba(91, 198, 98, 0.5)) left 18% bottom 16%/28vw 28vw no-repeat,
      linear-gradient(135deg, rgba(240, 104, 159, 0.36), rgba(240, 104, 159, 0.36)) right 16% top 22%/24vw 24vw no-repeat,
      linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2));
  }

  .install-workspace-head,
  .install-checkpoint-summary,
  .install-group-head {
    align-items: start;
    flex-direction: column;
  }

  .install-preflight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .install-stepper-card {
    width: min(100%, calc(100vw - 88px));
  }

  .install-fields-3,
  .install-fields-2,
  .install-check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .install-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  body.menu-open .header-nav {
    position: fixed;
    inset: 78px 20px auto;
    display: grid;
    gap: 18px;
    padding: 22px;
    background: rgba(250, 247, 240, 0.98);
    border: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .install-header-inner,
  .install-main {
    width: min(100vw - 28px, 1180px);
  }

  .install-main {
    padding-top: 28px;
  }

  .install-stage-hero {
    min-height: 280px;
    padding: 42px 20px 110px;
    background:
      linear-gradient(135deg, rgba(255, 221, 115, 0.8), rgba(255, 221, 115, 0.8)) center/72vw 72vw no-repeat,
      linear-gradient(135deg, rgba(91, 198, 98, 0.44), rgba(91, 198, 98, 0.44)) left 12% bottom 14%/34vw 34vw no-repeat,
      linear-gradient(135deg, rgba(240, 104, 159, 0.32), rgba(240, 104, 159, 0.32)) right 10% top 16%/32vw 32vw no-repeat,
      linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2));
  }

  .install-stage-copy {
    width: min(100vw - 28px, 1180px);
  }

  .install-stepper-card {
    width: 100%;
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  .install-stepper-line {
    inset: 46px 30px auto;
  }

  .install-stepper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 2px 4px;
  }

  .install-stepper-step {
    min-width: 150px;
  }

  .install-workspace {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .install-stage-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .install-preflight-grid,
  .install-fields-3,
  .install-fields-2,
  .install-check-grid {
    grid-template-columns: 1fr;
  }

  .install-stage-actions,
  .install-stage-submit {
    align-items: start;
    flex-direction: column;
  }

  .install-stage-submit-meta {
    min-width: 0;
  }

  .support-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    gap: 18px;
  }

  .admin-main-inner {
    width: var(--content);
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100vw - 28px, 1160px);
    --content-wide: min(100vw - 28px, 1320px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 142px;
  }

  .hero::before {
    left: -34vw;
    width: 60vw;
  }

  .hero::after {
    width: 70vw;
    right: -24vw;
  }

  .hero-list-row,
  .detail-row,
  .list-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .field-row.two {
    grid-template-columns: 1fr;
  }

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

.admin-body {
  background: #f5f7fb;
  overflow-x: hidden;
}

.admin-shell {
  --admin-bg: #f5f7fb;
  --admin-panel: #ffffff;
  --admin-line: rgba(6, 17, 29, 0.1);
  --admin-line-strong: rgba(6, 17, 29, 0.16);
  --admin-text-muted: #587089;
  min-height: 100vh;
  display: block;
  background: var(--admin-bg);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 247, 251, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 17, 29, 0.08);
}

.admin-header-main {
  width: min(1360px, calc(100vw - 36px));
  margin: 0 auto;
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.admin-panel-badge,
.admin-section-label,
.admin-toolbar-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-header-brand img {
  width: 128px;
  height: auto;
}

.admin-header-brand span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(31, 121, 223, 0.08);
  color: var(--brand-deep);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.admin-primary-nav::-webkit-scrollbar {
  display: none;
}

.admin-primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-bottom: 2px solid transparent;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 140ms ease, border-color 140ms ease;
}

.admin-primary-nav a:hover,
.admin-primary-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brand);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.admin-user-chip {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 0 10px;
}

.admin-user-chip strong,
.admin-user-chip span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-user-chip strong {
  font-size: 0.8rem;
}

.admin-user-chip span {
  font-size: 0.7rem;
  color: var(--admin-text-muted);
}

.admin-subnav {
  border-top: 1px solid rgba(6, 17, 29, 0.06);
  border-bottom: 1px solid rgba(6, 17, 29, 0.06);
  background: rgba(255, 255, 255, 0.94);
}

.admin-subnav-inner {
  width: min(1360px, calc(100vw - 36px));
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.admin-subnav-inner::-webkit-scrollbar {
  display: none;
}

.admin-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
}

.admin-subnav a:hover,
.admin-subnav a[aria-current="page"] {
  background: rgba(31, 121, 223, 0.08);
  color: var(--brand-deep);
}

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

.admin-stage {
  padding: 16px 18px 26px;
}

.admin-toolbar {
  width: min(var(--admin-content-max-width, 1360px), 100%);
  margin: 0 auto 14px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px;
}

.admin-toolbar-copy {
  display: grid;
  gap: 4px;
}

.admin-toolbar-label {
  background: rgba(31, 121, 223, 0.08);
  color: var(--brand-deep);
}

.admin-toolbar-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.admin-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--admin-text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.admin-stage-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 121, 223, 0.18);
  background: rgba(31, 121, 223, 0.08);
  color: var(--brand-deep);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-main-inner {
  width: min(var(--admin-content-max-width, 1360px), 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.admin-topbar,
.admin-section,
.admin-shell .surface {
  background: var(--admin-panel);
  border: 1px solid var(--admin-line);
  border-radius: 14px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.admin-topbar-copy {
  min-width: 0;
}

.admin-topbar-copy-with-media {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-topbar-media {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  overflow: hidden;
  border: 1px solid var(--admin-line-strong);
  background: #fbfcfe;
}

.admin-topbar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-kicker {
  color: var(--brand-deep);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-title {
  margin: 6px 0 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 24ch;
}

.admin-title-wide {
  max-width: none;
  white-space: nowrap;
}

.admin-subtitle {
  margin: 8px 0 0;
  max-width: 76ch;
  font-size: 0.92rem;
  color: var(--admin-text-muted);
}

.admin-topbar .status-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.seo-dashboard-topbar {
  flex-wrap: wrap;
}

.seo-dashboard-topbar-copy {
  width: 100%;
  min-width: 0;
}

.seo-dashboard-topbar .status-actions {
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.seo-dashboard-topbar .admin-title-wide {
  font-size: clamp(1.3rem, 1.7vw, 2rem);
}

.seo-dashboard-subtitle {
  max-width: none;
  white-space: nowrap;
  font-size: 0.88rem;
}

.admin-section {
  padding: 16px 20px 18px;
}

.admin-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px;
  align-items: start;
}

.admin-shell .surface {
  padding: 14px 16px;
}

.admin-shell .button {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-shell .button-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.admin-shell .button-primary:hover {
  background: #156ccb;
}

.admin-shell .button-secondary {
  background: white;
  border-color: var(--admin-line-strong);
  color: var(--ink);
}

.admin-shell .button-secondary:hover {
  background: #f7faff;
  border-color: rgba(31, 121, 223, 0.32);
}

.admin-shell .button-danger {
  background: #fff7f7;
  border-color: rgba(191, 71, 71, 0.22);
}

.admin-shell .auth-form {
  display: grid;
  gap: 14px;
}

.admin-shell .field-row {
  gap: 6px;
}

.admin-shell .field-row.two {
  gap: 12px;
}

.admin-shell .field-row label,
.admin-shell .check-row span,
.admin-shell .table-caption {
  color: #4a627c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.admin-shell .field-row input,
.admin-shell .field-row select,
.admin-shell .field-row textarea {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border-color: var(--admin-line-strong);
  background: #fbfcfe;
  font-size: 0.96rem;
}

.admin-shell .field-row textarea {
  min-height: 108px;
}

.admin-shell .field-row input:focus,
.admin-shell .field-row select:focus,
.admin-shell .field-row textarea:focus {
  outline: none;
  border-color: rgba(31, 121, 223, 0.38);
  box-shadow: 0 0 0 3px rgba(31, 121, 223, 0.1);
}

.admin-shell .check-row {
  gap: 10px;
}

.admin-shell .check-row input {
  width: 16px;
  height: 16px;
}

.field-help,
.table-meta {
  font-size: 0.82rem;
  color: var(--admin-text-muted);
}

.table-title {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--admin-line);
  border-radius: 12px;
  background: white;
}

.data-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
}

.data-table thead {
  background: #f8fafc;
}

.data-table th,
.data-table td {
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid rgba(6, 17, 29, 0.06);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data-table th:first-child,
.data-table td:first-child {
  padding-left: 14px;
}

.data-table th:last-child,
.data-table td:last-child {
  padding-right: 14px;
}

.data-table th {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--admin-text-muted);
}

.data-table td {
  font-size: 0.94rem;
}

.data-table tbody tr:hover {
  background: #f9fbff;
}

.table-actions,
.table-row-actions,
.status-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-row-actions {
  flex-wrap: nowrap;
}

.table-row-actions form {
  flex: 0 0 auto;
}

.customer-actions-cell {
  width: 72px;
  overflow: visible !important;
  text-align: right;
}

.customer-actions-menu {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
}

.customer-actions-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--admin-line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.customer-actions-trigger:hover,
.customer-actions-menu:focus-within .customer-actions-trigger {
  border-color: rgba(31, 121, 223, 0.34);
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(6, 17, 29, 0.08);
}

.customer-actions-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 8;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--admin-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(6, 17, 29, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.customer-actions-menu:hover .customer-actions-dropdown,
.customer-actions-menu:focus-within .customer-actions-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.customer-actions-dropdown form {
  margin: 0;
}

.customer-actions-link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}

.customer-actions-link:hover,
.customer-actions-link:focus-visible {
  background: #f4f8ff;
}

.customer-actions-link-danger {
  color: var(--danger);
}

.customer-actions-link-danger:hover,
.customer-actions-link-danger:focus-visible {
  background: rgba(191, 71, 71, 0.08);
}

.admin-customers-section {
  display: grid;
  gap: 16px;
}

.admin-customers-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.admin-customers-summary {
  margin: 4px 0 0;
  color: var(--admin-text-muted);
  font-size: 0.86rem;
}

.admin-customers-search {
  width: min(420px, 100%);
}

.admin-customers-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--admin-line-strong);
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--ink);
}

.admin-customers-search input:focus {
  outline: none;
  border-color: rgba(31, 121, 223, 0.38);
  box-shadow: 0 0 0 3px rgba(31, 121, 223, 0.1);
}

.admin-customers-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
}

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

.admin-customers-empty-cell {
  padding: 20px 14px !important;
  color: var(--admin-text-muted);
  text-align: center;
}

.admin-customers-loading-note {
  margin: 0;
  color: var(--admin-text-muted);
  font-size: 0.82rem;
  text-align: center;
}

.admin-customers-section.is-loading .table-wrap,
.admin-customers-section.is-loading .admin-customers-footer {
  opacity: 0.74;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.mini-metric {
  min-height: 92px;
  padding: 12px 14px;
  border: 1px solid var(--admin-line);
  border-radius: 12px;
  background: white;
}

.mini-metric strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.mini-metric span {
  color: var(--admin-text-muted);
  font-size: 0.82rem;
}

.summary-rail {
  display: grid;
  gap: 14px;
}

.summary-block {
  padding-top: 12px;
  border-top: 1px solid var(--admin-line);
}

.summary-block strong {
  font-size: 1.8rem;
}

.catalog-image-preview {
  width: min(220px, 100%);
  border-radius: 10px;
  overflow: hidden;
}

.admin-body .toast-stack {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 70;
}

.admin-body .toast {
  border-radius: 12px;
  border: 1px solid var(--admin-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(6, 17, 29, 0.1);
}

.admin-body .toast-success {
  border-color: rgba(18, 114, 79, 0.18);
}

.admin-body .toast-error {
  border-color: rgba(191, 71, 71, 0.18);
}

.seo-workspace {
  --seo-accent: #b66a1d;
  --seo-accent-soft: rgba(182, 106, 29, 0.12);
  --seo-positive: #1f7a52;
  --seo-positive-soft: rgba(31, 122, 82, 0.12);
  --seo-negative: #b44949;
  --seo-negative-soft: rgba(180, 73, 73, 0.12);
  --seo-muted-soft: rgba(88, 112, 137, 0.12);
  display: grid;
  gap: 20px;
}

.seo-command-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  gap: 20px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 26px;
  background: #112232;
  color: white;
}

.seo-command-hero::after {
  display: none;
  content: none;
}

.seo-command-hero-compact {
  min-height: 0;
}

.seo-command-copy,
.seo-command-rail,
.seo-command-panel {
  position: relative;
  z-index: 1;
}

.seo-command-copy {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-width: 0;
}

.seo-eyebrow,
.seo-panel-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-command-copy h1 {
  max-width: 17ch;
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.seo-command-copy p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.seo-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-command-actions .button-primary {
  background: #f5a64d;
  border-color: #f5a64d;
  color: #0d1721;
}

.seo-command-actions .button-primary:hover {
  background: #ffb661;
}

.seo-command-actions .button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

.seo-command-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

.seo-command-rail {
  display: grid;
  gap: 12px;
}

.seo-command-panel {
  display: grid;
  gap: 8px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #314252;
}

.seo-command-panel strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.55rem, 1.8vw, 2.15rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.seo-command-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

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

.seo-signal {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px 18px 20px;
  border: 1px solid var(--admin-line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.96));
}

.seo-signal span {
  color: var(--admin-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-signal strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.seo-signal p {
  margin: 0;
  color: var(--admin-text-muted);
  font-size: 0.86rem;
}

.seo-signal-alert {
  background:
    linear-gradient(180deg, rgba(255, 249, 249, 0.98), rgba(255, 242, 242, 0.96));
  border-color: rgba(180, 73, 73, 0.16);
}

.seo-dashboard-grid,
.seo-projections-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.82fr);
  gap: 20px;
  align-items: start;
}

.seo-dashboard-grid-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-module {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--admin-line);
  border-radius: 20px;
  background: white;
}

.seo-module-primary {
  min-height: 100%;
}

.seo-module-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.seo-module-head h2 {
  margin: 6px 0 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.seo-status-list,
.seo-timeline-list,
.seo-collection-list,
.seo-rank-list,
.seo-note-stack,
.seo-analytics-stack {
  display: grid;
  gap: 10px;
}

.seo-provider-stack {
  display: grid;
  gap: 12px;
}

.seo-provider-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 16px;
  background: #fbfcfe;
}

.seo-provider-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.seo-provider-head p {
  margin: 4px 0 0;
  color: var(--admin-text-muted);
  font-size: 0.84rem;
}

.seo-provider-badges,
.seo-provider-actions,
.seo-provider-issues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-provider-activity {
  display: grid;
  gap: 8px;
}

.seo-provider-activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.seo-provider-activity-row strong {
  display: block;
}

.seo-provider-activity-row p {
  margin: 4px 0 0;
  color: var(--admin-text-muted);
  font-size: 0.82rem;
}

.seo-provider-activity-row span {
  color: var(--admin-text-muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.seo-status-row,
.seo-timeline-item,
.seo-collection-item,
.seo-analytics-row,
.seo-rank-item,
.seo-note-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.seo-status-row:first-child,
.seo-timeline-item:first-child,
.seo-collection-item:first-child,
.seo-analytics-row:first-child,
.seo-rank-item:first-child,
.seo-note-stack article:first-child {
  padding-top: 0;
  border-top: 0;
}

.seo-status-row strong,
.seo-timeline-item strong,
.seo-collection-item a,
.seo-analytics-row strong,
.seo-rank-item strong,
.seo-note-stack strong {
  display: block;
  color: var(--ink);
}

.seo-status-row p,
.seo-timeline-item p,
.seo-collection-item p,
.seo-note-stack p {
  margin: 4px 0 0;
  color: var(--admin-text-muted);
  font-size: 0.84rem;
}

.seo-job-log {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.seo-job-log-details {
  display: block;
  width: 100%;
  margin-top: 12px;
}

.seo-job-log-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef3f8;
  color: #112232;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.seo-job-log-details summary::-webkit-details-marker {
  display: none;
}

.seo-job-log-details[open] summary {
  background: #dfe8f1;
}

.seo-job-log-intro {
  margin: 0;
}

.seo-job-log-error {
  margin: 0;
  color: #a24a4a;
  font-size: 0.8rem;
}

.seo-job-log-empty {
  margin: 10px 0 0;
  color: var(--admin-text-muted);
  font-size: 0.82rem;
}

.seo-job-log-row {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f6f8fb;
}

.seo-job-log-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.seo-job-log-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8eef5;
  color: #48617c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-job-log-actions {
  margin-top: 8px;
}

.seo-merchant-payload-list {
  display: grid;
  gap: 14px;
}

.seo-job-expand-trigger {
  white-space: nowrap;
}

.seo-job-detail-row[hidden] {
  display: none;
}

.seo-job-detail-row td {
  padding: 0 !important;
  background: #fbfdff;
}

.seo-job-detail-shell {
  padding: 16px 18px 18px;
}

.seo-job-log-meta-scroll {
  flex-wrap: wrap;
  overflow: visible;
  padding-bottom: 0;
}

.seo-merchant-payload-entry {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f6f8fb;
  border: 1px solid rgba(17, 34, 50, 0.08);
}

.seo-merchant-payload-entry strong {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
}

.seo-merchant-payload-entry p {
  margin: 6px 0 0;
  white-space: normal;
}

.seo-merchant-payload-entry .seo-job-log-meta {
  width: 100%;
}

.seo-merchant-payload-entry .seo-job-log-details {
  width: 100%;
}

.seo-job-log-error-block {
  color: #8f3434;
  border-color: rgba(143, 52, 52, 0.16);
  background: #fff7f7;
}

.seo-collection-item a,
.seo-canonical-link,
.seo-table-primary a {
  color: var(--ink);
  text-decoration: none;
}

.seo-collection-item a:hover,
.seo-canonical-link:hover,
.seo-table-primary a:hover {
  color: var(--brand-deep);
}

.seo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

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

.seo-badge-muted {
  background: var(--seo-muted-soft);
  color: var(--admin-text-muted);
}

.seo-analytics-row span,
.seo-rank-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f7fb;
  color: var(--ink);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.seo-rank-item {
  grid-template-columns: auto minmax(0, 1fr);
}

.seo-rank-item p {
  margin: 4px 0 0;
  color: var(--admin-text-muted);
  font-size: 0.84rem;
}

.seo-empty-note {
  margin: 0;
  color: var(--admin-text-muted);
  font-size: 0.88rem;
}

.seo-projections-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
}

.seo-side-rail {
  display: grid;
  gap: 20px;
}

.seo-side-module {
  position: sticky;
  top: 114px;
}

.seo-table-shell {
  overflow: hidden;
  border: 1px solid var(--admin-line);
  border-radius: 16px;
  background: white;
}

.seo-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}

.seo-table thead {
  background: #f8fafc;
}

.seo-table th,
.seo-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(6, 17, 29, 0.06);
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: var(--admin-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-table tbody tr:hover {
  background: #fbfdff;
}

.seo-table-primary {
  display: grid;
  gap: 6px;
}

.seo-table-primary p {
  margin: 0;
  color: var(--admin-text-muted);
  font-size: 0.84rem;
}

.seo-inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f4f7fb;
  color: var(--admin-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-chip-alert {
  background: rgba(180, 73, 73, 0.1);
  color: var(--seo-negative);
}

.seo-score-cell {
  display: grid;
  gap: 8px;
  min-width: 124px;
}

.seo-score-cell strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.seo-score-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
}

.seo-score-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.seo-score-bar-fill-positive {
  background: linear-gradient(90deg, #1f7a52, #4cb67a);
}

.seo-score-bar-fill-accent {
  background: linear-gradient(90deg, #b66a1d, #f0a34d);
}

.seo-score-bar-fill-negative {
  background: linear-gradient(90deg, #b44949, #dd6f6f);
}

.seo-canonical-link {
  display: block;
  max-width: 340px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--admin-text-muted);
  font-size: 0.82rem;
}

.seo-pagination-shell {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.seo-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.seo-pagination-summary {
  margin: 0;
  color: var(--admin-text-muted);
  font-size: 0.92rem;
}

.seo-pagination-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.seo-page-link,
.seo-page-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 34, 50, 0.12);
  background: #f4f7fb;
  color: #112232;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.seo-page-link:hover {
  background: #e7edf4;
}

.seo-page-link-current {
  border-color: #112232;
  background: #112232;
  color: #f7f3ea;
}

.seo-page-link-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.seo-page-gap {
  min-width: auto;
  padding: 0 6px;
  border: none;
  background: transparent;
}

@media (max-width: 720px) {
  .seo-pagination-controls {
    gap: 8px;
  }

  .seo-page-link,
  .seo-page-gap {
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
  }
}

@media (max-width: 1180px) {
  .seo-command-hero,
  .seo-dashboard-grid,
  .seo-projections-grid {
    grid-template-columns: 1fr;
  }

  .seo-signal-strip,
  .seo-dashboard-grid-balanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-side-module {
    position: static;
  }

  .seo-command-copy h1 {
    max-width: 16ch;
  }
}

@media (max-width: 1180px) {
  .admin-topbar {
    flex-direction: column;
  }

  .admin-topbar .status-actions,
  .admin-toolbar-meta {
    flex-wrap: wrap;
  }

  .admin-header-main {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

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

@media (max-width: 920px) {
  .admin-section-grid,
  .field-row.two {
    grid-template-columns: 1fr;
  }

  .seo-signal-strip,
  .seo-dashboard-grid-balanced {
    grid-template-columns: 1fr;
  }

  .seo-command-hero {
    padding: 18px;
    border-radius: 22px;
    background: #112232;
  }

  .seo-command-copy h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8.5vw, 2.8rem);
  }

  .table-wrap {
    overflow-x: auto;
  }

  .admin-title-wide {
    white-space: normal;
  }

  .admin-customers-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-customers-search {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .admin-stage {
    padding: 12px 12px 22px;
  }

  .seo-module,
  .seo-signal {
    padding: 16px;
  }

  .seo-status-row,
  .seo-timeline-item,
  .seo-collection-item,
  .seo-analytics-row,
  .seo-note-stack article,
  .seo-provider-head,
  .seo-provider-activity-row {
    grid-template-columns: 1fr;
  }

  .seo-rank-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .seo-table-shell {
    overflow-x: auto;
  }

  .seo-table {
    min-width: 760px;
  }

  .admin-header-main,
  .admin-subnav-inner {
    width: calc(100vw - 24px);
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header-actions {
    width: 100%;
  }

  .admin-user-chip {
    display: none;
  }

  .admin-topbar,
  .admin-section,
  .admin-shell .surface {
    padding-inline: 14px;
  }
}

.image-candidate-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
}

.image-candidate-carousel {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.image-candidate-carousel::-webkit-scrollbar {
  display: none;
}

.image-search-actions {
  margin-top: 18px;
}

.image-candidate-grid {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  scroll-snap-type: x proximity;
}

.image-candidate-nav {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.image-candidate-nav[hidden] {
  display: none;
}

.image-candidate-nav:disabled {
  opacity: 0.38;
  cursor: default;
}

.selected-image-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
}

.selected-image-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}

.selected-image-header span {
  color: var(--ink-muted);
}

.selected-image-list {
  display: grid;
  gap: 12px;
}

.selected-image-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.selected-image-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.selected-image-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}

.selected-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.selected-image-copy {
  display: grid;
  gap: 6px;
  align-content: center;
}

.selected-image-remove {
  justify-self: start;
  margin-top: 4px;
}

.variant-image-preview-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.variant-image-preview-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}

.variant-image-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.variant-image-preview-copy {
  display: grid;
  gap: 6px;
}

.content-bullet-list {
  margin: 10px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.section-inline-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.variant-remove-button {
  flex: 0 0 auto;
}

.selected-image-copy span,
.selected-image-copy small {
  color: var(--ink-muted);
}

.selected-image-copy code {
  display: block;
  max-width: 100%;
  padding: 6px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
  color: var(--ink-muted);
  background: rgba(6, 17, 29, 0.05);
}

.extension-helper-card,
.extension-helper-status,
.extension-helper-progress {
  margin-top: 18px;
}

.extension-progress-copy {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.extension-progress-bar {
  margin-top: 10px;
  width: 100%;
  height: 10px;
  background: rgba(6, 17, 29, 0.08);
  overflow: hidden;
}

.extension-progress-bar-fill {
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #63a8ff);
  transform: translateX(-110%);
  transition: width 180ms ease;
}

.extension-helper-progress[data-mode="indeterminate"] .extension-progress-bar-fill {
  width: 34%;
  animation: extension-progress-slide 1.15s linear infinite;
}

.extension-helper-progress[data-mode="determinate"] .extension-progress-bar-fill {
  animation: none;
  transform: translateX(0);
}

@keyframes extension-progress-slide {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(320%);
  }
}

.extension-helper-diagnostics {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.extension-diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.extension-diagnostics-grid div {
  display: grid;
  gap: 4px;
}

.extension-diagnostics-grid span {
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.extension-diagnostics-grid strong[data-state="yes"] {
  color: #2f7d32;
}

.extension-diagnostics-grid strong[data-state="no"] {
  color: #b43d2a;
}

.extension-helper-status[data-tone="success"] {
  border-left: 4px solid #2f7d32;
}

.extension-helper-status[data-tone="warning"] {
  border-left: 4px solid var(--warning);
}

.extension-helper-status[data-tone="neutral"] {
  border-left: 4px solid var(--brand);
}

.extension-install-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.history-modal[hidden] {
  display: none;
}

.history-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.history-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 39, 0.56);
}

.history-modal-panel {
  position: relative;
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  padding: 18px;
  background: #f8f5ee;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.history-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.history-modal-body {
  display: grid;
  gap: 14px;
}

.history-modal-copy {
  max-width: 100%;
}

.history-modal-code {
  display: block;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
  white-space: pre-wrap;
  word-break: normal;
  overflow-wrap: anywhere;
}

.history-modal-disclosure {
  margin-top: 16px;
  width: 100%;
}

.history-modal-disclosure[open] {
  display: block;
}

.history-modal-disclosure[open] .history-modal-code {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.image-candidate {
  display: grid;
  gap: 10px;
  flex: 0 0 240px;
  min-width: 240px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  scroll-snap-align: start;
}

.image-candidate:has(.image-assignment-badge) {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(31, 121, 223, 0.22);
}

.image-candidate-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}

.image-candidate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-candidate-url {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.image-candidate-copy {
  display: grid;
  gap: 6px;
}

.image-candidate-copy strong {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.3;
}

.image-candidate-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.image-candidate-actions .button,
.image-candidate-actions-variant .button {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 14px;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.image-candidate-actions-variant {
  grid-template-columns: minmax(0, 1fr);
}

.image-candidate-actions-variant select {
  width: 100%;
  min-height: 44px;
  padding-inline: 12px;
}

.image-assignment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.image-assignment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 75, 145, 0.08);
  color: #0a4b91;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.image-assignment-badge.is-primary {
  background: rgba(47, 125, 50, 0.12);
  color: #2f7d32;
}

body:not(.admin-body) {
  background: #f6f9fc;
  color: #081627;
}

.page-shell {
  min-height: 100vh;
  padding-top: 74px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 35;
  background: rgba(246, 249, 252, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8, 22, 39, 0.08);
}

.header-inner {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto auto minmax(360px, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.hero-logo {
  width: 126px;
  height: auto;
}

.brand-name {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.72rem;
  color: #60758d;
}

.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  overflow: visible;
}

.header-nav a {
  padding-bottom: 0;
}

.header-nav a::after {
  display: none;
}

.header-nav a,
.header-dropdown summary {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #42586f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 140ms ease, color 140ms ease, transform 180ms ease;
  list-style: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.header-dropdown summary::-webkit-details-marker {
  display: none;
}

.header-nav a:hover,
.header-nav a[aria-current="page"],
.header-dropdown summary:hover,
.header-dropdown summary[aria-current="page"],
.header-dropdown[open] summary {
  background: rgba(31, 121, 223, 0.07);
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.header-dropdown {
  position: relative;
}

.header-nav-indicator {
  --indicator-width: 0px;
  --indicator-x: 0px;
  --indicator-opacity: 0;
  position: absolute;
  left: 0;
  bottom: -9px;
  width: var(--indicator-width);
  height: 3px;
  border-radius: 999px;
  opacity: var(--indicator-opacity);
  transform: translateX(var(--indicator-x));
  background: linear-gradient(90deg, rgba(31, 121, 223, 0.78) 0%, rgba(64, 156, 255, 1) 50%, rgba(31, 121, 223, 0.78) 100%);
  box-shadow: 0 0 0 1px rgba(66, 152, 245, 0.18), 0 0 12px rgba(31, 121, 223, 0.26), 0 6px 14px rgba(31, 121, 223, 0.18);
  transition: width 220ms ease, transform 220ms ease, opacity 180ms ease;
  pointer-events: none;
}

.header-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 45;
  min-width: 320px;
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(8, 22, 39, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(8, 22, 39, 0.08);
  overflow: hidden;
}

.header-dropdown-link {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  border-radius: 12px;
  color: #0a1b2d;
  font-size: 0.92rem;
  line-height: 1.35;
  position: relative;
  overflow: visible;
}

.header-dropdown-indicator {
  --dropdown-indicator-y: 0px;
  --dropdown-indicator-height: 0px;
  --dropdown-indicator-opacity: 0;
  position: absolute;
  left: 2px;
  top: 0;
  width: 4px;
  height: var(--dropdown-indicator-height);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(31, 121, 223, 0.8) 0%, rgba(73, 160, 255, 1) 100%);
  box-shadow: 0 0 0 1px rgba(66, 152, 245, 0.16), 0 0 10px rgba(31, 121, 223, 0.24);
  opacity: var(--dropdown-indicator-opacity);
  transform: translateY(var(--dropdown-indicator-y));
  transition: height 180ms ease, transform 180ms ease, opacity 180ms ease;
  z-index: 1;
  pointer-events: none;
}

.header-dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f0f6fd 0%, #e4eefb 100%);
  color: #0a4b91;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.header-dropdown-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  background: #fff;
  display: block;
}

.header-dropdown-copy {
  display: grid;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.header-dropdown-label {
  color: #081627;
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 500;
}

.header-dropdown-link:hover,
.header-dropdown-link:focus-visible {
  background: transparent !important;
  color: #0a1b2d;
  box-shadow: none;
  outline: none;
}

.header-searchbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
  padding: 4px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(8, 22, 39, 0.1);
  box-shadow: 0 8px 22px rgba(8, 22, 39, 0.04);
  transition: border-radius 55ms ease-out, box-shadow 55ms ease-out, border-color 55ms ease-out;
}

.header-searchbar.has-suggestions {
  border-color: rgba(8, 22, 39, 0.1);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 10px 24px rgba(8, 22, 39, 0.06);
}

.header-searchbar input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #081627;
}

.header-searchbar input::placeholder {
  color: #6b8095;
}

.header-searchbar input:focus {
  outline: none;
}

.header-searchbar button {
  flex: 0 0 auto;
  min-height: 38px;
  min-width: 88px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #0a4b91;
  color: white;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.header-search-suggestions {
  position: absolute;
  top: calc(100% - 1px);
  left: -1px;
  right: -1px;
  z-index: 1;
  padding: 10px 10px 10px;
  background: #fff;
  border: 1px solid rgba(8, 22, 39, 0.1);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 40px rgba(8, 22, 39, 0.12);
}

.header-search-suggestions-caption {
  display: flex;
  align-items: center;
  min-height: 30px;
  padding: 0 8px 8px;
  color: #60758d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-search-suggestions-body {
  position: relative;
}

.header-search-suggestions-list {
  display: grid;
  gap: 4px;
}

.header-search-suggestions-indicator {
  --search-indicator-y: 0px;
  --search-indicator-height: 0px;
  --search-indicator-opacity: 0;
  position: absolute;
  left: 2px;
  top: 0;
  width: 4px;
  height: var(--search-indicator-height);
  border-radius: 999px;
  opacity: var(--search-indicator-opacity);
  transform: translateY(var(--search-indicator-y));
  background: linear-gradient(180deg, rgba(31, 121, 223, 0.8) 0%, rgba(73, 160, 255, 1) 100%);
  box-shadow: 0 0 0 1px rgba(66, 152, 245, 0.16), 0 0 10px rgba(31, 121, 223, 0.24);
  transition: height 110ms ease, transform 110ms ease, opacity 110ms ease;
  pointer-events: none;
}

.header-search-suggestion {
  -webkit-appearance: none;
  appearance: none;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  padding: 10px 12px 10px 14px;
  border: 0;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: left;
  color: #081627;
  transition: color 160ms ease;
  position: relative;
  z-index: 2;
  box-shadow: none;
  cursor: pointer;
}

.header-search-suggestion:hover,
.header-search-suggestion:focus-visible,
.header-search-suggestion.is-active {
  background: rgba(8, 22, 39, 0.035) !important;
  color: #0a4b91;
  box-shadow: none;
  border-radius: 0 !important;
  outline: none;
}

.header-search-suggestion-media {
  width: 48px;
  height: 48px;
  border-radius: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f5f7fa;
  border: 1px solid rgba(8, 22, 39, 0.06);
}

.header-search-suggestion-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-search-suggestion-copy {
  display: grid;
  gap: 0;
  min-width: 0;
  position: relative;
  z-index: 2;
  align-content: center;
}

.header-search-suggestion-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  color: #081627;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 160ms ease;
}

.header-search-suggestion-meta {
  color: #60758d;
  font-size: 0.78rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 160ms ease;
}

.header-search-suggestion-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 160ms ease;
  color: #42586f;
  margin-top: 2px;
}

.header-search-suggestion:hover .header-search-suggestion-title,
.header-search-suggestion:focus-visible .header-search-suggestion-title,
.header-search-suggestion.is-active .header-search-suggestion-title {
  color: #0a4b91;
}

.header-search-suggestion:hover .header-search-suggestion-meta,
.header-search-suggestion:focus-visible .header-search-suggestion-meta,
.header-search-suggestion.is-active .header-search-suggestion-meta {
  color: #42586f;
}

.header-search-suggestion-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.header-search-suggestion-status.status-available {
  color: #108043 !important;
}

.header-search-suggestion-status.status-on_demand {
  color: #0a4b91 !important;
}

.header-search-suggestion-status.status-quoted {
  color: #b57600 !important;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.header-contact {
  display: grid;
  gap: 1px;
  margin-right: 6px;
  padding-right: 8px;
  text-align: right;
  color: #0a1b2d;
  border-right: 1px solid rgba(8, 22, 39, 0.08);
}

.header-contact-kicker {
  color: #60758d;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-contact-value {
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.header-cart-dropdown {
  position: relative;
}

.header-cart-dropdown summary {
  list-style: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(8, 22, 39, 0.12);
  background: white;
  color: #0a1b2d;
  cursor: pointer;
  position: relative;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cart-dropdown summary::-webkit-details-marker {
  display: none;
}

.header-cart-dropdown summary:hover,
.header-cart-dropdown[open] summary {
  background: #f4f8fc;
  border-color: rgba(10, 75, 145, 0.22);
}

.header-cart-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
}

.header-cart-icon svg {
  width: 20px;
  height: 20px;
}

.header-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a4b91;
  color: white;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-cart-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(472px, calc(100vw - 24px));
  padding: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(8, 22, 39, 0.08);
  box-shadow: 0 22px 44px rgba(8, 22, 39, 0.14);
  display: grid;
  gap: 0;
  z-index: 12;
  overflow: hidden;
}

.header-cart-head,
.header-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-cart-head strong,
.header-cart-total strong {
  color: #081627;
}

.header-cart-head {
  min-height: 62px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(8, 22, 39, 0.08);
}

.header-cart-head span,
.header-cart-total span,
.header-cart-item-meta,
.header-cart-empty {
  color: #60758d;
  font-size: 0.8rem;
}

.header-cart-head strong {
  font-size: 0.98rem;
  font-weight: 500;
}

.header-cart-items {
  display: grid;
  padding: 4px 20px 0;
  max-height: min(56vh, 460px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.header-cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
  color: #0a1b2d;
}

.header-cart-item:first-child {
  border-top: 0;
}

.header-cart-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  min-width: 88px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f8fc;
}

.header-cart-item-media img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.header-cart-item-body {
  display: grid;
  gap: 6px;
}

.header-cart-item-name {
  color: #1c2f46;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
}

.header-cart-item-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.header-cart-item-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cart-item-remove {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f6a9a;
  cursor: pointer;
}

.header-cart-item-remove svg {
  width: 22px;
  height: 22px;
}

.header-cart-item-price {
  color: #10263f;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-cart-quantity-control {
  display: grid;
  grid-template-columns: 34px 50px 34px;
  min-height: 34px;
  border: 1px solid rgba(8, 22, 39, 0.18);
  background: #fff;
}

.header-cart-quantity-control button,
.header-cart-quantity-control input {
  border: 0;
  background: #fff;
  color: #1b2c40;
  text-align: center;
}

.header-cart-quantity-control button {
  font-size: 1rem;
  color: #f36b11;
  cursor: pointer;
}

.header-cart-quantity-control button:disabled {
  opacity: 0.35;
  cursor: default;
}

.header-cart-quantity-control input {
  font-size: 0.9rem;
  font-weight: 600;
}

.header-cart-empty {
  padding: 18px 20px;
}

.header-cart-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 20px 18px;
}

.header-cart-actions .button {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.header-cart-total {
  padding: 14px 20px 0;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
}

.header-cart-total strong {
  font-size: 0.92rem;
}

.header-cart-dropdown.is-cart-activated .header-cart-icon,
.header-cart-dropdown.is-cart-activated .header-cart-badge {
  animation: mini-cart-confirm 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page-shell .button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-shell .button-primary {
  background: var(--brand);
  color: white;
}

.page-shell .button-primary:hover {
  background: #156ccb;
}

.page-shell .button-secondary {
  background: white;
  border-color: rgba(8, 22, 39, 0.12);
  color: #0a1b2d;
}

.page-shell .button-secondary:hover,
.page-shell .button-dark:hover {
  transform: translateY(-1px);
}

.page-shell .button-dark {
  background: #0a1b2d;
  color: white;
}

.home-hero,
.catalog-hero {
  position: relative;
  padding: 52px 0 40px;
  background:
    radial-gradient(circle at top left, rgba(31, 121, 223, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef4f9 100%);
}

.home-hero-inner,
.catalog-hero-inner,
.catalog-shell {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.home-hero-copy h1,
.catalog-hero h1,
.catalog-heading h1,
.catalog-family-hero h1,
.catalog-product-hero h1 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 12ch;
}

.home-hero-copy p,
.catalog-hero p,
.section-copy {
  max-width: 60ch;
  color: #5e7389;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-list-row,
.catalog-hero-note,
.home-hero-side,
.catalog-toolbar,
.catalog-panel,
.catalog-product,
.catalog-empty,
.home-cta {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 22, 39, 0.08);
}

.hero-list-row {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
}

.hero-list-row strong,
.catalog-hero-note strong,
.catalog-toolbar-copy strong {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-list-row span,
.catalog-hero-note span,
.catalog-toolbar-copy span {
  color: #60758d;
  font-size: 0.92rem;
}

.home-hero-side {
  padding: 20px;
  border-radius: 22px;
}

.panel-heading {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 0.96;
}

.panel-body {
  margin: 10px 0 0;
  color: #60758d;
}

.home-section,
.section {
  padding: 48px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.section-heading h2,
.catalog-family-copy h2,
.detail-block h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.home-category-grid,
.catalog-grid,
.catalog-products,
.home-brand-row {
  display: grid;
  gap: 18px;
}

.home-category-grid,
.catalog-grid,
.catalog-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-panel,
.catalog-product {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
}

.catalog-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.catalog-card-media img,
.catalog-hero-media img,
.catalog-heading-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-panel h3,
.catalog-product h2 {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.08;
}

.catalog-panel p,
.catalog-product p,
.catalog-family-copy p,
.detail-block p {
  margin: 0;
  color: #60758d;
}

.catalog-links,
.catalog-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-link-list a,
.home-brand-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 121, 223, 0.08);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.home-brand-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-brand-row a {
  display: grid;
  justify-items: start;
  gap: 2px;
  min-height: 90px;
  padding: 14px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(8, 22, 39, 0.08);
}

.home-brand-row strong {
  font-size: 1rem;
}

.home-brand-row span {
  color: #60758d;
  font-size: 0.84rem;
}

.home-brand-more {
  justify-content: center;
}

.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
}

.catalog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 22px;
  align-items: end;
}

.catalog-hero-note,
.catalog-toolbar {
  padding: 16px 18px;
  border-radius: 18px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.catalog-filters {
  align-self: start;
  position: sticky;
  top: 108px;
  padding: 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(8, 22, 39, 0.08);
}

.filter-section {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-section label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #526b83;
}

.catalog-filters select {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(8, 22, 39, 0.12);
  background: #fbfdff;
}

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

.catalog-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-attributes {
  display: grid;
  gap: 8px;
  margin: 0;
}

.catalog-attributes div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
}

.catalog-attributes dt,
.catalog-attributes dd {
  margin: 0;
  font-size: 0.9rem;
}

.catalog-attributes dt {
  color: #60758d;
}

.catalog-family-hero,
.catalog-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: center;
  padding: 18px 0 0;
}

.catalog-hero-media,
.catalog-heading-media {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
}

.catalog-family-body,
.catalog-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 26px;
}

.catalog-family-copy,
.catalog-product-main,
.catalog-family-siblings,
.catalog-product-side {
  display: grid;
  gap: 18px;
}

.detail-block {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
}

.variant-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 121, 223, 0.08);
  color: var(--brand-deep);
}

.variant-switcher a[aria-current="page"] {
  background: var(--brand);
  color: white;
}

.catalog-empty {
  padding: 24px;
  border-radius: 18px;
}

.footer {
  margin-top: 40px;
  background: #0a2140;
  color: rgba(250, 247, 240, 0.84);
  border-top: 2px solid rgba(149, 199, 255, 0.34);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: start;
  padding: 50px 0 28px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo img {
  width: 188px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-copy {
  max-width: 48ch;
  margin: 0;
  font-size: 0.98rem;
  color: rgba(250, 247, 240, 0.68);
}

.footer-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(149, 199, 255, 0.14);
}

.footer-contact-link {
  display: grid;
  gap: 4px;
  min-width: 180px;
  transition: transform 140ms ease, color 140ms ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  transform: translateY(-2px);
  color: white;
}

.footer-contact-link span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(149, 199, 255, 0.78);
}

.footer-contact-link strong {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(149, 199, 255, 0.14);
}

.footer-column-title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(149, 199, 255, 0.78);
}

.footer-column a {
  color: rgba(250, 247, 240, 0.84);
  font-size: 0.96rem;
  transition: transform 140ms ease, color 140ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(149, 199, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(250, 247, 240, 0.58);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(149, 199, 255, 0.78);
  transition: color 140ms ease, transform 140ms ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: white;
  transform: translateY(-1px);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #25d366 0%, #18bb56 100%);
  color: white;
  box-shadow: 0 16px 32px rgba(20, 122, 54, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(20, 122, 54, 0.32);
  outline: none;
}

.whatsapp-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-float-icon svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float-copy {
  display: grid;
  line-height: 1.05;
}

.whatsapp-float-copy span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float-copy small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1080px) {
  .header-inner,
  .home-hero-inner,
  .catalog-hero-inner,
  .catalog-layout,
  .catalog-family-hero,
  .catalog-product-hero,
  .catalog-family-body,
  .catalog-product-detail,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .home-proof-strip,
  .home-category-grid,
  .catalog-grid,
  .catalog-products,
  .home-brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-filters {
    position: static;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "search search";
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  .header-actions {
    grid-area: actions;
  }

  .header-searchbar {
    grid-area: search;
  }

  .header-search-suggestions {
    left: 0;
    right: 0;
  }

  .header-nav {
    display: none;
  }

  .header-nav-indicator {
    display: none;
  }

  body.menu-open .header-nav {
    position: fixed;
    inset: 74px 12px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 22, 39, 0.08);
    border-radius: 18px;
    min-width: min(360px, calc(100vw - 24px));
  }

  body.menu-open .header-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .header-dropdown-indicator {
    display: none;
  }

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

  .header-cart-menu {
    right: -12px;
  }

  .header-dropdown-link,
  .header-search-suggestion {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .header-dropdown-icon,
  .header-search-suggestion-media {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .header-search-suggestion-title,
  .header-search-suggestion-meta {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .home-hero-inner,
  .catalog-hero-inner,
  .catalog-shell,
  .home-hero-inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100vw - 24px);
  }

  .home-hero,
  .catalog-hero,
  .section {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .brand-mark {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

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

  .header-searchbar button {
    min-width: 80px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding-right: 14px;
  }

  .whatsapp-float-copy small {
    display: none;
  }

  .home-proof-strip,
  .home-category-grid,
  .catalog-grid,
  .catalog-products,
  .home-brand-row,
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .home-hero-copy h1,
  .catalog-hero h1,
  .catalog-heading h1,
  .catalog-family-hero h1,
  .catalog-product-hero h1 {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .home-hero-side,
  .catalog-panel,
  .catalog-product,
  .home-cta {
    padding: 16px;
  }

  .home-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .catalog-links,
  .catalog-product-actions {
    width: 100%;
  }

  .hero-actions .button,
  .catalog-links .button,
  .catalog-product-actions .button {
    width: 100%;
  }

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

  .footer-column {
    padding-left: 0;
    padding-top: 14px;
    border-left: 0;
    border-top: 1px solid rgba(149, 199, 255, 0.14);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }
}

.store-home {
  padding-bottom: 24px;
}

.store-home-hero {
  position: relative;
  overflow: clip;
  padding: 42px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(31, 121, 223, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(8, 22, 39, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4f8 100%);
}

.store-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 22, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 22, 39, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 82%);
  pointer-events: none;
}

.store-home-hero-inner,
.store-home-section {
  position: relative;
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
}

.store-home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: end;
}

.store-home-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px 0;
}

.store-home-eyebrow,
.store-home-spotlight-kicker,
.store-category-topline,
.store-product-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a728a;
}

.store-home-intro,
.store-home-copy p,
.store-home-section-head p,
.store-home-spotlight-body p,
.store-category-tile p,
.store-product-tile p,
.store-brand-tile span {
  margin: 0;
  color: #60758d;
}

.store-home-copy h1 {
  margin: 0;
  max-width: 10.5ch;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 4.8vw, 5.1rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #081627;
}

.store-home-copy p {
  max-width: 56ch;
  font-size: 1rem;
}

.store-home-jump-links,
.store-home-meta,
.store-category-subtags,
.store-product-links,
.store-brand-grid {
  display: flex;
  flex-wrap: wrap;
}

.store-home-jump-links {
  gap: 10px;
}

.store-home-jump-links a,
.store-category-subtags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(8, 22, 39, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: #0a1b2d;
  font-size: 0.8rem;
  font-weight: 600;
}

.store-home-meta {
  gap: 10px 18px;
  margin-top: 2px;
}

.store-home-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #42586f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.store-home-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(31, 121, 223, 0.5);
}

.store-home-spotlight {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 22, 39, 0.08);
  box-shadow: 0 24px 60px rgba(8, 22, 39, 0.08);
}

.store-home-spotlight-media {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #edf2f7;
}

.store-home-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-home-spotlight-body {
  display: grid;
  gap: 12px;
}

.store-home-spotlight h2,
.store-home-section-head h2,
.store-home-cta-band h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  color: #081627;
}

.store-home-spotlight h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.store-home-spotlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 2px 0 0;
}

.store-home-spotlight-list div {
  padding-top: 10px;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
}

.store-home-spotlight-list dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60758d;
}

.store-home-spotlight-list dd {
  margin: 4px 0 0;
  color: #081627;
  font-size: 0.96rem;
  font-weight: 600;
}

.store-home-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-home-section {
  padding: 34px 0;
}

.store-home-section-muted {
  border-top: 1px solid rgba(8, 22, 39, 0.06);
  border-bottom: 1px solid rgba(8, 22, 39, 0.06);
}

.store-home-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  max-width: 720px;
}

.store-home-section-head h2,
.store-home-cta-band h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  line-height: 0.96;
}

.store-home-category-grid,
.store-product-grid {
  display: grid;
  gap: 14px;
}

.store-home-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.store-category-tile,
.store-product-tile,
.store-brand-tile {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 22, 39, 0.08);
  border-radius: 18px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.store-category-tile:hover,
.store-product-tile:hover,
.store-brand-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 121, 223, 0.2);
  background: white;
}

.store-category-media,
.store-product-media {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #edf2f7;
}

.store-category-media {
  aspect-ratio: 1.2 / 0.92;
}

.store-product-media {
  aspect-ratio: 1 / 0.82;
}

.store-category-media img,
.store-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.store-category-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.store-category-topline span:last-child {
  white-space: nowrap;
}

.store-category-tile h3,
.store-product-tile h3 {
  margin: 0;
}

.store-category-tile h3 a,
.store-product-tile h3 a,
.store-brand-tile strong {
  color: #081627;
}

.store-category-tile h3 a {
  font-size: 1.08rem;
  line-height: 1.08;
}

.store-product-tile h3 a {
  font-size: 1rem;
  line-height: 1.14;
}

.store-category-tile p,
.store-product-tile p {
  font-size: 0.92rem;
  line-height: 1.52;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-category-tile p {
  -webkit-line-clamp: 3;
}

.store-product-tile p {
  -webkit-line-clamp: 3;
}

.store-category-subtags,
.store-product-links {
  gap: 8px;
}

.store-category-subtags a {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.74rem;
  white-space: nowrap;
}

.store-category-link,
.store-product-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.store-category-link {
  margin-top: auto;
}

.store-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-product-label {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.store-brand-tile {
  gap: 8px;
  align-content: start;
  min-height: 124px;
  text-decoration: none;
}

.store-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #edf2f7;
}

.store-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-brand-mark span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a1b2d;
}

.store-brand-tile strong {
  font-size: 0.94rem;
  line-height: 1.12;
}

.store-brand-tile span:last-child {
  font-size: 0.8rem;
}

.store-home-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
}

@media (max-width: 1180px) {
  .store-home-hero-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .store-home-hero-inner,
  .store-home-section {
    width: calc(100vw - 24px);
  }

  .store-home-hero {
    padding: 30px 0 18px;
  }

  .store-home-copy {
    gap: 14px;
    padding: 4px 0;
  }

  .store-home-copy h1 {
    max-width: 100%;
    font-size: 2.8rem;
  }

  .store-home-meta,
  .store-home-jump-links,
  .store-home-spotlight-actions,
  .store-product-links {
    width: 100%;
  }

  .store-home-spotlight,
  .store-category-tile,
  .store-product-tile,
  .store-brand-tile {
    padding: 12px;
    border-radius: 16px;
  }

  .store-home-spotlight-list {
    grid-template-columns: 1fr;
  }

  .store-home-category-grid,
  .store-product-grid,
  .store-brand-grid {
    grid-template-columns: 1fr;
  }

  .store-home-cta-band,
  .store-home-spotlight-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .store-home-spotlight-actions .button,
  .store-home-cta-band .button {
    width: 100%;
  }
}

.catalog-page-v1 {
  background: #f7f9fc;
}

.catalog-page-v1 .section {
  padding: 24px 0 30px;
}

.catalog-page-v1 .catalog-page-section {
  padding-top: 8px;
}

.catalog-page-v1 .catalog-page-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.catalog-page-v1 .catalog-page-head-with-media {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 360px);
  gap: 22px;
  align-items: start;
}

.catalog-page-v1 .catalog-page-head h1,
.catalog-page-v1 .catalog-page-section-head h2 {
  margin: 0;
  color: #10263f;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.catalog-page-v1 .catalog-page-head h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.catalog-page-v1 .catalog-page-head p,
.catalog-page-v1 .catalog-page-section-head p {
  max-width: 58ch;
  margin: 0;
  color: #60758d;
  font-size: 0.96rem;
  line-height: 1.48;
}

.catalog-page-v1 .catalog-page-section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.catalog-page-v1 .catalog-page-section-head h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.06;
}

.catalog-page-v1 .catalog-page-head-side {
  display: grid;
  gap: 12px;
}

.catalog-page-v1 .catalog-page-head-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(10, 75, 145, 0.12);
  box-shadow: 0 10px 24px rgba(10, 75, 145, 0.06);
}

.catalog-page-v1 .catalog-page-head-card strong {
  color: #10263f;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.catalog-page-v1 .catalog-page-head-card span {
  color: #60758d;
  font-size: 0.86rem;
}

.catalog-page-v1 .catalog-page-head-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(10, 75, 145, 0.12);
  box-shadow: 0 12px 28px rgba(10, 75, 145, 0.08);
  background: #fff;
}

.catalog-page-v1 .catalog-page-head-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-page-v1 .catalog-brand-grid .catalog-compact-media img,
.catalog-page-v1 .catalog-page-head-media img {
  object-fit: contain;
  object-position: center;
  padding: 0.9rem;
  background: #fff;
}

.catalog-page-v1 .catalog-breadcrumbs {
  margin-bottom: 12px;
  color: #60758d;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.catalog-page-v1 .catalog-breadcrumbs a,
.catalog-page-v1 .catalog-breadcrumbs strong {
  color: #60758d;
  font-weight: 600;
  text-transform: uppercase;
}

.catalog-page-v1 .catalog-breadcrumbs a:hover,
.catalog-page-v1 .catalog-breadcrumbs a:focus-visible {
  color: #0a4b91;
}

.catalog-page-v1 .catalog-category-carousel {
  margin-bottom: 4px;
}

.catalog-page-v1 .catalog-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-page-v1 .catalog-compact-card {
  display: grid;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
}

.catalog-page-v1 .catalog-compact-media {
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 75, 145, 0.12);
  box-shadow: 0 10px 24px rgba(10, 75, 145, 0.06);
}

.catalog-page-v1 .catalog-compact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-page-v1 .catalog-compact-copy {
  display: grid;
  gap: 8px;
}

.catalog-page-v1 .catalog-compact-copy h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.14;
  color: #10263f;
}

.catalog-page-v1 .catalog-compact-copy h3 a {
  color: inherit;
}

.catalog-page-v1 .catalog-compact-copy p {
  margin: 0;
  color: #60758d;
  font-size: 0.88rem;
  line-height: 1.42;
}

.catalog-page-v1 .catalog-meta-inline {
  color: #6f7f91;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-page-v1 .catalog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-page-v1 .catalog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: rgba(10, 75, 145, 0.08);
  color: #0a4b91;
  font-size: 0.78rem;
  font-weight: 600;
}

.catalog-page-v1 .catalog-toolbar {
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-page-v1 .catalog-toolbar-copy {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(16, 38, 63, 0.12);
}

.catalog-page-v1 .catalog-toolbar-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #10263f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.catalog-page-v1 .catalog-toolbar-copy span,
.catalog-page-v1 .catalog-toolbar-copy span a {
  color: #60758d;
  font-size: 0.84rem;
  line-height: 1.4;
}

.catalog-page-v1 .catalog-layout {
  gap: 18px;
  margin-top: 0;
}

.catalog-page-v1 .catalog-filters,
.catalog-page-v1 .catalog-product,
.catalog-page-v1 .catalog-empty {
  border: 1px solid rgba(10, 75, 145, 0.12);
  box-shadow: 0 12px 26px rgba(10, 75, 145, 0.06);
  background: #fff;
}

.catalog-page-v1 .catalog-facets form {
  display: grid;
  gap: 10px;
}

.catalog-page-v1 .catalog-filter-group {
  border-bottom: 1px solid rgba(10, 75, 145, 0.1);
  padding-bottom: 10px;
}

.catalog-page-v1 .catalog-filter-group:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.catalog-page-v1 .catalog-filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  color: #10263f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-page-v1 .catalog-filter-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #10263f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-page-v1 .catalog-filter-group summary::-webkit-details-marker {
  display: none;
}

.catalog-page-v1 .catalog-filter-group summary::after {
  content: "+";
  color: #0a4b91;
  font-size: 1rem;
  font-weight: 700;
}

.catalog-page-v1 .catalog-filter-group[open] summary::after {
  content: "\2212";
}

.catalog-page-v1 .catalog-filter-group.is-static summary {
  cursor: default;
  pointer-events: none;
}

.catalog-page-v1 .catalog-filter-group.is-static summary::after,
.catalog-page-v1 .catalog-filter-group.is-static .catalog-filter-group-heading::after {
  content: "";
}

.catalog-page-v1 .catalog-filter-options {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.catalog-page-v1 .catalog-filter-option {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.catalog-page-v1 .catalog-filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.catalog-page-v1 .catalog-filter-box {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(10, 75, 145, 0.22);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.catalog-page-v1 .catalog-filter-box::after {
  content: "\00D7";
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transform: scale(0);
  transition: transform 160ms ease;
}

.catalog-page-v1 .catalog-filter-option input:checked + .catalog-filter-box {
  border-color: #0a4b91;
  background: #0a4b91;
  box-shadow: 0 0 0 3px rgba(10, 75, 145, 0.1);
}

.catalog-page-v1 .catalog-filter-option input:checked + .catalog-filter-box::after {
  transform: scale(1);
}

.catalog-page-v1 .catalog-filter-option.is-fixed {
  cursor: default;
}

.catalog-page-v1 .catalog-filter-option.is-disabled {
  cursor: default;
  opacity: 0.42;
}

.catalog-page-v1 .catalog-filter-option.is-disabled .catalog-filter-label {
  color: #9aa7b5;
}

.catalog-page-v1 .catalog-filter-option.is-disabled .catalog-filter-box {
  border-color: rgba(10, 75, 145, 0.12);
  background: #f6f8fb;
}

.catalog-page-v1 .catalog-filter-group.is-unavailable {
  opacity: 0.68;
}

.catalog-page-v1 .catalog-filter-label {
  color: #42586f;
  font-size: 0.9rem;
  line-height: 1.3;
}

.catalog-page-v1 .catalog-product {
  gap: 10px;
  border-radius: 0;
}

.catalog-page-v1 .catalog-card-media {
  margin: -24px -24px 14px;
  border: 0;
  border-bottom: 1px solid rgba(10, 75, 145, 0.1);
  background: #edf4fb;
}

.catalog-page-v1 .catalog-panel-kicker {
  color: #0a4b91;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.catalog-page-v1 .catalog-product h2 {
  font-size: 1.18rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  text-transform: none;
}

.catalog-page-v1 .catalog-product p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.catalog-page-v1 .catalog-attributes {
  margin-top: 2px;
}

.catalog-page-v1 .catalog-attributes dt,
.catalog-page-v1 .catalog-attributes dd {
  font-size: 0.84rem;
}

.catalog-page-v1 .catalog-link-list a {
  border-radius: 999px;
  background: rgba(10, 75, 145, 0.08);
  color: #0a4b91;
}

.store-home-v1 {
  background: #f7f9fc;
}

.store-home-v1 .store-home-hero {
  padding: 0;
  background: transparent;
}

.store-home-v1 .store-home-banner {
  position: relative;
  width: 100%;
  min-height: clamp(15rem, 31vw, 22rem);
  overflow: hidden;
  background-color: #bfd6eb;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.store-home-v1 .store-home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.store-home-v1 .store-home-banner-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(0.85rem, 2.2vw, 1.7rem) clamp(1rem, 2.8vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
}

.store-home-v1 .store-home-banner-top,
.store-home-v1 .store-home-banner-bottom {
  display: grid;
  gap: 8px;
}

.store-home-v1 .store-home-eyebrow-light {
  color: rgba(255, 255, 255, 0.9);
}

.store-home-v1 .store-home-hero h1,
.store-home-v1 .store-home-section-head h2,
.store-home-v1 .store-home-support-copy h2,
.store-home-v1 .store-home-products-head h2,
.store-home-v1 .store-home-cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.store-home-v1 .store-home-hero h1 {
  max-width: none;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.store-home-v1 .store-home-banner-copy {
  max-width: 31rem;
  margin: 0;
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.store-home-v1 .store-home-banner-button {
  min-width: clamp(10rem, 16vw, 12.5rem);
  border-radius: 0;
  border-color: #0a4b91;
  background: #0a4b91;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(10, 75, 145, 0.22);
}

.store-home-v1 .store-home-banner-button:hover,
.store-home-v1 .store-home-banner-button:focus-visible {
  border-color: #083f79;
  background: #083f79;
  color: #fff;
}

.store-home-v1 .store-home-section,
.store-home-v1 .store-home-section-soft {
  padding: 22px 0 30px;
}

.store-home-v1 .store-home-section-soft {
  background: #f2f6fb;
}

.store-home-v1 .store-home-section-head {
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(16, 38, 63, 0.12);
}

.store-home-v1 .store-home-section-head h2,
.store-home-v1 .store-home-support-copy h2,
.store-home-v1 .store-home-products-head h2,
.store-home-v1 .store-home-cta-band h2 {
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  line-height: 1.15;
  color: #10263f;
}

.store-home-v1 .store-home-section-head p,
.store-home-v1 .store-home-support-copy p,
.store-home-v1 .store-home-products-head p,
.store-home-v1 .store-home-cta-band p,
.store-home-v1 .store-category-tile p,
.store-home-v1 .store-product-tile p,
.store-home-v1 .store-home-support-panel p {
  color: #66788a;
}

.store-home-v1 .store-home-category-grid-v1,
.store-home-v1 .store-product-grid-v1 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.store-home-v1 .store-category-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-home-v1 .store-category-carousel-control {
  flex: 0 0 auto;
  width: 38px;
  height: 62px;
  border: 1px solid rgba(10, 75, 145, 0.22);
  background: #fff;
  color: #0a4b91;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(10, 75, 145, 0.08);
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.store-home-v1 .store-category-carousel-control:hover,
.store-home-v1 .store-category-carousel-control:focus-visible {
  border-color: #0a4b91;
  background: #0a4b91;
  color: #fff;
  box-shadow: 0 14px 28px rgba(10, 75, 145, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.store-home-v1 .store-category-carousel-control[disabled] {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

.store-home-v1 .store-category-tile-v1,
.store-home-v1 .store-product-tile-v1 {
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.store-home-v1 .store-home-category-grid-v1 {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 248px;
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 0;
}

.store-home-v1 .store-home-category-grid-v1::-webkit-scrollbar {
  display: none;
}

.store-home-v1 .store-category-media-v1,
.store-home-v1 .store-product-media-v1 {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
}

.store-home-v1 .store-category-media-v1 {
  position: relative;
  aspect-ratio: 1.42 / 1;
  background: #fff;
  border: 1px solid rgba(10, 75, 145, 0.12);
  scroll-snap-align: start;
  box-shadow: 0 8px 18px rgba(10, 75, 145, 0.06);
}

.store-home-v1 .store-product-media-v1 {
  aspect-ratio: 1 / 1;
  background: #eef4f9;
}

.store-home-v1 .store-category-media-v1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #fff;
}

.store-home-v1 #marcas .store-category-media-v1 img {
  object-fit: contain;
  object-position: center;
  padding: 0.9rem;
}

.store-home-v1 #marcas .store-category-tile:hover img {
  transform: none;
}

.store-home-v1 .store-category-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.54rem 0.58rem;
  background: linear-gradient(180deg, rgba(8, 22, 39, 0) 0%, rgba(10, 75, 145, 0.88) 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.18;
  text-align: center;
}

.store-home-v1 .store-product-media-v1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.9rem;
  background: #fff;
}

.store-home-v1 .store-category-body,
.store-home-v1 .store-product-body {
  display: grid;
  gap: 0.42rem;
  padding-top: 0.8rem;
}

.store-home-v1 .store-category-tile h3,
.store-home-v1 .store-product-tile h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.14;
  font-weight: 700;
}

.store-home-v1 .store-category-tile h3 a,
.store-home-v1 .store-product-tile h3 a {
  color: #10263f;
}

.store-home-v1 .store-category-tile p,
.store-home-v1 .store-product-tile p {
  font-size: 0.86rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.store-home-v1 .store-category-topline,
.store-home-v1 .store-product-topline {
  color: #6f7f91;
}

.store-home-v1 .store-category-link,
.store-home-v1 .store-product-links a {
  min-height: auto;
  color: #1976e7;
  font-size: 0.86rem;
  font-weight: 700;
}

.store-home-v1 .store-home-support {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 18px;
  align-items: start;
}

.store-home-v1 .store-home-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.store-home-v1 .store-home-support-panel,
.store-home-v1 .store-home-cta-band-v1 {
  background: #fff;
  border: 1px solid #dbe4ee;
  border-radius: 1rem;
}

.store-home-v1 .store-home-support-panel {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(25, 118, 231, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 12px 30px rgba(16, 38, 63, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-home-v1 .store-home-support-panel:hover,
.store-home-v1 .store-home-support-panel:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(25, 118, 231, 0.3);
  box-shadow: 0 16px 34px rgba(16, 38, 63, 0.1);
  outline: none;
}

.store-home-v1 .store-home-support-panel h3 {
  margin: 0 0 0.25rem;
  color: #10263f;
  font-size: 1rem;
}

.store-home-v1 .store-home-support-panel p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.store-home-v1 .store-home-support-panel span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: #1976e7;
  font-size: 0.86rem;
  font-weight: 700;
}

.store-home-v1 .store-home-support-panel span::after {
  content: "\2192";
  font-size: 0.95em;
}

.store-home-v1 .store-home-products-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.store-home-v1 .store-home-products-title {
  max-width: none;
  white-space: nowrap;
}

.store-home-v1 .store-home-cta-band-v1 {
  padding: 1.25rem;
  border-top: 0;
}

@media (max-width: 1180px) {
  .catalog-page-v1 .catalog-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-page-v1 .catalog-page-head-with-media {
    grid-template-columns: 1fr;
  }

  .store-home-v1 .store-product-grid-v1,
  .store-home-v1 .store-home-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-home-v1 .store-home-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .catalog-page-v1 .catalog-toolbar,
  .catalog-page-v1 .catalog-compact-grid {
    grid-template-columns: 1fr;
  }

  .store-home-v1 .store-home-banner {
    min-height: 16.5rem;
  }

  .store-home-v1 .store-home-banner-inner {
    width: calc(100vw - 24px);
    padding: 0.8rem 0 1rem;
  }

  .store-home-v1 .store-home-hero h1 {
    max-width: none;
    font-size: 2.15rem;
  }

  .store-home-v1 .store-home-banner-copy {
    font-size: 0.88rem;
    line-height: 1.18;
  }

  .store-home-v1 .store-product-grid-v1,
  .store-home-v1 .store-home-support-grid {
    grid-template-columns: 1fr;
  }

  .store-home-v1 .store-category-carousel {
    gap: 6px;
  }

  .store-home-v1 .store-category-carousel-control {
    width: 34px;
    height: 56px;
    font-size: 1.3rem;
  }

  .store-home-v1 .store-home-category-grid-v1 {
    grid-auto-columns: minmax(176px, 74vw);
    gap: 8px;
  }

  .store-home-v1 .store-category-title {
    padding: 0.48rem 0.52rem 0.5rem;
    font-size: 0.82rem;
  }

  .store-home-v1 .store-home-products-head,
  .store-home-v1 .store-home-cta-band-v1,
  .store-home-v1 .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

.store-home-v1 .store-home-products-head .button,
.store-home-v1 .store-home-cta-band-v1 .button,
.store-home-v1 .hero-actions .button {
    width: 100%;
  }
}

.catalog-results {
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-page-v1 .catalog-products {
  grid-template-columns: repeat(auto-fill, minmax(286px, 286px));
  justify-content: center;
  gap: 14px;
}

.catalog-results.is-loading {
  opacity: 0.4;
  transform: translateY(6px);
}

.catalog-results.is-entering {
  opacity: 0;
  transform: translateY(10px);
}

.catalog-page-v1 .catalog-product {
  gap: 5px;
  padding: 12px;
  border-radius: 0;
  overflow: hidden;
}

.catalog-page-v1 .catalog-card-media {
  margin: -12px -12px 6px;
  aspect-ratio: 1 / 0.78;
  border: 0;
  border-bottom: 1px solid rgba(10, 75, 145, 0.1);
  border-radius: 0;
  background: #edf4fb;
}

.catalog-page-v1 .catalog-product h2 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.12;
  font-weight: 500;
}

.catalog-page-v1 .catalog-product h2 a {
  color: #10263f;
  font-weight: 500;
}

.catalog-page-v1 .catalog-product p {
  font-size: 0.8rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.catalog-page-v1 .catalog-product-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.catalog-page-v1 .catalog-product-price-block,
.store-home-v1 .store-product-price-block {
  display: grid;
  gap: 2px;
  align-content: start;
  transition: transform 220ms ease, filter 220ms ease;
  transform-origin: left bottom;
}

.catalog-page-v1 .catalog-product-price-row .status-chip,
.store-home-v1 .store-product-topline .status-chip {
  align-self: flex-end;
}

.catalog-page-v1 .catalog-product-price,
.store-home-v1 .store-product-price {
  color: #10263f;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
  transition: color 220ms ease;
}

.catalog-page-v1 .catalog-product-price-original,
.store-home-v1 .store-product-price-original {
  color: #7b8898;
  font-size: 0.8rem;
  line-height: 1;
  text-decoration: line-through;
  transition: opacity 220ms ease, transform 220ms ease;
}

.price-transition-original {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.price-transition-original.is-entering {
  animation: pricing-transition-original-enter 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-page-v1 .status-chip,
.store-home-v1 .status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-page-v1 .status-chip::before,
.store-home-v1 .status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.catalog-page-v1 .availability-available,
.store-home-v1 .availability-available {
  color: #108043;
}

.catalog-page-v1 .availability-on_request,
.store-home-v1 .availability-on_request {
  color: #0a4b91;
}

.catalog-page-v1 .availability-quote_required,
.store-home-v1 .availability-quote_required {
  color: #b57600;
}

.catalog-page-v1 .catalog-product-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 1px;
}

.catalog-product-order-form {
  display: flex;
  align-items: stretch;
  gap: 6px;
  width: 100%;
}

.catalog-product-internal-note {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  background: rgba(244, 248, 255, 0.96);
  color: #48617c;
  font-size: 0.76rem;
  line-height: 1.45;
}

.catalog-page-v1 .catalog-product-actions .button {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 0.71rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.store-home-v1 .store-product-body {
  gap: 0.28rem;
}

.store-home-v1 .store-product-topline {
  align-items: center;
  justify-content: flex-start;
}

.store-home-v1 .store-product-grid-v1 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.store-home-v1 .store-product-tile-v1 {
  max-width: 100%;
}

.store-home-v1 .store-product-media-v1 {
  aspect-ratio: 1 / 0.9;
}

.store-home-v1 .store-product-media-v1 img {
  padding: 0.78rem;
}

.store-home-v1 .store-product-tile h3 {
  font-size: 0.96rem;
  line-height: 1.12;
  font-weight: 500;
}

.store-home-v1 .store-product-tile p {
  font-size: 0.78rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.store-home-v1 .store-product-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(10, 75, 145, 0.16);
  border-radius: 10px;
  background: #fff;
  color: #0a4b91;
  font-size: 0.82rem;
}

.catalog-quantity-control,
.store-quantity-control {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  flex: 0 0 92px;
  width: 92px;
  min-width: 0;
  align-items: stretch;
  min-height: 34px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition:
    width 220ms ease,
    flex-basis 220ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    margin 220ms ease,
    border-width 180ms ease;
}

.catalog-quantity-control button,
.store-quantity-control button {
  border: 0;
  background: #f4f8fc;
  color: #0a4b91;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.catalog-quantity-control button:hover,
.store-quantity-control button:hover {
  background: #e7f0fa;
}

.catalog-quantity-control input,
.store-quantity-control input {
  width: 100%;
  border: 0;
  padding: 0;
  background: #fff;
  color: #10263f;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.catalog-quantity-control input:focus,
.store-quantity-control input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(10, 75, 145, 0.18);
}

.catalog-quantity-control button:disabled,
.store-quantity-control button:disabled {
  opacity: 0.4;
  cursor: default;
}

.store-home-v1 .store-product-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: stretch;
}

.store-home-v1 .store-product-links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  flex: 1 1 auto;
  padding: 0 10px;
  border: 1px solid rgba(10, 75, 145, 0.16);
  border-radius: 10px;
  background: #fff;
  color: #0a4b91;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-page-v1 .catalog-product-actions button.is-added,
.store-home-v1 .store-product-links button.is-added {
  border-color: #0a4b91;
  background: #0a4b91;
  color: #fff;
  box-shadow: 0 10px 18px rgba(10, 75, 145, 0.18);
  transform: translateY(-1px) scale(1.02);
  animation: product-add-bounce 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-page-v1 .catalog-product.is-added,
.store-home-v1 .store-product-tile.is-added {
  box-shadow: 0 16px 28px rgba(10, 75, 145, 0.12);
  animation: product-card-confirm 320ms ease;
}

.catalog-page-v1 .catalog-product.is-added .catalog-quantity-control,
.store-home-v1 .store-product-tile.is-added .store-quantity-control {
  opacity: 0;
  width: 0;
  flex-basis: 0;
  margin-right: -8px;
  border-width: 0;
  transform: translateX(-8px) scale(0.94);
  pointer-events: none;
}

.catalog-page-v1 .catalog-product a,
.store-home-v1 .store-product-tile a {
  transition: color 160ms ease, opacity 160ms ease;
}

.catalog-page-v1 .catalog-card-media:hover img,
.store-home-v1 .store-product-media-v1:hover img {
  transform: scale(1.03);
}

.catalog-page-v1 .catalog-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-page-v1 .catalog-card-media img {
  object-fit: contain;
  object-position: center;
  padding: 0.72rem;
  background: #fff;
}

.catalog-page-v1 .catalog-product p,
.store-home-v1 .store-product-tile p {
  display: none;
}

@keyframes product-add-bounce {
  0% {
    transform: translateY(0) scale(1);
  }

  24% {
    transform: translateY(-2px) scale(1.05);
  }

  58% {
    transform: translateY(1px) scale(0.98);
  }

  100% {
    transform: translateY(-1px) scale(1.02);
  }
}

@keyframes product-card-confirm {
  0% {
    box-shadow: 0 0 0 rgba(10, 75, 145, 0);
  }

  50% {
    box-shadow: 0 18px 34px rgba(10, 75, 145, 0.16);
  }

  100% {
    box-shadow: 0 16px 28px rgba(10, 75, 145, 0.12);
  }
}

@keyframes mini-cart-confirm {
  0% {
    transform: scale(1);
  }

  22% {
    transform: scale(1.14);
  }

  48% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .catalog-page-v1 .catalog-products {
    grid-template-columns: repeat(auto-fill, minmax(280px, 280px));
    justify-content: center;
  }

  .store-home-v1 .store-product-grid-v1 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .catalog-page-v1 .catalog-product-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-quantity-control,
  .store-quantity-control {
    flex: 0 0 68px;
    width: 68px;
  }

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

.product-page-v2 {
  background:
    radial-gradient(circle at top left, rgba(31, 121, 223, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.product-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.product-hero-media-v2,
.product-purchase-panel-v2,
.product-variants-panel-v2,
.product-detail-panel-v2,
.product-faq-item-v2,
.product-related-card-v2 {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 75, 145, 0.12);
  box-shadow: 0 18px 36px rgba(10, 75, 145, 0.08);
}

.product-hero-media-v2 {
  padding: 18px;
}

.product-media-stage-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.9;
  background: #ffffff;
  overflow: hidden;
}

.product-media-stage-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.4rem;
  transition: opacity 180ms ease;
}

.product-media-stage-v2 img.is-swapping {
  opacity: 0.35;
}

.product-media-strip-v2 {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-media-thumb-v2 {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(10, 75, 145, 0.16);
  background: #fff;
  padding: 8px;
  cursor: pointer;
}

.product-media-thumb-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-media-thumb-v2.is-active {
  border-color: #0a4b91;
  box-shadow: 0 10px 20px rgba(10, 75, 145, 0.12);
}

.product-hero-aside-v2 {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 92px;
}

.product-hero-copy-v2 {
  display: grid;
  gap: 8px;
}

.product-hero-copy-v2 .section-kicker a {
  color: inherit;
}

.product-hero-copy-v2 .section-kicker a:hover,
.product-hero-copy-v2 .section-kicker a:focus-visible {
  color: #0a4b91;
}

.product-hero-copy-v2 h1 {
  margin: 0;
  color: #10263f;
  font-size: clamp(1.9rem, 3.4vw, 2.95rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.product-hero-copy-v2 p {
  margin: 0;
  max-width: 42ch;
  color: #60758d;
  font-size: 0.98rem;
  line-height: 1.45;
}

.product-purchase-panel-v2,
.product-variants-panel-v2,
.product-detail-panel-v2,
.product-faq-item-v2 {
  padding: 18px;
}

.product-price-stack-v2 {
  display: grid;
  gap: 6px;
}

.pricing-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pricing-badge-row-product {
  margin-top: 10px;
}

.pricing-badge-row[hidden] {
  display: none;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(191, 93, 0, 0.12);
  color: #8f4300;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-badge-discount-rule {
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(31, 121, 223, 0.08);
  color: #0f5fb5;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(31, 121, 223, 0.12);
}

.pricing-badge-volume-pricing-rule {
  background: rgba(191, 125, 24, 0.12);
  color: #8f5a00;
}

.pricing-note {
  margin-top: 10px;
  color: #8f4300;
  font-size: 0.86rem;
  line-height: 1.4;
}

.pricing-message-stack {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.pricing-matrix-meta {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.pricing-matrix-meta small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.pricing-rule-summary {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.pricing-rule-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pricing-rule-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-rule-pill-tier {
  color: #0a2140;
  background: rgba(31, 121, 223, 0.12);
}

.pricing-rule-pill-tier-silver {
  color: #45566a;
  background: rgba(120, 135, 151, 0.18);
}

.pricing-rule-pill-tier-gold {
  color: #8a5900;
  background: rgba(191, 125, 24, 0.18);
}

.pricing-rule-pill-tier-vip {
  color: #0c4a8e;
  background: rgba(31, 121, 223, 0.18);
  box-shadow: inset 0 0 0 1px rgba(31, 121, 223, 0.16);
}

.pricing-rule-pill-scope {
  color: #5a6f84;
  background: rgba(8, 22, 39, 0.06);
}

.pricing-rule-target {
  display: block;
  color: #0a2140;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.28;
}

.pricing-rule-name {
  display: block;
  color: #64788d;
  font-size: 0.78rem;
  line-height: 1.3;
}

.pricing-matrix-topbar {
  align-items: center;
}

.catalog-volume-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(191, 125, 24, 0.22);
  border-radius: 12px;
  background: rgba(191, 125, 24, 0.06);
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.catalog-volume-offer-copy,
.catalog-volume-offer-price {
  display: grid;
  gap: 3px;
}

.catalog-volume-offer-kicker {
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f5a00;
}

.catalog-volume-offer-copy strong {
  color: #10263f;
  font-size: 0.74rem;
  line-height: 1.14;
}

.catalog-volume-offer-price {
  justify-items: end;
  text-align: right;
  flex-shrink: 0;
}

.catalog-volume-offer-price strong {
  color: #10263f;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.catalog-volume-offer-original {
  color: #7b8898;
  font-size: 0.68rem;
  line-height: 1;
  text-decoration: line-through;
}

.catalog-volume-offer-price small {
  color: #64788d;
  font-size: 0.56rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-volume-offer.is-active {
  border-color: rgba(191, 125, 24, 0.34);
  background: rgba(191, 125, 24, 0.11);
  box-shadow: 0 10px 22px rgba(191, 125, 24, 0.12);
  transform: translateY(-1px);
}

.catalog-volume-offer.is-best-price {
  background: rgba(191, 125, 24, 0.14);
}

.pricing-matrix-title {
  white-space: normal;
}

.pricing-matrix-page {
  display: grid;
  gap: 14px;
}

.pricing-matrix-page .admin-topbar {
  padding: 16px 18px;
}

.pricing-matrix-page .admin-section {
  padding: 14px 16px 16px;
}

.pricing-matrix-page .table-title {
  margin-bottom: 10px;
}

.pricing-matrix-page .admin-title {
  font-size: clamp(1.9rem, 2.8vw, 3rem);
}

.pricing-matrix-page .admin-subtitle {
  max-width: 920px;
  font-size: 0.98rem;
  line-height: 1.4;
}

.pricing-matrix-page .field-row label {
  font-size: 0.68rem;
}

.pricing-matrix-page .field-row input,
.pricing-matrix-page .field-row select {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.pricing-inline-filters {
  gap: 12px;
}

.pricing-inline-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.pricing-inline-submit {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.pricing-inline-submit .button {
  width: auto;
  min-width: 200px;
  max-width: 100%;
}

.pricing-matrix-toolbar {
  margin-bottom: 14px;
}

.pricing-matrix-toolbar .field-row {
  max-width: 340px;
}

.pricing-matrix-bulk {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.98));
}

.pricing-matrix-bulk-copy {
  display: grid;
  gap: 4px;
}

.pricing-matrix-bulk-copy strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.pricing-matrix-bulk-copy span {
  color: var(--ink-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.pricing-matrix-bulk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.pricing-matrix-bulk-actions {
  display: flex;
  justify-content: flex-end;
}

.pricing-matrix-table {
  width: 100%;
  min-width: 1080px;
  table-layout: fixed;
}

.pricing-matrix-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.pricing-matrix-table th {
  white-space: normal;
  line-height: 1.2;
}

.pricing-matrix-table td {
  vertical-align: top;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}

.pricing-matrix-table th,
.pricing-matrix-table td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pricing-matrix-col-product {
  width: 21%;
}

.pricing-matrix-col-variant {
  width: 10%;
}

.pricing-matrix-col-category {
  width: 14%;
}

.pricing-matrix-col-price {
  width: 13%;
}

.pricing-matrix-col-tier {
  width: 14%;
}

.pricing-matrix-price-cell,
.pricing-matrix-tier-cell {
  min-width: 0;
}

.pricing-matrix-price-cell {
  display: grid;
  gap: 8px;
  align-content: start;
}

.pricing-matrix-price-cell > div > strong {
  display: block;
  line-height: 1.2;
}

.pricing-matrix-tier-cell {
  min-width: 0;
}

.pricing-matrix-cell-stack {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.pricing-matrix-mini-label {
  display: block;
  color: var(--ink-muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-matrix-table input[type="text"] {
  width: 100%;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(6, 17, 29, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.8rem;
}

.pricing-matrix-table input[type="text"]:focus-visible,
.pricing-autocomplete input[type="text"]:focus-visible {
  border-color: rgba(31, 121, 223, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 121, 223, 0.12);
  outline: none;
}

.pricing-category-wrap {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.pricing-product-wrap {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.pricing-product-wrap strong {
  font-size: 0.78rem;
  line-height: 1.2;
}

.pricing-product-wrap span {
  color: var(--ink-muted);
  font-size: 0.68rem;
}

.pricing-category-wrap strong {
  font-size: 0.76rem;
  line-height: 1.2;
}

.pricing-category-wrap span {
  color: var(--ink-muted);
  font-size: 0.68rem;
}

.pricing-matrix-meta small {
  font-size: 0.62rem;
  line-height: 1.2;
}

.pricing-autocomplete input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(6, 17, 29, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.analytics-page {
  display: grid;
  gap: 24px;
}

.analytics-section-shell {
  display: grid;
  gap: 22px;
}

.analytics-command-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: end;
  background:
    radial-gradient(circle at top right, rgba(31, 121, 223, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.94));
}

.analytics-command-copy {
  max-width: 840px;
}

.analytics-command-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.analytics-command-stat {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.analytics-command-stat span,
.analytics-kpi > span,
.analytics-insight > span,
.analytics-funnel-step > span,
.analytics-session-total span {
  color: #60758d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analytics-command-stat strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.analytics-command-stat small,
.analytics-range-copy span,
.analytics-kpi small,
.analytics-list-main span,
.analytics-list-side span,
.analytics-activity-main span,
.analytics-activity-side span,
.analytics-identity-block span,
.analytics-session-meta span,
.analytics-session-line div span,
.analytics-empty,
.analytics-funnel-step small,
.analytics-funnel-step p {
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.analytics-control-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 20px;
}

.analytics-range-form {
  display: grid;
  gap: 18px;
}

.analytics-range-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.analytics-range-copy {
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 75, 145, 0.05);
  border: 1px solid rgba(10, 75, 145, 0.08);
}

.analytics-range-copy strong {
  color: var(--ink);
}

.analytics-range-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.analytics-range-preset {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: #0a4b91;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.analytics-range-preset:hover,
.analytics-range-preset:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(10, 75, 145, 0.26);
  background: rgba(231, 241, 253, 0.86);
}

.analytics-range-preset.is-active {
  border-color: rgba(10, 75, 145, 0.32);
  background: rgba(31, 121, 223, 0.12);
}

.analytics-form-actions {
  justify-content: flex-start;
}

.analytics-side-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.96);
}

.analytics-insight-list {
  display: grid;
  gap: 0;
}

.analytics-insight {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.analytics-insight:first-child {
  padding-top: 0;
  border-top: 0;
}

.analytics-insight strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.analytics-insight p,
.analytics-kpi p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.analytics-insight small {
  color: #60758d;
  font-size: 0.78rem;
  line-height: 1.45;
}

.analytics-kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.analytics-kpi {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
}

.analytics-kpi.is-alert {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.92), rgba(255, 255, 255, 0.98));
  border-color: rgba(10, 75, 145, 0.14);
}

.analytics-kpi strong {
  color: var(--ink);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.analytics-kpi-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.analytics-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

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

.analytics-chart-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
}

.analytics-chart-card.is-wide {
  grid-column: span 2;
}

.analytics-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.analytics-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.analytics-chart-legend i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.analytics-chart-legend .is-current,
.analytics-chart-bar.is-current {
  background: #1f79df;
}

.analytics-chart-legend .is-previous,
.analytics-chart-bar.is-previous {
  background: rgba(15, 35, 58, 0.26);
}

.analytics-chart-bars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28px, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 220px;
}

.analytics-chart-group {
  display: grid;
  gap: 8px;
}

.analytics-chart-columns {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.analytics-chart-bar {
  width: 10px;
  min-height: 6px;
  border-radius: 999px 999px 0 0;
}

.analytics-chart-group small {
  color: var(--ink-muted);
  font-size: 0.7rem;
  text-align: center;
}

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

.analytics-funnel-step {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
}

.analytics-funnel-step strong {
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.analytics-funnel-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 75, 145, 0.08);
}

.analytics-funnel-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0a4b91, #4e9df1);
}

.analytics-funnel-step p {
  margin: 0;
}

.analytics-module-grid,
.analytics-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.analytics-module {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
}

.analytics-module-wide {
  grid-column: 1 / -1;
}

.analytics-module-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.analytics-list,
.analytics-activity-feed {
  display: grid;
  gap: 0;
}

.analytics-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.analytics-list-row:first-child,
.analytics-activity-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.analytics-list-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.analytics-list-main strong,
.analytics-activity-main strong,
.analytics-identity-block strong,
.analytics-session-line strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.35;
}

.analytics-list-side {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
}

.analytics-list-side strong,
.analytics-session-total strong,
.analytics-activity-side strong {
  color: var(--ink);
}

.analytics-activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.82fr) minmax(220px, 0.72fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.analytics-activity-main,
.analytics-activity-side,
.analytics-identity-block,
.analytics-session-total {
  display: grid;
  gap: 4px;
}

.analytics-activity-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.analytics-event-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(31, 121, 223, 0.08);
  color: #0a4b91;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.analytics-session-stack {
  display: grid;
  gap: 14px;
}

.analytics-session-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(10, 75, 145, 0.1);
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.96), rgba(255, 255, 255, 0.98));
}

.analytics-session-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.analytics-session-total {
  text-align: right;
}

.analytics-session-total strong {
  font-size: 1.22rem;
  line-height: 1;
}

.analytics-session-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.analytics-session-lines {
  display: grid;
  gap: 10px;
}

.analytics-session-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding-top: 10px;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.analytics-session-line:first-child {
  padding-top: 0;
  border-top: 0;
}

.analytics-session-line div {
  display: grid;
  gap: 4px;
}

.analytics-identity-link {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(10, 75, 145, 0.08);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.analytics-identity-link:hover,
.analytics-identity-link:focus-visible {
  border-color: rgba(10, 75, 145, 0.22);
  background: rgba(231, 241, 253, 0.72);
  transform: translateY(-1px);
}

.analytics-identity-link.is-active,
.analytics-identity-block-static {
  border-color: rgba(10, 75, 145, 0.24);
  background: rgba(231, 241, 253, 0.72);
}

.analytics-session-clear {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: #0a4b91;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.analytics-session-focus-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.98);
}

.analytics-session-focus-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.analytics-focus-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
}

.analytics-focus-stat {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(10, 75, 145, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.analytics-focus-stat span,
.analytics-session-preview {
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.analytics-focus-stat strong {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
}

.analytics-session-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.analytics-session-focus-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.analytics-session-timeline {
  display: grid;
  gap: 12px;
}

.analytics-session-timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 16px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.analytics-session-timeline-row:first-child {
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1100px) {
  .pricing-inline-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-matrix-title {
    white-space: normal;
  }

  .pricing-matrix-tier-cell {
    min-width: 146px;
  }

  .pricing-matrix-bulk-actions {
    justify-content: stretch;
  }

  .pricing-matrix-bulk-actions .button {
    width: 100%;
  }

  .pricing-inline-submit .button {
    width: 100%;
    min-width: 0;
  }

  .analytics-command-bar,
  .analytics-control-grid,
  .analytics-live-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-command-meta,
  .analytics-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .analytics-charts-grid,
  .analytics-module-grid,
  .analytics-funnel-grid,
  .analytics-session-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-chart-card.is-wide,
  .analytics-module-wide {
    grid-column: 1 / -1;
  }

  .analytics-activity-row,
  .analytics-session-timeline-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-focus-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-chart-bars {
    grid-template-columns: repeat(auto-fit, minmax(22px, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-matrix-page .admin-topbar,
  .pricing-matrix-page .admin-section {
    padding-inline: 14px;
  }

  .pricing-inline-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-inline-submit {
    justify-content: stretch;
  }

  .analytics-command-meta,
  .analytics-kpi-grid,
  .analytics-charts-grid,
  .analytics-funnel-grid,
  .analytics-module-grid,
  .analytics-session-focus-grid,
  .analytics-focus-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-range-header,
  .analytics-session-head,
  .analytics-session-focus-head {
    flex-direction: column;
  }

  .analytics-range-copy,
  .analytics-session-total {
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .analytics-list-row,
  .analytics-session-line {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .analytics-chart-card {
    padding: 18px;
  }

  .analytics-chart-columns {
    height: 150px;
  }

  .product-price-head-v2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

.catalog-product-price.is-pending {
  font-size: 1rem;
  color: #7a6f63;
}

.product-price-original-v2 {
  color: #7b8898;
  font-size: 1rem;
  text-decoration: line-through;
}

.product-price-head-v2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.product-price-current-v2 {
  color: #10263f;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  transition: color 220ms ease, transform 220ms ease, filter 220ms ease;
}

.pricing-badge-inline-v2 {
  margin-top: 4px;
  flex: 0 0 auto;
}

.product-status-line-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.product-status-line-v2 > span:first-child {
  color: #60758d;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-page-v2 .product-status-line-v2 .status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-page-v2 .product-status-line-v2 .status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.product-page-v2 .product-status-line-v2 .availability-available {
  color: #108043;
}

.status-chip.availability-available,
.header-search-suggestion-status.status-available {
  animation: availability-live-glow 2.2s ease-in-out infinite;
}

.status-chip.availability-available::before,
.header-search-suggestion-status.status-available::before {
  animation: availability-live-dot 1.8s ease-in-out infinite;
}

@keyframes availability-live-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(16, 128, 67, 0);
  }
  50% {
    text-shadow: 0 0 10px rgba(16, 128, 67, 0.18);
  }
}

@keyframes availability-live-dot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 128, 67, 0.22);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 5px rgba(16, 128, 67, 0);
  }
}

.product-page-v2 .product-status-line-v2 .availability-on_request {
  color: #0a4b91;
}

.product-page-v2 .product-status-line-v2 .availability-quote_required {
  color: #b57600;
}

.account-page-v2 {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 88px;
  display: grid;
  gap: 28px;
}

.account-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.account-hero-copy-v2 {
  display: grid;
  gap: 12px;
  padding: 18px 0 8px;
}

.account-hero-copy-v2 h1 {
  margin: 0;
  color: #10263f;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.account-hero-copy-v2 p {
  max-width: 640px;
  margin: 0;
  color: #60758d;
  font-size: 1rem;
  line-height: 1.55;
}

.account-role-list-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.account-role-pill-v2 {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #365370;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-hero-side-v2 {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 94px;
}

.account-tier-panel-v2,
.account-side-panel-v2 {
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 75, 145, 0.12);
  box-shadow: 0 16px 36px rgba(10, 75, 145, 0.07);
}

.account-tier-panel-v2 {
  display: grid;
  gap: 6px;
  background:
    linear-gradient(135deg, rgba(10, 75, 145, 0.08), rgba(255, 255, 255, 0) 48%),
    rgba(255, 255, 255, 0.96);
}

.account-tier-kicker-v2 {
  color: #0f5fb5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-tier-panel-v2 strong {
  color: #10263f;
  font-size: 1.9rem;
  line-height: 1;
}

.account-tier-panel-v2 p {
  margin: 0;
  color: #60758d;
  font-size: 0.92rem;
  line-height: 1.5;
}

.account-metrics-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-metrics-v2 article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 75, 145, 0.1);
}

.account-metrics-v2 span,
.account-data-block-v2 span,
.account-loyalty-summary-v2 span,
.account-loyalty-meta-v2 span,
.account-snapshot-row-v2 span,
.account-authorization-item-v2 span {
  color: #60758d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-metrics-v2 strong {
  color: #10263f;
  font-size: 1.24rem;
  line-height: 1.1;
}

.account-workspace-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.account-main-v2,
.account-side-v2 {
  display: grid;
  gap: 18px;
}

.account-side-v2 {
  position: sticky;
  top: 94px;
}

.account-section-v2 {
  display: grid;
  gap: 16px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(10, 75, 145, 0.14);
}

.account-section-head-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.account-section-head-v2 h2,
.account-side-panel-v2 h2 {
  margin: 6px 0 0;
  color: #10263f;
  font-size: 1.55rem;
  line-height: 1;
}

.account-profile-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-data-block-v2 {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 75, 145, 0.1);
}

.account-data-block-v2 strong {
  color: #10263f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.account-address-list-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-address-card-v2,
.account-form-shell-v2,
.account-activity-row-v2 {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 75, 145, 0.1);
}

.account-address-head-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-address-pills-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.account-address-card-v2 strong,
.account-activity-row-v2 strong {
  color: #10263f;
  font-size: 1rem;
  font-weight: 600;
}

.account-address-card-v2 p,
.account-activity-row-v2 p {
  margin: 0;
  color: #60758d;
  line-height: 1.5;
}

.account-address-note-v2 {
  font-size: 0.82rem;
}

.account-address-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-address-actions-v2 form {
  margin: 0;
}

.account-address-add-v2 {
  padding: 0;
}

.account-address-add-button-v2 {
  width: 100%;
  min-height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 24px 18px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.account-address-add-button-v2 span {
  color: #0f5fb5;
  font-size: 2rem;
  line-height: 1;
}

.account-address-add-button-v2 strong {
  color: #10263f;
  font-size: 1rem;
  font-weight: 600;
}

.account-address-add-button-v2 p {
  margin: 0;
  color: #60758d;
  line-height: 1.5;
}

.account-form-shell-v2 {
  gap: 16px;
}

.account-inline-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-activity-list-v2 {
  display: grid;
  gap: 10px;
}

.account-address-modal-panel-v2 {
  width: min(760px, calc(100vw - 32px));
}

.account-loyalty-band-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(10, 75, 145, 0.07), rgba(255, 255, 255, 0) 55%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 75, 145, 0.12);
}

.account-loyalty-summary-v2 {
  display: grid;
  gap: 8px;
}

.account-loyalty-summary-v2 strong {
  color: #10263f;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.94;
}

.account-loyalty-summary-v2 p {
  max-width: 520px;
  margin: 0;
  color: #60758d;
  font-size: 0.96rem;
  line-height: 1.55;
}

.account-loyalty-meta-v2 {
  display: grid;
  gap: 12px;
  align-content: start;
}

.account-loyalty-meta-v2 div {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.account-loyalty-meta-v2 div:first-child {
  padding-top: 0;
  border-top: 0;
}

.account-loyalty-meta-v2 strong {
  color: #10263f;
  font-size: 0.98rem;
  font-weight: 600;
}

.account-placeholder-v2 {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px dashed rgba(10, 75, 145, 0.2);
}

.account-placeholder-v2 strong {
  color: #10263f;
  font-size: 1rem;
}

.account-placeholder-v2 p {
  margin: 0;
  color: #60758d;
  line-height: 1.55;
}

.account-placeholder-compact-v2 {
  min-height: 0;
}

.account-snapshots-v2 {
  display: grid;
  gap: 10px;
}

.account-snapshot-row-v2 {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.account-snapshot-row-v2:first-child {
  border-top: 0;
  padding-top: 0;
}

.account-snapshot-row-v2 > strong {
  color: #10263f;
  font-size: 0.92rem;
  font-weight: 700;
}

.account-snapshot-row-v2 div {
  display: grid;
  gap: 4px;
}

.account-side-panel-v2 {
  display: grid;
  gap: 14px;
}

.account-authorization-list-v2 {
  display: grid;
  gap: 10px;
}

.account-authorization-item-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(16, 128, 67, 0.14);
  background: rgba(16, 128, 67, 0.04);
}

.account-authorization-item-v2 strong {
  color: #10263f;
  font-size: 0.92rem;
  font-weight: 600;
}

.account-authorization-item-v2.is-disabled {
  border-color: rgba(181, 118, 0, 0.18);
  background: rgba(181, 118, 0, 0.05);
}

.account-authorization-item-v2.is-disabled span {
  color: #a36b00;
}

.account-actions-v2 {
  display: grid;
  gap: 10px;
}

.account-actions-v2 .button,
.account-actions-v2 form {
  width: 100%;
}

.account-actions-v2 form {
  margin: 0;
}

.account-actions-v2 .button {
  justify-content: center;
}

.account-role-pill-success-v2 {
  border-color: rgba(16, 128, 67, 0.14);
  background: rgba(16, 128, 67, 0.06);
  color: #12724f;
}

.account-role-pill-warning-v2 {
  border-color: rgba(181, 118, 0, 0.18);
  background: rgba(181, 118, 0, 0.08);
  color: #9a6400;
}

.cart-page-v2 {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 30px 0 88px;
  display: grid;
  gap: 26px;
}

.cart-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  align-items: end;
  padding: 18px 0 10px;
  border-top: 1px solid rgba(10, 75, 145, 0.14);
}

.cart-hero-copy-v2 {
  display: grid;
  gap: 10px;
}

.cart-hero-copy-v2 h1 {
  margin: 0;
  color: #10263f;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.cart-hero-copy-v2 p {
  max-width: 640px;
  margin: 0;
  color: #60758d;
  font-size: 0.98rem;
  line-height: 1.55;
}

.cart-hero-meta-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cart-hero-meta-v2 div,
.cart-side-panel-v2,
.cart-line-v2 {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 75, 145, 0.12);
}

.cart-hero-meta-v2 div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.cart-hero-meta-v2 span,
.cart-line-kicker-v2,
.cart-line-pricing-v2 span,
.cart-summary-rows-v2 span,
.cart-summary-total-v2 span {
  color: #60758d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-hero-meta-v2 strong {
  color: #10263f;
  font-size: 1.22rem;
  line-height: 1;
}

.cart-workspace-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: start;
}

.cart-main-v2,
.cart-side-v2 {
  display: grid;
  gap: 18px;
}

.cart-side-v2 {
  position: sticky;
  top: 92px;
}

.cart-panel-v2,
.cart-recommendations-v2 {
  display: grid;
  gap: 16px;
}

.cart-panel-head-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.cart-panel-head-v2 h2,
.cart-side-panel-v2 h2 {
  margin: 6px 0 0;
  color: #10263f;
  font-size: 1.6rem;
  line-height: 1;
}

.cart-panel-head-v2 p,
.cart-side-panel-v2 p {
  max-width: 380px;
  margin: 0;
  color: #60758d;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-lines-v2 {
  display: grid;
  gap: 12px;
}

.cart-line-v2 {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.cart-line-media-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #edf4fb;
}

.cart-line-media-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.cart-line-copy-v2 {
  display: grid;
  gap: 12px;
}

.cart-line-copy-head-v2 {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.cart-line-side-v2 {
  display: grid;
  justify-items: end;
  gap: 10px;
  text-align: right;
  flex: 0 0 auto;
}

.cart-line-copy-head-v2 h3 {
  margin: 4px 0 0;
  color: #10263f;
  font-size: 1.18rem;
  line-height: 1.08;
  font-weight: 500;
}

.cart-line-copy-head-v2 h3 a {
  color: inherit;
}

.cart-line-remove-v2 {
  padding: 0;
  border: 0;
  background: transparent;
  color: #6d7d90;
  font-size: 0.84rem;
  cursor: pointer;
}

.cart-line-remove-v2:hover {
  color: #b43d2a;
}

.cart-line-unit-price-v2 {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.cart-line-unit-price-v2 > span {
  color: #60758d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-page-v2 .catalog-product-price-block {
  display: grid;
  gap: 2px;
  align-content: start;
  justify-items: end;
}

.cart-page-v2 .catalog-product-price {
  color: #10263f;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.cart-page-v2 .catalog-product-price-original {
  color: #7b8898;
  font-size: 0.8rem;
  line-height: 1;
  text-decoration: line-through;
}

.cart-line-meta-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cart-line-meta-v2 > span:first-child {
  color: #60758d;
  font-size: 0.84rem;
}

.cart-page-v2 .status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-page-v2 .status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.cart-page-v2 .availability-available {
  color: #108043;
}

.cart-page-v2 .availability-on_request {
  color: #0a4b91;
}

.cart-page-v2 .availability-quote_required {
  color: #b57600;
}

.cart-line-notes-v2 {
  display: grid;
  gap: 4px;
}

.cart-line-notes-v2 p {
  margin: 0;
  color: #8f5a00;
  font-size: 0.84rem;
  line-height: 1.45;
}

.cart-line-loyalty-v2,
.cart-loyalty-callout-v2 {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.98), rgba(235, 243, 253, 0.96));
}

.cart-line-loyalty-v2 strong,
.cart-loyalty-callout-v2 strong {
  color: #10263f;
  font-size: 0.94rem;
  line-height: 1.2;
}

.cart-line-loyalty-v2 p,
.cart-loyalty-callout-v2 p {
  margin: 0;
  color: #48617c;
  font-size: 0.84rem;
  line-height: 1.45;
}

.cart-loyalty-panel-v2 {
  gap: 16px;
}

.cart-loyalty-grid-v2 {
  display: grid;
  gap: 12px;
}

.cart-loyalty-grid-v2 div {
  display: grid;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.cart-loyalty-grid-v2 div:first-child {
  padding-top: 0;
  border-top: 0;
}

.cart-loyalty-grid-v2 span {
  color: #60758d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-loyalty-grid-v2 strong {
  color: #10263f;
  font-size: 1.12rem;
  line-height: 1;
}

.cart-loyalty-callout-v2.is-upgrade {
  border-color: rgba(16, 128, 67, 0.18);
  background: linear-gradient(180deg, rgba(245, 252, 247, 0.98), rgba(235, 247, 239, 0.96));
}

.cart-line-footer-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.cart-line-quantity-form-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cart-line-quantity-form-v2.is-loading {
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.cart-line-pricing-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, auto));
  gap: 18px;
  justify-content: end;
  text-align: right;
}

.cart-line-pricing-v2 div {
  display: grid;
  gap: 6px;
}

.cart-line-pricing-v2 strong {
  color: #10263f;
  font-size: 1.04rem;
  line-height: 1;
}

.cart-line-pricing-v2 .is-total strong {
  font-size: 1.28rem;
}

.cart-side-panel-v2 {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.cart-summary-panel-v2 {
  position: sticky;
  top: 230px;
}

.cart-summary-rows-v2 {
  display: grid;
  gap: 12px;
}

.cart-summary-rows-v2 div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary-rows-v2 strong {
  color: #10263f;
  font-size: 1rem;
}

.cart-summary-total-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.cart-summary-total-v2 strong {
  color: #10263f;
  font-size: 2.1rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.cart-summary-actions-v2 {
  display: grid;
  gap: 10px;
}

.cart-summary-actions-v2 .button {
  justify-content: center;
}

.cart-empty-v2 {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px dashed rgba(10, 75, 145, 0.24);
}

.cart-empty-v2 strong {
  color: #10263f;
  font-size: 1.08rem;
}

.cart-empty-v2 p {
  margin: 0;
  color: #60758d;
  line-height: 1.55;
}

.cart-recommendations-v2 .catalog-results {
  display: grid;
}

.cart-recommendations-v2 .catalog-products {
  grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
}

.checkout-page-v2 {
  width: min(1360px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 28px 0 88px;
  display: grid;
  gap: 20px;
}

.checkout-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 20px;
  align-items: end;
}

.checkout-hero-copy-v2 {
  display: grid;
  gap: 10px;
}

.checkout-hero-copy-v2 h1 {
  margin: 0;
  color: #10263f;
  font-size: clamp(2.45rem, 4.8vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.checkout-hero-copy-v2 p {
  max-width: 680px;
  margin: 0;
  color: #60758d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.checkout-hero-meta-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-hero-meta-v2 div,
.checkout-panel-v2,
.checkout-summary-v2,
.checkout-lines-v2,
.checkout-empty-v2,
.checkout-errors-v2 {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 75, 145, 0.12);
}

.checkout-hero-meta-v2 div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.checkout-hero-meta-v2 span,
.checkout-summary-block-v2 span,
.checkout-summary-total-v2 span,
.checkout-line-total-v2,
.checkout-line-meta-v2 > span:first-child {
  color: #60758d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-hero-meta-v2 strong {
  color: #10263f;
  font-size: 1.08rem;
  line-height: 1.1;
}

.checkout-form-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.checkout-main-v2,
.checkout-side-v2 {
  display: grid;
  gap: 18px;
}

.checkout-side-v2 {
  position: sticky;
  top: 92px;
}

.checkout-panel-v2,
.checkout-summary-v2,
.checkout-lines-v2,
.checkout-empty-v2,
.checkout-errors-v2 {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.checkout-panel-head-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.checkout-panel-head-v2 h2,
.checkout-summary-v2 h2,
.checkout-lines-v2 h2,
.checkout-empty-v2 h2,
.checkout-errors-v2 h2 {
  margin: 6px 0 0;
  color: #10263f;
  font-size: 1.52rem;
  line-height: 1;
}

.checkout-panel-head-v2 p {
  max-width: 420px;
  margin: 0;
  color: #60758d;
  font-size: 0.92rem;
  line-height: 1.5;
}

.checkout-grid-v2 {
  display: grid;
  gap: 14px;
}

.checkout-grid-v2-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-grid-v2-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-field-v2 {
  display: grid;
  gap: 8px;
}

.checkout-field-v2 > span {
  color: #60758d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-field-v2 select,
.checkout-field-v2 textarea,
.checkout-field-v2 input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  border-radius: 0;
  background: #fff;
  color: #10263f;
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.checkout-field-v2 textarea {
  min-height: 132px;
  resize: vertical;
}

.checkout-field-v2 select:focus,
.checkout-field-v2 textarea:focus,
.checkout-field-v2 input:focus {
  border-color: rgba(10, 75, 145, 0.38);
  box-shadow: 0 0 0 4px rgba(10, 75, 145, 0.08);
}

.checkout-field-v2-wide {
  grid-column: span 2;
}

.checkout-address-quick-v2 {
  display: grid;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.checkout-address-quick-v2[hidden] {
  display: none;
}

.checkout-address-quick-head-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.checkout-address-quick-head-v2 h3 {
  margin: 6px 0 0;
  color: #10263f;
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 600;
}

.checkout-address-quick-head-v2 p {
  max-width: 380px;
  margin: 0;
  color: #60758d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkout-address-form-v2 {
  display: grid;
  gap: 14px;
}

.checkout-check-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: #60758d;
  font-size: 0.92rem;
}

.checkout-check-v2 input {
  width: 18px;
  height: 18px;
  accent-color: #0a4b91;
}

.checkout-save-card-v2 {
  display: grid;
  gap: 10px;
}

.checkout-save-card-button-v2 {
  justify-content: center;
}

.checkout-save-card-button-v2[aria-pressed="true"] {
  border-color: rgba(10, 75, 145, 0.42);
  background: rgba(10, 75, 145, 0.08);
  color: #0a4b91;
}

.checkout-option-v2.is-just-saved .checkout-option-ui-v2 {
  animation: stripe-card-saved-pop 760ms ease;
}

.checkout-address-actions-v2 {
  display: flex;
  justify-content: flex-start;
}

.checkout-option-list-v2 {
  display: grid;
  gap: 12px;
}

.checkout-option-v2 {
  display: block;
  cursor: pointer;
}

.checkout-option-v2 input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-option-ui-v2 {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

@keyframes stripe-card-saved-pop {
  0% {
    transform: translateY(10px);
    opacity: 0;
    box-shadow: 0 0 0 rgba(10, 75, 145, 0);
  }

  45% {
    transform: translateY(-2px);
    opacity: 1;
    box-shadow: 0 16px 28px rgba(10, 75, 145, 0.12);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 0 0 rgba(10, 75, 145, 0);
  }
}

.checkout-option-v2:hover .checkout-option-ui-v2 {
  border-color: rgba(10, 75, 145, 0.28);
  background: #fbfdff;
}

.checkout-option-v2 input:checked + .checkout-option-ui-v2 {
  border-color: rgba(10, 75, 145, 0.42);
  background: #f5f9ff;
}

.checkout-option-v2.is-disabled {
  cursor: not-allowed;
}

.checkout-option-v2.is-disabled .checkout-option-ui-v2 {
  opacity: 0.54;
}

.checkout-option-mark-v2 {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(10, 75, 145, 0.2);
  border-radius: 999px;
  position: relative;
  top: 1px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.checkout-option-v2 input:checked + .checkout-option-ui-v2 .checkout-option-mark-v2 {
  border-color: #0a4b91;
  background: rgba(10, 75, 145, 0.1);
}

.checkout-option-v2 input:checked + .checkout-option-ui-v2 .checkout-option-mark-v2::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: #0a4b91;
}

.checkout-option-copy-v2 {
  display: grid;
  gap: 4px;
}

.checkout-option-copy-v2 strong {
  color: #10263f;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 600;
}

.checkout-option-copy-v2 small {
  color: #60758d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkout-card-panel-v2 {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.92), rgba(255, 255, 255, 0.96));
}

[data-card-payment-scope] [data-card-payment-panel],
form[data-checkout-form] [data-card-payment-panel] {
  display: none;
}

[data-card-payment-scope]:has(input[name="payment_method"][value="card_stripe"]:checked) [data-card-payment-panel],
form[data-checkout-form]:has(input[name="payment_method"][value="card_stripe"]:checked) [data-card-payment-panel] {
  display: grid;
}

[data-card-payment-panel][hidden] {
  display: none !important;
}

.checkout-cashback-panel-v2 {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(10, 75, 145, 0.12);
  background: linear-gradient(180deg, rgba(243, 249, 243, 0.92), rgba(255, 255, 255, 0.98));
}

.checkout-cashback-panel-v2 p {
  margin: 0;
  color: #60758d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.checkout-cashback-panel-v2 input[type="range"] {
  min-height: auto;
  padding: 0;
  border: 0;
  box-shadow: none;
  accent-color: #12724f;
}

.checkout-card-panel-v2 p {
  margin: 0;
  color: #60758d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.checkout-card-panel-v2.is-muted {
  background: rgba(246, 248, 251, 0.95);
}

.checkout-stripe-slot-v2 {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  background: #fff;
}

.checkout-summary-block-v2 {
  display: grid;
  gap: 12px;
}

.checkout-summary-block-v2 div,
.checkout-summary-total-v2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.checkout-summary-block-v2 strong {
  color: #10263f;
  font-size: 1rem;
}

.checkout-summary-total-v2 {
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.checkout-summary-total-v2 strong {
  color: #10263f;
  font-size: 2.15rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.checkout-coverage-v2 {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.checkout-coverage-v2 strong {
  color: #10263f;
  font-size: 1.04rem;
}

.checkout-coverage-v2 p {
  margin: 0;
  color: #60758d;
  line-height: 1.55;
}

.checkout-actions-v2 {
  display: grid;
  gap: 10px;
}

.checkout-actions-v2 .button {
  justify-content: center;
}

.checkout-line-list-v2 {
  display: grid;
  gap: 14px;
}

.checkout-line-v2 {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.checkout-line-v2 + .checkout-line-v2 {
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.checkout-line-v2 img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #edf4fb;
  padding: 8px;
}

.checkout-line-copy-v2 {
  display: grid;
  gap: 7px;
}

.checkout-line-copy-v2 strong {
  color: #10263f;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 500;
}

.checkout-line-meta-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.checkout-line-total-v2 {
  justify-self: end;
  color: #10263f;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-page-v2 .status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-page-v2 .status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.checkout-page-v2 .availability-available {
  color: #108043;
}

.checkout-page-v2 .availability-on_request {
  color: #0a4b91;
}

.checkout-page-v2 .availability-quote_required {
  color: #b57600;
}

.checkout-empty-v2 p,
.checkout-errors-v2 ul {
  margin: 0;
  color: #60758d;
  line-height: 1.6;
}

.checkout-errors-v2 ul {
  padding-left: 18px;
}

.checkout-confirmation-v2 {
  width: min(1360px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 28px 0 88px;
  display: grid;
  gap: 20px;
}

.checkout-confirmation-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 20px;
  align-items: end;
}

.checkout-confirmation-copy-v2 {
  display: grid;
  gap: 10px;
}

.checkout-confirmation-copy-v2 h1 {
  margin: 0;
  color: #10263f;
  font-size: clamp(2.45rem, 4.9vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.checkout-confirmation-copy-v2 p {
  max-width: 700px;
  margin: 0;
  color: #60758d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.checkout-confirmation-badge-v2,
.checkout-confirmation-panel-v2,
.checkout-confirmation-summary-v2 {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 75, 145, 0.12);
}

.checkout-confirmation-badge-v2 {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 18px;
}

.checkout-confirmation-check-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  background: #108043;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-confirmation-badge-v2 strong {
  color: #10263f;
  font-size: 1.18rem;
  line-height: 1.1;
}

.checkout-confirmation-badge-v2 small {
  color: #60758d;
  font-size: 0.88rem;
  line-height: 1.5;
}

.checkout-confirmation-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.checkout-confirmation-main-v2,
.checkout-confirmation-side-v2 {
  display: grid;
  gap: 18px;
}

.checkout-confirmation-side-v2 {
  position: sticky;
  top: 92px;
}

.checkout-confirmation-panel-v2,
.checkout-confirmation-summary-v2 {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.checkout-confirmation-head-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.checkout-confirmation-head-v2 h2,
.checkout-confirmation-summary-v2 h2 {
  margin: 6px 0 0;
  color: #10263f;
  font-size: 1.52rem;
  line-height: 1;
}

.checkout-confirmation-head-v2 p {
  max-width: 380px;
  margin: 0;
  color: #60758d;
  font-size: 0.92rem;
  line-height: 1.5;
}

.checkout-confirmation-meta-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-confirmation-meta-v2 div,
.checkout-confirmation-summary-rows-v2 div,
.checkout-confirmation-summary-total-v2 {
  display: grid;
  gap: 6px;
}

.checkout-confirmation-meta-v2 span,
.checkout-confirmation-summary-rows-v2 span,
.checkout-confirmation-summary-total-v2 span,
.checkout-confirmation-line-total-v2,
.checkout-confirmation-line-meta-v2 {
  color: #60758d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-confirmation-meta-v2 strong {
  color: #10263f;
  font-size: 1.04rem;
  line-height: 1.1;
}

.checkout-confirmation-meta-v2 small {
  color: #60758d;
  font-size: 0.86rem;
  line-height: 1.4;
}

.checkout-confirmation-lines-v2 {
  display: grid;
  gap: 14px;
}

.checkout-confirmation-line-v2 {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.checkout-confirmation-line-v2 + .checkout-confirmation-line-v2 {
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.checkout-confirmation-line-v2 img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: #edf4fb;
  padding: 8px;
}

.checkout-confirmation-line-copy-v2 {
  display: grid;
  gap: 7px;
}

.checkout-confirmation-line-copy-v2 strong {
  color: #10263f;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 500;
}

.checkout-confirmation-line-description-v2 {
  margin: 0;
  color: #60758d;
  font-size: 0.9rem;
  line-height: 1.45;
}

.order-line-price-v2 {
  display: grid;
  gap: 6px;
  align-items: start;
}

.order-line-price-pair-v2 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.order-line-price-label-v2 {
  color: #60758d;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-line-price-original-v2 {
  color: #7b8898;
  font-size: 0.88rem;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.order-line-price-current-v2 {
  color: #10263f;
  font-size: 1.08rem;
  line-height: 1.08;
  font-weight: 700;
}

.order-line-price-v2 small {
  color: #60758d;
  font-size: 0.8rem;
  line-height: 1.35;
}

.checkout-confirmation-line-meta-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.checkout-confirmation-line-total-v2 {
  justify-self: end;
  display: grid;
  gap: 6px;
  justify-items: end;
  color: #10263f;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-confirmation-line-total-v2 .order-line-price-pair-v2 {
  justify-content: flex-end;
}

.checkout-confirmation-line-total-v2 small {
  color: #60758d;
  font-size: 0.76rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-confirmation-line-total-amount-v2 {
  color: #10263f;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-confirmation-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-confirmation-summary-rows-v2 {
  display: grid;
  gap: 12px;
}

.checkout-confirmation-summary-rows-v2 strong {
  color: #10263f;
  font-size: 1rem;
}

.checkout-confirmation-summary-total-v2 {
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.checkout-confirmation-summary-total-v2 strong {
  color: #10263f;
  font-size: 2.15rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.orders-index-v2 {
  width: min(1360px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 28px 0 88px;
  display: grid;
  gap: 20px;
}

.orders-index-hero-v2,
.orders-index-card-v2,
.orders-empty-v2,
.admin-order-summary-v2 {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 75, 145, 0.12);
}

.orders-index-hero-v2,
.orders-empty-v2,
.admin-order-summary-v2 {
  padding: 18px;
}

.orders-index-copy-v2 {
  display: grid;
  gap: 10px;
}

.orders-index-copy-v2 h1 {
  margin: 0;
  color: #10263f;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.orders-index-copy-v2 p,
.orders-empty-v2 p {
  max-width: 760px;
  margin: 0;
  color: #60758d;
  line-height: 1.6;
}

.orders-index-list-v2 {
  display: grid;
  gap: 16px;
}

.orders-index-card-v2 {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.orders-index-card-head-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.orders-index-card-head-v2 h2 {
  margin: 6px 0 0;
  color: #10263f;
  font-size: 1.48rem;
  line-height: 1;
}

.orders-index-card-head-v2 h2 a {
  color: inherit;
}

.orders-index-date-v2 {
  color: #60758d;
  font-size: 0.88rem;
}

.orders-index-meta-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.orders-index-meta-v2 span,
.admin-order-summary-grid-v2 span,
.admin-order-line-v2 span {
  color: #60758d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orders-index-meta-v2 strong,
.admin-order-summary-grid-v2 strong {
  color: #10263f;
  font-size: 1rem;
  line-height: 1.15;
}

.orders-index-meta-v2 small,
.admin-order-summary-grid-v2 small {
  color: #60758d;
  font-size: 0.86rem;
  line-height: 1.4;
}

.orders-index-lines-v2 {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.orders-index-thumbs-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
  gap: 8px;
}

.orders-index-thumb-v2 {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(10, 75, 145, 0.12);
  background: #fff;
}

.orders-index-thumb-v2 img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.orders-index-line-v2,
.admin-order-line-v2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.orders-index-line-v2 strong,
.admin-order-line-v2 strong,
.admin-order-event-v2 strong,
.admin-order-payment-v2 strong,
.admin-order-snapshots-v2 article strong {
  color: #10263f;
  font-weight: 600;
}

.orders-index-line-v2 span {
  color: #60758d;
}

.orders-index-more-v2 {
  color: #60758d;
  font-size: 0.9rem;
  justify-self: start;
}

.orders-index-actions-v2 {
  display: flex;
  justify-content: flex-start;
}

.admin-order-show-v2 {
  display: grid;
  gap: 18px;
}

.admin-order-summary-v2,
.admin-order-main-v2,
.admin-order-side-v2 {
  display: grid;
  gap: 18px;
}

.admin-order-summary-head-v2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.admin-order-date-v2 {
  color: #60758d;
  font-size: 0.88rem;
}

.admin-order-summary-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.admin-order-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.admin-order-side-v2 {
  position: sticky;
  top: 92px;
}

.admin-order-lines-v2,
.admin-order-events-v2,
.admin-order-payments-v2,
.admin-order-snapshots-v2 {
  display: grid;
  gap: 12px;
}

.admin-order-line-v2 {
  padding: 14px 0;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.admin-order-line-v2:first-child {
  padding-top: 0;
  border-top: 0;
}

.admin-order-event-v2,
.admin-order-payment-v2,
.admin-order-snapshots-v2 article {
  display: grid;
  gap: 4px;
}

.admin-order-payment-v2 {
  padding: 14px 0;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.admin-order-payment-v2:first-child {
  padding-top: 0;
  border-top: 0;
}

.admin-order-payment-confirm-v2 {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 75, 145, 0.18);
}

.admin-order-payment-confirm-v2 .field-row {
  gap: 6px;
}

.admin-order-payment-confirm-v2 textarea {
  min-height: 92px;
}

.admin-order-snapshots-v2 pre {
  margin: 0;
  padding: 12px;
  background: #f6f9fd;
  border: 1px solid rgba(10, 75, 145, 0.12);
  color: #33495f;
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 920px) {
  .checkout-hero-v2,
  .checkout-form-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-side-v2 {
    position: static;
  }

  .checkout-confirmation-hero-v2,
  .checkout-confirmation-grid-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-confirmation-side-v2 {
    position: static;
  }

  .admin-order-grid-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-order-side-v2 {
    position: static;
  }
}

@media (max-width: 780px) {
  .checkout-page-v2 {
    width: min(100%, calc(100vw - 20px));
    padding: 24px 0 72px;
  }

  .checkout-hero-meta-v2,
  .checkout-grid-v2-two,
  .checkout-grid-v2-three,
  .checkout-line-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .checkout-panel-head-v2,
  .checkout-address-quick-head-v2,
  .checkout-summary-total-v2,
  .checkout-summary-block-v2 div {
    flex-direction: column;
    align-items: start;
  }

  .checkout-line-total-v2 {
    justify-self: start;
  }

  .checkout-confirmation-v2 {
    width: min(100%, calc(100vw - 20px));
    padding: 24px 0 72px;
  }

  .checkout-confirmation-meta-v2,
  .checkout-confirmation-line-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-confirmation-head-v2 {
    flex-direction: column;
    align-items: start;
  }

  .checkout-confirmation-line-total-v2 {
    justify-self: start;
  }

  .orders-index-v2 {
    width: min(100%, calc(100vw - 20px));
    padding: 24px 0 72px;
  }

  .orders-index-card-head-v2,
  .orders-index-line-v2,
  .admin-order-summary-head-v2,
  .admin-order-line-v2 {
    flex-direction: column;
    align-items: start;
  }

  .orders-index-meta-v2,
  .admin-order-summary-grid-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .orders-index-thumbs-v2 {
    grid-template-columns: repeat(4, minmax(42px, 1fr));
  }
}

@media (max-width: 1100px) {
  .cart-hero-v2,
  .cart-workspace-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-side-v2,
  .cart-summary-panel-v2 {
    position: static;
  }
}

@media (max-width: 780px) {
  .cart-page-v2 {
    width: min(100%, calc(100vw - 20px));
    padding: 24px 0 72px;
  }

  .cart-hero-meta-v2,
  .cart-line-v2,
  .cart-line-pricing-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-line-footer-v2,
  .cart-panel-head-v2,
  .cart-summary-total-v2 {
    align-items: start;
    flex-direction: column;
  }

  .cart-line-v2 {
    padding: 14px;
  }

  .cart-line-media-v2 {
    aspect-ratio: 1 / 0.72;
  }

  .cart-line-pricing-v2 {
    width: 100%;
    text-align: left;
    justify-content: start;
  }

  .cart-line-copy-head-v2 {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .account-hero-v2,
  .account-workspace-v2,
  .account-loyalty-band-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-hero-side-v2,
  .account-side-v2 {
    position: static;
  }
}

@media (max-width: 720px) {
  .account-page-v2 {
    width: min(100%, calc(100vw - 20px));
    padding: 24px 0 72px;
    gap: 22px;
  }

  .account-profile-grid-v2,
  .account-metrics-v2,
  .account-address-list-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-snapshot-row-v2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .account-hero-copy-v2 h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }
}

[data-price-block].is-price-shifting .catalog-product-price,
[data-price-block].is-price-shifting .product-price-current-v2 {
  animation: pricing-price-shift 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-price-block].is-price-shifting .catalog-product-price-original,
[data-price-block].is-price-shifting .product-price-original-v2 {
  animation: pricing-original-shift 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-price-block].is-volume-active .catalog-product-price,
[data-price-block].is-volume-active .product-price-current-v2 {
  color: #8f5a00;
}

@keyframes pricing-price-shift {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(191, 125, 24, 0));
  }
  35% {
    transform: translateY(-2px) scale(1.045);
    filter: drop-shadow(0 10px 18px rgba(191, 125, 24, 0.18));
  }
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(191, 125, 24, 0));
  }
}

@keyframes pricing-original-shift {
  0% {
    opacity: 0.7;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
    transform: translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pricing-transition-original-enter {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  45% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-quantity-row-v2 {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 18px;
}

.product-quantity-row-v2 .catalog-quantity-control {
  flex: 0 0 104px;
  width: 104px;
  min-height: 48px;
}

.product-quantity-row-v2 .button {
  flex: 1 1 auto;
  min-height: 48px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.product-internal-note-v2 {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  background: rgba(244, 248, 255, 0.96);
  color: #48617c;
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-facts-v2 {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 75, 145, 0.1);
}

.product-facts-v2 div {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
}

.product-facts-v2 span {
  color: #60758d;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-facts-v2 strong,
.product-facts-v2 a {
  color: #10263f;
  font-size: 0.92rem;
  font-weight: 600;
}

.product-admin-pricing-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(244, 248, 255, 0.96);
  border: 1px solid rgba(10, 75, 145, 0.16);
  box-shadow: 0 16px 34px rgba(10, 75, 145, 0.08);
}

.product-admin-pricing-card[open] {
  padding-top: 18px;
}

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

.product-admin-pricing-summary::-webkit-details-marker {
  display: none;
}

.product-admin-pricing-summary-copy {
  display: grid;
  gap: 4px;
}

.product-admin-pricing-summary-copy strong {
  color: #10263f;
  font-size: 1rem;
}

.product-admin-pricing-summary-copy small {
  color: #60758d;
  font-size: 0.82rem;
}

.product-admin-pricing-pencil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(10, 75, 145, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #0a4b91;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 160ms ease;
}

.product-admin-pricing-card[open] .product-admin-pricing-pencil {
  transform: rotate(90deg);
}

.product-admin-pricing-head,
.product-admin-pricing-links,
.product-admin-pricing-meta,
.product-admin-pricing-actions {
  display: flex;
}

.product-admin-pricing-head {
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-admin-pricing-head strong {
  display: block;
  color: #10263f;
  font-size: 1rem;
}

.product-admin-pricing-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.product-admin-pricing-links a {
  color: #0a4b91;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.product-admin-pricing-links a:hover,
.product-admin-pricing-links a:focus-visible {
  text-decoration: underline;
}

.product-admin-pricing-form {
  display: grid;
  gap: 16px;
}

.product-admin-pricing-error {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(165, 44, 44, 0.22);
  background: rgba(165, 44, 44, 0.08);
  color: #8b2f2f;
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-admin-pricing-meta {
  flex-wrap: wrap;
  gap: 12px;
}

.product-admin-pricing-meta div {
  flex: 1 1 180px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 75, 145, 0.12);
}

.product-admin-pricing-meta span,
.product-admin-tier-preview span,
.product-admin-tier-head span {
  color: #60758d;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-admin-pricing-meta strong,
.product-admin-tier-preview strong,
.product-admin-tier-head strong {
  color: #10263f;
}

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

.product-admin-tier-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 75, 145, 0.12);
}

.product-admin-tier-head,
.product-admin-tier-preview {
  display: grid;
  gap: 4px;
}

.product-admin-tier-card label {
  color: #10263f;
  font-size: 0.84rem;
  font-weight: 600;
}

.product-admin-tier-fields {
  gap: 10px;
}

.product-admin-percent-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.product-admin-percent-input span {
  color: #10263f;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-admin-pricing-actions {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product-variants-head-v2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.product-variants-head-v2 strong {
  color: #10263f;
  font-size: 1rem;
}

.product-variants-head-v2 span {
  color: #60758d;
  font-size: 0.82rem;
}

.variant-switcher-v2 a {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(10, 75, 145, 0.14);
  background: #fff;
  border-radius: 999px;
}

.variant-switcher-v2 a[aria-current="page"] {
  border-color: #0a4b91;
  box-shadow: 0 10px 20px rgba(10, 75, 145, 0.12);
}

.product-body-v2 {
  display: grid;
  gap: 30px;
  margin-top: 34px;
}

.product-section-heading-v2 {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.product-section-heading-v2 h2 {
  margin: 0;
  color: #10263f;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.product-detail-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-detail-panel-v2 {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-detail-panel-v2 h3,
.product-faq-item-v2 h3,
.product-related-card-v2 h3 {
  margin: 0;
  color: #10263f;
  font-size: 1.05rem;
  line-height: 1.14;
}

.product-detail-panel-v2 p,
.product-faq-item-v2 p {
  margin: 0;
  color: #60758d;
  line-height: 1.55;
}

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

.product-attribute-panel-v2 {
  align-content: start;
}

.product-attribute-grid-v2 {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-attribute-chip-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(10, 75, 145, 0.12);
}

.product-attribute-chip-v2:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-attribute-chip-v2 dt,
.product-attribute-chip-v2 dd {
  margin: 0;
}

.product-attribute-chip-v2 dt {
  color: #60758d;
  font-size: 0.82rem;
  line-height: 1.3;
}

.product-attribute-chip-v2 dd {
  color: #10263f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.18;
  text-align: right;
}

.product-related-card-v2 {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-related-media-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.82;
  background: #f6f9fc;
  overflow: hidden;
}

.product-related-media-v2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.9rem;
}

.product-related-card-v2 h3 a {
  color: #10263f;
}

.product-related-meta-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: baseline;
}

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

@media (max-width: 1100px) {
  .product-hero-v2 {
    grid-template-columns: 1fr;
  }

  .product-hero-aside-v2 {
    position: static;
  }

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

@media (max-width: 760px) {
  .product-detail-grid-v2,
  .product-faq-grid-v2,
  .product-related-grid-v2 {
    grid-template-columns: 1fr;
  }

  .product-hero-copy-v2 h1 {
    font-size: 2.15rem;
  }

  .product-quantity-row-v2 {
    flex-direction: column;
  }

  .product-quantity-row-v2 .catalog-quantity-control {
    flex: 0 0 auto;
    width: 100%;
  }

  .product-facts-v2 div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-admin-pricing-head,
  .product-admin-pricing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-admin-pricing-summary {
    align-items: flex-start;
  }

  .product-admin-pricing-links {
    justify-content: flex-start;
  }

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

  .catalog-volume-offer {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-volume-offer-price {
    justify-items: start;
    text-align: left;
  }
}

.obraplus-page {
  padding: 22px 0 28px;
}

.obraplus-hero,
.obraplus-section {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
}

.obraplus-hero {
  padding: 18px 0 20px;
}

.obraplus-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(8, 22, 39, 0.08);
  background:
    linear-gradient(135deg, rgba(31, 121, 223, 0.1), rgba(31, 121, 223, 0.02) 38%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.98) 100%);
}

.obraplus-hero-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.obraplus-hero-copy h1,
.obraplus-section-head h2,
.obraplus-cta h2,
.obraplus-tier h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  color: #081627;
}

.obraplus-hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.obraplus-hero-copy p,
.obraplus-tier-summary,
.obraplus-benefit-line p,
.obraplus-note p {
  margin: 0;
  color: #56708a;
}

.obraplus-hero-copy p {
  max-width: 58ch;
  font-size: 1.04rem;
}

.obraplus-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.obraplus-hero-rail {
  display: grid;
  align-content: center;
  gap: 12px;
}

.obraplus-hero-rail-item {
  min-height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  border-left: 3px solid rgba(31, 121, 223, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: #081627;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.obraplus-hero-rail-item span,
.obraplus-tier-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.obraplus-hero-rail-item span {
  color: #0c4a8e;
}

.obraplus-hero-rail-item:hover {
  transform: translateX(6px);
  border-color: var(--brand);
  background: white;
}

.obraplus-section {
  padding: 22px 0;
}

.obraplus-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  max-width: 760px;
}

.obraplus-section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.94;
}

.obraplus-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
  border-bottom: 1px solid rgba(8, 22, 39, 0.08);
}

.obraplus-benefit-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(8, 22, 39, 0.08);
}

.obraplus-benefit-line:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.obraplus-benefit-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 8px;
  background: var(--brand);
  box-shadow: 0 0 16px rgba(31, 121, 223, 0.32);
}

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

.obraplus-tier {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 22px 22px 24px;
  border-top: 3px solid rgba(31, 121, 223, 0.16);
  background: rgba(255, 255, 255, 0.84);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.obraplus-tier:hover {
  transform: translateY(-4px);
  background: white;
}

.obraplus-tier-silver {
  border-color: rgba(119, 136, 153, 0.42);
}

.obraplus-tier-gold {
  border-color: rgba(191, 125, 24, 0.48);
}

.obraplus-tier-vip {
  border-color: rgba(31, 121, 223, 0.62);
}

.obraplus-tier-kicker {
  color: #60758d;
}

.obraplus-tier h3 {
  font-size: 2rem;
  line-height: 0.94;
}

.obraplus-tier-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #2d4760;
}

.obraplus-tier-list li::marker {
  color: var(--brand);
}

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

.obraplus-note {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
}

.obraplus-note-index {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0c4a8e;
}

.obraplus-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(8, 22, 39, 0.08);
}

.obraplus-cta h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.94;
}

@media (max-width: 1080px) {
  .obraplus-hero-inner,
  .obraplus-tier-grid,
  .obraplus-notes {
    grid-template-columns: 1fr;
  }

  .obraplus-benefits {
    grid-template-columns: 1fr;
  }

  .obraplus-benefit-line:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 22, 39, 0.08);
  }

  .obraplus-benefit-line:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .obraplus-hero,
  .obraplus-section {
    width: calc(100vw - 24px);
  }

  .obraplus-hero-inner {
    padding: 20px;
  }

  .obraplus-hero-copy h1 {
    font-size: 3rem;
  }

  .obraplus-hero-actions,
  .obraplus-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .obraplus-hero-actions .button,
  .obraplus-cta .button {
    width: 100%;
  }
}

.install-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(31, 121, 223, 0.16), transparent 20%),
    linear-gradient(180deg, #08284b 0, #0f4e94 280px, #eef3f8 281px, #f6f1e7 100%);
}

.install-shell {
  min-height: 100vh;
}

.setup-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(6, 23, 43, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(4, 15, 29, 0.12);
}

.setup-topbar-inner {
  width: min(1240px, calc(100vw - 72px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.setup-logo {
  display: inline-flex;
  align-items: center;
}

.setup-logo img {
  width: min(194px, 34vw);
  height: auto;
}

.setup-page {
  width: min(1240px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 34px 0 104px;
  display: grid;
  gap: 28px;
}

.setup-error-banner {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 247, 246, 0.96);
  border: 1px solid rgba(191, 71, 71, 0.24);
  color: var(--danger);
  box-shadow: 0 14px 34px rgba(90, 18, 18, 0.08);
}

.setup-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 54px 56px 132px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(30, 108, 198, 0.88), rgba(9, 52, 98, 0.98));
  box-shadow: 0 30px 70px rgba(7, 20, 38, 0.24);
}

.setup-hero::before,
.setup-hero::after {
  content: "";
  position: absolute;
  border-radius: 36px;
  transform: rotate(45deg);
}

.setup-hero::before {
  width: 360px;
  height: 360px;
  right: 10%;
  top: -180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.setup-hero::after {
  width: 220px;
  height: 220px;
  right: 18%;
  bottom: -98px;
  background: linear-gradient(135deg, rgba(12, 74, 142, 0.72), rgba(31, 121, 223, 0.16));
}

.setup-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.setup-kicker,
.setup-stage-kicker,
.setup-actions-meta span,
.setup-workspace-meta span {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.setup-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.setup-hero h1,
.setup-workspace-meta strong,
.setup-stage-head h2,
.setup-subsection-head h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.setup-hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.88;
  color: white;
}

.setup-hero p {
  margin: 0;
  max-width: 34ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.8);
}

.setup-form {
  display: grid;
  gap: 24px;
  margin-top: -106px;
  position: relative;
  z-index: 2;
}

.setup-progress-panel {
  position: relative;
  width: min(980px, calc(100vw - 120px));
  margin: 0 auto;
  padding: 28px 34px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 121, 223, 0.08);
  box-shadow: 0 26px 62px rgba(7, 20, 38, 0.16);
  backdrop-filter: blur(16px);
}

.setup-progress-track {
  position: absolute;
  top: 55px;
  left: 78px;
  right: 78px;
  height: 4px;
  background: rgba(6, 17, 29, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.setup-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  border-radius: inherit;
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.setup-stepper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.setup-step {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(40, 67, 91, 0.5);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.setup-step:hover:not(:disabled) {
  transform: translateY(-1px);
}

.setup-step:disabled,
.setup-step.is-blocked {
  cursor: not-allowed;
  opacity: 0.42;
}

.setup-step-dot {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(31, 121, 223, 0.14);
  background: linear-gradient(180deg, #ffffff, #f0f5fb);
  box-shadow: 0 12px 28px rgba(9, 29, 56, 0.08);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.setup-step-dot span {
  font-weight: 800;
  font-size: 0.92rem;
}

.setup-step-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.setup-step-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-step-copy small {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.setup-step.is-active {
  color: var(--brand-deep);
}

.setup-step.is-active .setup-step-dot {
  border-color: rgba(31, 121, 223, 0.2);
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  transform: scale(1.08);
  box-shadow: 0 18px 34px rgba(31, 121, 223, 0.24);
}

.setup-step.is-complete {
  color: var(--brand-deep);
}

.setup-step.is-complete .setup-step-dot {
  border-color: var(--brand-deep);
  background: linear-gradient(135deg, var(--brand-deep), #08315d);
  color: white;
}

.setup-step.is-complete .setup-step-dot span {
  font-size: 0;
}

.setup-step.is-complete .setup-step-dot::before {
  content: "";
  width: 13px;
  height: 7px;
  margin-top: -2px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.setup-workspace {
  display: grid;
  gap: 24px;
  padding: 36px 40px 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(31, 121, 223, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(31, 121, 223, 0.08);
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.14);
}

.setup-workspace-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(6, 17, 29, 0.08);
}

.setup-workspace-meta {
  display: grid;
  gap: 8px;
}

.setup-workspace-meta span,
.setup-actions-meta span {
  color: var(--brand);
}

.setup-workspace-meta strong {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 0.92;
}

.setup-workspace-head p {
  margin: 0;
  max-width: 28ch;
  color: var(--ink-muted);
}

.setup-stage-shell {
  display: grid;
}

.setup-stage {
  display: grid;
  gap: 22px;
  animation: setup-stage-enter 260ms ease;
}

.setup-stage[hidden] {
  display: none;
}

.setup-stage-head {
  display: grid;
  gap: 8px;
}

.setup-stage-kicker {
  color: var(--brand);
}

.setup-stage-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
}

.setup-stage-head p,
.setup-subsection-head p,
.setup-stage-note {
  margin: 0;
  color: var(--ink-muted);
}

.setup-stage-body {
  display: grid;
  gap: 18px;
}

.setup-validation-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(31, 121, 223, 0.08), rgba(31, 121, 223, 0.02));
  border: 1px solid rgba(31, 121, 223, 0.12);
}

.setup-validation-headline strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.setup-validation-item {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 254, 0.96));
  border: 1px solid rgba(6, 17, 29, 0.08);
}

.setup-validation-item.is-ok {
  border-color: rgba(18, 114, 79, 0.22);
  box-shadow: inset 0 1px 0 rgba(18, 114, 79, 0.08);
}

.setup-validation-item.is-error {
  border-color: rgba(191, 71, 71, 0.22);
  background: linear-gradient(180deg, rgba(255, 250, 250, 0.98), rgba(255, 245, 245, 0.98));
}

.setup-validation-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(6, 17, 29, 0.06);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.setup-validation-item.is-ok .setup-validation-pill {
  background: rgba(18, 114, 79, 0.12);
  color: var(--success);
}

.setup-validation-item.is-error .setup-validation-pill {
  background: rgba(191, 71, 71, 0.12);
  color: var(--danger);
}

.setup-validation-item strong {
  font-size: 1rem;
}

.setup-field-grid,
.setup-check-grid {
  display: grid;
  gap: 16px;
}

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

.setup-field-grid-2,
.setup-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.setup-span-full {
  grid-column: 1 / -1;
}

.setup-span-2 {
  grid-column: span 2;
}

.setup-workspace .field-row label,
.setup-workspace .check-row span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.setup-workspace .field-row input,
.setup-workspace .field-row select,
.setup-workspace .field-row textarea {
  min-height: 58px;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(6, 17, 29, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.setup-workspace .field-row input:focus,
.setup-workspace .field-row select:focus,
.setup-workspace .field-row textarea:focus {
  border-color: rgba(31, 121, 223, 0.34);
  background: white;
  box-shadow: 0 0 0 4px rgba(31, 121, 223, 0.12);
}

.setup-workspace .field-row textarea {
  min-height: 144px;
  resize: vertical;
}

.setup-workspace .field-row input[type="file"] {
  min-height: 66px;
  padding-top: 18px;
}

.setup-check {
  min-height: 72px;
  padding: 16px 18px;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(31, 121, 223, 0.12);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(242, 247, 252, 0.98));
}

.setup-check input {
  margin-top: 0;
}

.setup-subsection,
.setup-disclosure {
  padding-top: 22px;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.setup-subsection:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.setup-subsection {
  display: grid;
  gap: 18px;
}

.setup-subsection-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.setup-subsection-head h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 0.94;
}

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

.setup-disclosure summary::-webkit-details-marker {
  display: none;
}

.setup-disclosure summary span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.36rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.setup-disclosure summary small {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.setup-disclosure summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand);
  transition: transform 180ms ease;
}

.setup-disclosure[open] summary::after {
  transform: rotate(45deg);
}

.setup-disclosure > .setup-field-grid {
  margin-top: 16px;
}

.setup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(6, 17, 29, 0.08);
}

.setup-actions-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.setup-actions-meta {
  display: grid;
  min-width: 110px;
}

.setup-form .button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
}

.setup-form .button[disabled],
.setup-form .button[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

@keyframes setup-stage-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .setup-validation-grid,
  .setup-field-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .setup-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .setup-topbar-inner,
  .setup-page {
    width: min(100vw - 28px, 1240px);
  }

  .setup-page {
    padding-top: 20px;
    gap: 22px;
  }

  .setup-hero {
    min-height: 280px;
    padding: 40px 24px 112px;
    border-radius: 28px;
  }

  .setup-hero::before {
    width: 260px;
    height: 260px;
    right: 0;
    top: -140px;
  }

  .setup-hero::after {
    width: 160px;
    height: 160px;
    right: 12%;
    bottom: -82px;
  }

  .setup-form {
    margin-top: -78px;
  }

  .setup-progress-panel {
    width: 100%;
    padding: 24px 18px 20px;
    border-radius: 26px;
  }

  .setup-progress-track {
    top: 48px;
    left: 34px;
    right: 34px;
  }

  .setup-stepper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 2px 6px;
    scrollbar-width: none;
  }

  .setup-stepper::-webkit-scrollbar {
    display: none;
  }

  .setup-step {
    min-width: 142px;
    scroll-snap-align: start;
  }

  .setup-step-dot {
    width: 50px;
    height: 50px;
  }

  .setup-workspace {
    padding: 26px 20px 24px;
    border-radius: 24px;
  }

  .setup-workspace-head,
  .setup-validation-headline,
  .setup-subsection-head,
  .setup-actions,
  .setup-actions-end {
    align-items: start;
    flex-direction: column;
  }

  .setup-validation-grid,
  .setup-field-grid-3,
  .setup-field-grid-2,
  .setup-check-grid {
    grid-template-columns: 1fr;
  }

  .setup-actions-end,
  .setup-form .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .setup-topbar-inner,
  .setup-page {
    width: min(100vw - 20px, 1240px);
  }

  .setup-topbar-inner {
    min-height: 72px;
  }

  .setup-logo img {
    width: 156px;
  }

  .setup-hero {
    min-height: 250px;
    padding: 30px 18px 96px;
  }

  .setup-hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .setup-progress-track {
    top: 44px;
  }

  .setup-step-copy strong,
  .setup-step-copy small {
    white-space: nowrap;
  }

  .setup-workspace-meta strong {
    font-size: 2rem;
  }
}
