:root {
  color-scheme: light;
  --blue: #2f7bff;
  --blue-deep: #123f73;
  --indigo: #7d66ff;
  --blue-soft: #e8f1ff;
  --ink: #142033;
  --muted: #5d6d80;
  --line: #d8e3ee;
  --surface: #eaf2ff;
  --panel: #ffffff;
  --success: #1f7a4d;
  --green: #0dbd6e;
  --olympus-navy-950: #06112A;
  --olympus-navy-900: #071226;
  --olympus-blue-900: #0B1E55;
  --olympus-blue-800: #123C95;
  --olympus-blue-700: #1D56D8;
  --olympus-blue-600: #256DFF;
  --olympus-blue-500: #2F7BFF;
  --olympus-indigo-500: #7D66FF;
  --olympus-soft-blue-100: #EEF4FF;
  --olympus-soft-blue-50: #F4F8FF;
  --olympus-border-blue: #D7E4F8;
  --olympus-surface: #FFFFFF;
  --olympus-text-dark: #0B1430;
  --olympus-text-muted: #6D84B8;
  --olympus-verified: #00B86B;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(960px, calc(100% - 32px));
  margin: 40px auto;
  display: grid;
  grid-template-columns: 430px 430px;
  gap: 32px;
  justify-content: center;
  align-items: start;
}

.basket-shell,
.lifecycle-shell {
  width: min(560px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.store-shell {
  width: min(1120px, calc(100% - 32px));
  display: block;
}

.coreblue-context-rail {
  min-width: 0;
  border: 1px solid #c7dbff;
  border-radius: 34px;
  background: #f4f9ff;
  padding: 24px;
  box-shadow: 0 12px 28px rgb(13 41 87 / 9%), 0 24px 42px rgb(20 87 255 / 10%);
}

.coreblue-focused-rail {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.coreblue-action-rail {
  min-width: 0;
  border: 1px solid #c7dbff;
  border-radius: 24px;
  background: #f4f9ff;
  padding: 24px;
  box-shadow: 0 8px 18px rgb(13 41 87 / 6%);
}

.rail-context {
  min-height: 360px;
}

.basket-context {
  border-color: #c7dbff;
  box-shadow: 0 18px 38px rgb(20 64 153 / 10%);
}

.lifecycle-context {
  border-color: #d3e1f4;
}

.basket-action,
.lifecycle-action {
  position: static;
  border-color: #c7dbff;
  background: #f4f9ff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
}

h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h2 {
  font-size: 18px;
  line-height: 1.2;
}

h3 {
  font-size: 15px;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.surface-heading {
  display: grid;
  gap: 8px;
}

.surface-heading.compact h2 {
  color: var(--ink);
}

.state-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.state-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #bfd5f4;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
}

.basket-panel,
.proof-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.panel-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.panel-heading p,
.action-note {
  font-size: 13px;
}

.line-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid #e3ebf5;
}

.line-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.line-item p {
  margin-top: 4px;
  font-size: 13px;
}

.line-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  white-space: nowrap;
}

.line-meta span {
  color: var(--muted);
  font-size: 12px;
}

.line-meta strong,
.total-row strong,
.proof-card strong {
  color: var(--ink);
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #e3ebf5;
  color: var(--muted);
}

.contract-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #e3ebf5;
}

.contract-row span {
  color: var(--muted);
}

.contract-row strong {
  text-align: right;
}

.total-row-emphasis {
  color: var(--ink);
  font-size: 16px;
}

.primary-action {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 750;
  letter-spacing: 0;
}

.primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.action-note {
  margin-top: 10px;
}

.proof-card h3 {
  margin-bottom: 12px;
}

.proof-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-card li {
  display: grid;
  grid-template-columns: minmax(90px, auto) minmax(0, 1fr);
  gap: 12px;
  font-size: 13px;
}

.proof-card li span {
  color: var(--muted);
}

.proof-card p {
  font-size: 13px;
}

dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

dt {
  color: var(--muted);
  font-size: 12px;
}

dd {
  margin: 4px 0 0;
  font-weight: 650;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .shell {
    margin: 24px auto;
    grid-template-columns: 1fr;
  }

  .basket-action,
  .lifecycle-action {
    position: static;
  }

  .line-item,
  .proof-card li,
  .contract-row {
    grid-template-columns: 1fr;
  }

  .contract-row {
    display: grid;
  }

  .line-meta {
    justify-items: start;
  }

  .contract-row strong {
    text-align: left;
  }
}

.store-shell-inner {
  display: grid;
  gap: 22px;
}

.store-heading {
  border: 1px solid #c7dbff;
  border-radius: 24px;
  background: #f7fbff;
  box-shadow: 0 12px 28px rgb(13 41 87 / 8%);
  padding: 24px;
}

.store-heading h1 {
  max-width: 720px;
}

.store-heading p:not(.eyebrow) {
  max-width: 760px;
}

.store-boundary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.store-boundary-strip span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #bfd5f4;
  border-radius: 999px;
  background: #e8f1ff;
  color: #2f7bff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

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

.store-product-card {
  min-width: 0;
  min-height: 296px;
  border: 1px solid #d7e4f8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 18px rgb(13 41 87 / 6%);
  display: grid;
  grid-template-rows: 112px minmax(0, 1fr);
  overflow: hidden;
}

.store-product-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(47, 123, 255, 0.16), rgba(13, 189, 110, 0.14)),
    #eef4ff;
}

.store-product-code {
  width: 76px;
  height: 76px;
  border: 1px solid #bfd4f8;
  border-radius: 20px;
  background: linear-gradient(180deg, #dcebff 0%, #cfe0ff 100%);
  color: #123f73;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 70%);
}

.store-product-code strong,
.store-product-code em {
  display: block;
  color: #123f73;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.store-product-code strong {
  font-size: 18px;
}

.store-product-code em {
  border-top: 1px solid rgb(191 212 248 / 70%);
  padding-top: 6px;
  font-size: 14px;
}

.store-product-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.store-product-copy h2 {
  color: #141c38;
  font-size: 17px;
}

.store-product-copy p {
  font-size: 13px;
}

.store-product-meta {
  color: #2f7bff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.store-product-footer {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-product-footer strong {
  color: #141c38;
  font-size: 14px;
}

.store-link-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: #2f7bff;
  color: #fff;
  padding: 0 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 900px) {
  .store-product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .store-product-grid {
    grid-template-columns: 1fr;
  }
}

/* CoreBlue rail runtime mapping */
.coreblue-context-rail,
.coreblue-action-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cb-header-card {
  min-height: 102px;
  border-radius: 24px;
  background: linear-gradient(100deg, var(--blue), var(--indigo));
  box-shadow: 0 8px 18px rgb(13 41 87 / 6%), 0 16px 34px rgb(20 87 255 / 8%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.cb-cart-tile {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgb(255 255 255 / 18%);
  color: #fff;
  overflow: hidden;
}

.cb-cart-halo {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgb(255 255 255 / 14%);
}

.cb-cart-icon {
  position: relative;
  width: 27px;
  height: 27px;
}

.cb-header-copy {
  min-width: 0;
}

.cb-header-copy p {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 850;
}

.cb-header-copy span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 90%);
  font-size: 12px;
  font-weight: 650;
}

.cb-state-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cb-state-strip span,
.cb-live-rate,
.cb-currency-chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c7dbff;
  background: #eef5ff;
  color: var(--blue-deep);
  padding: 0 11px;
  font-size: 11px;
  font-weight: 800;
}

.cb-product-stack {
  display: grid;
  gap: 12px;
}

.cb-empty-card {
  min-height: 354px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 40px 32px;
  text-align: center;
}

.cb-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #f8faff;
  color: #b8cbff;
  display: grid;
  place-items: center;
}

.cb-empty-icon svg {
  width: 54px;
  height: 54px;
}

.cb-empty-copy {
  max-width: 240px;
}

.cb-empty-copy h2 {
  color: #1e2740;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.cb-empty-copy p {
  margin-top: 7px;
  color: #6c7b9d;
  font-size: 11px;
  line-height: 1.55;
}

.cb-product-card {
  width: 100%;
  max-width: 380px;
  min-height: 103px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  border: 1px solid #d7e4f8;
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 9px rgb(13 41 87 / 5%);
}

.product-row-card {
  width: 100%;
  max-width: 380px;
  min-height: 103px;
}

.product-row-card-grid {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
}

.cb-product-thumb {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--prt-tile-border, #d7e4f8);
  border-radius: 12px;
  background: #eef4ff;
  background: var(--prt-tile-bg, #eef4ff);
  padding: 7px;
}

.cb-product-thumb.is-mobile {
  width: 56px;
  height: 56px;
  min-width: 56px;
  padding: 6px;
}

.cb-product-thumb.is-desktop {
  width: 64px;
  height: 64px;
  min-width: 64px;
  padding: 7px;
}

.cb-product-thumb img,
.product-row-thumbnail img {
  width: 100%;
  height: 100%;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  object-position: center;
}

.cb-product-code-chip {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #dcebff 0%, #cfe0ff 100%);
  background: linear-gradient(180deg, var(--prt-chip-from, #dcebff) 0%, var(--prt-chip-to, #cfe0ff) 100%);
}

.cb-product-thumb.is-stack .cb-product-code-chip {
  background: linear-gradient(180deg, var(--prt-stack-from, #256dff) 0%, var(--prt-stack-to, #7d66ff) 100%);
}

.cb-product-code-line {
  max-width: 100%;
  overflow: hidden;
  color: var(--prt-text, #256dff);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cb-product-thumb.is-stack .cb-product-code-line {
  color: #fff;
}

.cb-product-thumb.is-desktop .cb-product-code-top {
  font-size: 16px;
}

.cb-product-thumb.is-mobile .cb-product-code-top {
  font-size: 14px;
}

.cb-product-code-top.is-long-top,
.cb-product-thumb.is-mobile .cb-product-code-top.is-long-top {
  font-size: 12px;
}

.cb-product-thumb.is-desktop .cb-product-code-top.is-long-top {
  font-size: 13px;
}

.cb-product-thumb.is-desktop .cb-product-code-bottom {
  font-size: 15px;
}

.cb-product-thumb.is-mobile .cb-product-code-bottom {
  font-size: 13px;
}

.cb-product-code-bottom.is-long-code {
  font-size: 12px;
}

.cb-product-thumb.is-mobile .cb-product-code-bottom.is-long-code {
  font-size: 10px;
}

.cb-product-thumb.is-desktop .cb-product-code-bottom.is-long-code {
  font-size: 11px;
}

.cb-product-code-divider {
  width: 32px;
  height: 1px;
  margin: 3px 0;
  background: rgb(191 212 248 / 60%);
  background: var(--prt-divider, #bfd4f8);
  opacity: 0.6;
}

.cb-product-thumb.is-stack .cb-product-code-divider {
  background: rgb(255 255 255 / 35%);
  opacity: 1;
}

.cb-product-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.cb-product-copy h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #141c38;
  font-size: 13px;
  font-weight: 800;
}

.cb-product-copy p,
.cb-card-note,
.cb-status-copy {
  color: #5e709e;
  font-size: 11px;
  line-height: 1.42;
}

.cb-product-price {
  display: grid;
  gap: 6px;
  justify-items: end;
  white-space: nowrap;
}

.cb-product-price strong {
  color: #141c38;
  font-size: 13px;
  font-weight: 850;
}

.cb-product-price span {
  color: #5e709e;
  font-size: 10px;
}

.cb-product-overflow {
  width: 22px;
  height: 26px;
  border: 0;
  border-radius: 8px;
  background: #f2f7ff;
  color: #5e709e;
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.cb-qty {
  width: 100px;
  height: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d7e4f8;
  background: #f2f7ff;
  overflow: hidden;
}

.cb-qty span,
.cb-qty strong,
.cb-qty button {
  text-align: center;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.cb-qty button {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.cb-qty button:disabled {
  color: #9fb1c9;
  cursor: not-allowed;
}

.cb-qty.is-disabled {
  opacity: 0.65;
}

.cb-qty-readonly {
  width: 72px;
  grid-template-columns: 1fr;
  background: #ffffff;
}

.cb-card,
.cb-action-card,
.cb-payment-boundary,
.cb-proof-strip {
  border: 1px solid #d7e4f8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 18px rgb(13 41 87 / 6%);
  padding: 20px;
}

.cb-card h2,
.cb-action-card h3 {
  color: #141c38;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.cb-summary-list {
  margin-top: 8px;
  display: grid;
}

.cb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #eef4ff;
}

.cb-summary-row:first-child {
  border-top: 0;
}

.cb-summary-row span {
  color: #141c38;
  font-size: 12px;
  font-weight: 750;
}

.cb-summary-row strong {
  color: #141c38;
  font-size: 13px;
  font-weight: 850;
}

.cb-summary-row small {
  display: block;
  margin-top: 3px;
  color: #5e709e;
  font-size: 10px;
  text-align: right;
}

.cb-summary-row.is-emphasis strong {
  color: var(--blue);
}

.cb-card-heading-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cb-live-rate {
  border-color: #9eebc4;
  background: #e5fff2;
  color: #057a4d;
}

.cb-live-rate i,
.cb-trust-rail span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  margin-right: 6px;
}

.cb-currency-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.cb-currency-chips span {
  justify-content: center;
  min-height: 44px;
  background: #fff;
}

.cb-currency-chips span.is-selected {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.cb-fx-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.cb-fx-line strong {
  min-width: 0;
  color: #141c38;
  font-size: 22px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.cb-fx-line span,
.cb-fx-line .is-blue {
  color: var(--blue);
}

.cb-fx-note,
.cb-amount-confirm {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid #d7e4f8;
  border-radius: 16px;
  background: #f1f6ff;
  padding: 12px;
}

.cb-fx-note span,
.cb-amount-confirm span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #c7dbff;
  background: #fff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.cb-fx-note p,
.cb-amount-confirm p {
  color: #5e709e;
  font-size: 10px;
  line-height: 1.35;
}

.cb-fx-note-copy {
  min-width: 0;
}

.cb-fx-note-copy strong {
  display: block;
  color: #141c38;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
}

.cb-fx-note-copy p + p {
  margin-top: 1px;
}

.cb-amount-card p {
  color: #5e709e;
  font-size: 11px;
  font-weight: 750;
}

.cb-amount-card > strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.cb-amount-confirm {
  border: 0;
  background: transparent;
  padding: 0;
}

.cb-amount-confirm span {
  color: var(--green);
  background: #e5fff2;
  border: 0;
  width: auto;
  min-width: 28px;
  padding: 0 6px;
}

.cb-action-card {
  display: grid;
  gap: 13px;
}

.cb-action-card-bare {
  gap: 0;
}

.cb-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cb-field-shell,
.cb-select-shell {
  min-height: 50px;
  border: 1px solid #d7e4f8;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  min-width: 0;
}

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

.cb-field-shell span,
.cb-select-shell span {
  min-width: 0;
  color: #5e709e;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.cb-field-shell strong {
  color: #141c38;
  font-size: 11px;
  text-align: right;
  overflow-wrap: anywhere;
}

.cb-field-shell input {
  width: 100%;
  min-width: 80px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #141c38;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.cb-field-shell input::placeholder {
  color: #8da0c5;
  font-weight: 650;
}

.cb-field-shell:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(17, 85, 212, 0.08);
}

.cb-select-shell i {
  color: #5e709e;
  font-style: normal;
  font-weight: 900;
}

.cb-check-row,
.cb-payment-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cb-check-row {
  position: relative;
  cursor: pointer;
}

.cb-check-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cb-check-row span,
.cb-payment-option > span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 2px solid #d7e4f8;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
}

.cb-check-row input[type="checkbox"]:checked + span {
  border-color: var(--blue);
  background: var(--blue);
}

.cb-check-row input[type="checkbox"]:checked + span::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.cb-check-row.is-checked span {
  border-color: var(--blue);
  background: var(--blue);
}

.cb-check-row p {
  color: #141c38;
  font-size: 12px;
  line-height: 1.45;
}

.cb-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cb-coupon-input {
  min-height: 50px;
  min-width: 0;
  border: 1px solid #d7e4f8;
  border-radius: 16px;
  background: #fff;
  color: #141c38;
  padding: 0 14px;
  font: inherit;
  font-size: 12px;
}

.cb-coupon-input::placeholder {
  color: #5e709e;
}

.cb-secondary-button {
  min-height: 50px;
  border: 1px solid #d7e4f8;
  border-radius: 16px;
  background: #f2f7ff;
  color: var(--blue);
  padding: 0 20px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.cb-select-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cb-checkout-submit-form {
  display: grid;
  gap: 10px;
}

.cb-payment-option {
  border: 1px solid #d7e4f8;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.cb-payment-option.is-selected {
  border: 2px solid var(--blue);
  background: #f8fbff;
}

.cb-payment-option.is-selected > span {
  border-color: var(--blue);
}

.cb-payment-option.is-selected > span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.cb-payment-option strong,
.cb-payment-option em {
  display: block;
  color: #141c38;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.cb-payment-option em {
  margin-top: 3px;
  color: var(--blue);
  font-size: 11px;
}

.cb-payment-option p {
  margin-top: 8px;
  color: #5e709e;
  font-size: 11px;
}

.cb-primary-action {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(100deg, var(--blue), var(--indigo));
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.cb-primary-action:disabled,
.cb-secondary-button:disabled,
.cb-outline-action:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.cb-outline-action {
  width: 100%;
  min-height: 56px;
  border: 2px solid #d7e4f8;
  border-radius: 18px;
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.cb-trust-rail {
  min-height: 58px;
  border: 1px solid #c7dbff;
  border-radius: 24px;
  background: #f8fbff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
}

.cb-trust-rail span {
  margin: 0;
}

.cb-trust-rail p {
  color: #5e709e;
  font-size: 10px;
  font-weight: 650;
}

.cb-payment-boundary {
  display: grid;
  gap: 8px;
  background: #f8fbff;
}

.cb-payment-boundary strong {
  color: #141c38;
  font-size: 13px;
  font-weight: 850;
}

.cb-payment-boundary p {
  color: #5e709e;
  font-size: 11px;
}

.cb-proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f8fbff;
  box-shadow: none;
}

.cb-proof-strip div {
  min-width: 0;
}

.cb-proof-strip span {
  display: block;
  color: #5e709e;
  font-size: 10px;
}

.cb-proof-strip strong {
  display: block;
  margin-top: 2px;
  color: #141c38;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.cb-terminal-frame {
  min-height: 440px;
  border: 2px dashed #b8cbff;
  border-radius: 18px;
  background: #f8fbff;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.cb-terminal-frame.is-mounted {
  display: block;
  padding: 0;
  overflow: hidden;
  border-style: solid;
  background: #fff;
}

.cb-terminal-iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  height: min(720px, 78vh);
  border: 0;
  background: #fff;
}

.cb-terminal-frame.is-mounted small {
  display: block;
  padding: 10px 12px 12px;
  border-top: 1px solid #e4edfb;
  background: #f8fbff;
}

.cb-terminal-frame strong {
  color: var(--blue);
  font-size: 16px;
  font-weight: 850;
}

.cb-terminal-frame p {
  max-width: 320px;
  color: #5e709e;
  font-size: 12px;
}

.cb-terminal-frame em,
.cb-terminal-frame small {
  color: #8190b3;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.cb-terminal-status {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cb-terminal-status strong {
  display: block;
  color: #141c38;
  font-size: 15px;
  font-weight: 850;
}

.cb-terminal-status p {
  margin-top: 3px;
  color: #5e709e;
  font-size: 11px;
}

.cb-terminal-icon,
.cb-terminal-large-icon {
  border: 1px solid #c7dbff;
  background: #f1f6ff;
  display: grid;
  place-items: center;
}

.cb-terminal-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
}

.cb-terminal-large-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
}

.cb-terminal-icon::before,
.cb-terminal-large-icon::before {
  content: "";
  width: 52%;
  height: 34%;
  border: 2px solid var(--blue);
  border-radius: 4px;
  box-shadow: inset 0 6px 0 0 transparent;
}

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

.cb-status-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #eef4ff;
  padding-top: 10px;
}

.cb-status-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.cb-status-list span {
  color: #5e709e;
  font-size: 12px;
}

.cb-status-list strong {
  color: #141c38;
  font-size: 12px;
  text-align: right;
}

.cb-action-feedback {
  border: 1px solid #c7dbff;
  border-radius: 18px;
  background: #f8fbff;
  padding: 14px 16px;
}

.cb-action-feedback.is-applied {
  border-color: #9eebc4;
  background: #e5fff2;
}

.cb-action-feedback.is-failed {
  border-color: #f3b5b5;
  background: #fff4f4;
}

.cb-action-feedback strong {
  display: block;
  color: #141c38;
  font-size: 13px;
  font-weight: 850;
}

.cb-action-feedback p {
  margin-top: 4px;
  color: #5e709e;
  font-size: 11px;
}

.cb-success-banner {
  min-height: 188px;
  border-radius: 24px;
  background: linear-gradient(100deg, #0dbd6e, #2bbf73);
  box-shadow: 0 8px 18px rgb(13 41 87 / 6%);
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.cb-success-banner span {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgb(255 255 255 / 20%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.cb-success-banner strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.cb-success-banner p {
  color: rgb(255 255 255 / 90%);
  font-size: 13px;
}

.cb-info-note {
  border: 1px solid #c7dbff;
  border-radius: 24px;
  background: #f1f6ff;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cb-info-note > span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #c7dbff;
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
}

.cb-info-note strong {
  color: #141c38;
  font-size: 11px;
  font-weight: 850;
}

.cb-info-note p {
  margin-top: 5px;
  color: #5e709e;
  font-size: 10px;
}

.cb-receipt-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #eef4ff;
  padding: 12px 0;
}

.cb-receipt-row:first-of-type {
  border-top: 0;
}

.cb-receipt-row span {
  color: #5e709e;
  font-size: 11px;
  font-weight: 800;
}

.cb-receipt-row strong {
  max-width: 190px;
  color: #141c38;
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.cb-receipt-heading,
.cb-order-lookup,
.cb-current-status,
.cb-shipping-status {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cb-receipt-heading > span,
.cb-order-lookup > span,
.cb-current-status > span,
.cb-shipping-status > span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #e5fff2;
  border: 1px solid #9eebc4;
  color: #057a4d;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  font-size: 11px;
  font-weight: 900;
}

.cb-receipt-heading div,
.cb-order-lookup div,
.cb-current-status div,
.cb-shipping-status div {
  min-width: 0;
  flex: 1;
}

.cb-receipt-heading strong,
.cb-order-lookup strong,
.cb-current-status strong,
.cb-shipping-status strong {
  display: block;
  color: #141c38;
  font-size: 13px;
  font-weight: 850;
}

.cb-receipt-heading p,
.cb-order-lookup p,
.cb-current-status p,
.cb-shipping-status p {
  margin-top: 4px;
  color: #5e709e;
  font-size: 11px;
}

.cb-receipt-heading em {
  border: 1px solid #9eebc4;
  border-radius: 999px;
  background: #e5fff2;
  color: #057a4d;
  padding: 8px 12px;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.cb-shipping-status > span {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  background: #fff5e6;
  border-color: #ffd8a8;
  color: #c2410c;
}

.cb-status-timeline {
  margin: 16px 0 0 20px;
  border-left: 2px solid #eef4ff;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.cb-status-timeline p {
  color: #141c38;
  font-size: 11px;
  font-weight: 750;
}

@media (max-width: 960px) {
  .basket-shell,
  .lifecycle-shell {
    width: min(430px, calc(100% - 24px));
    grid-template-columns: 1fr;
    margin: 18px auto;
  }

  .basket-action,
  .lifecycle-action {
    position: static;
  }
}

@media (max-width: 480px) {
  .coreblue-context-rail {
    border-radius: 28px;
    padding: 16px;
  }

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

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

  .cb-product-thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 6px;
  }

  .cb-product-code-divider {
    width: 28px;
  }

  .cb-product-price {
    grid-column: 2;
    justify-items: start;
  }

  .cb-field-grid,
  .cb-proof-strip {
    grid-template-columns: 1fr;
  }

  .cb-coupon-row {
    grid-template-columns: 1fr;
  }

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

  .cb-receipt-row {
    display: grid;
  }

  .cb-receipt-row strong {
    max-width: none;
    text-align: left;
  }
}

/* Core Blue React storefront */
.coreblue-react-storefront,
.store-shell.coreblue-react-storefront {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: #eaf2ff;
  color: #141c38;
}

.cb-storefront {
  width: 100%;
  min-height: 100vh;
  background: #eaf2ff;
}

.cb-top-strip {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 6px 18px;
  background: #061b49;
  color: #d7e4f8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.cb-store-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 340px) auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid #d7e4f8;
  background: rgb(244 249 255 / 94%);
  backdrop-filter: blur(16px);
}

.cb-store-brand,
.cb-store-nav a,
.cb-store-nav-cart,
.cb-primary-link,
.cb-secondary-link,
.cb-product-card-copy a,
.cb-flagship-actions a,
.cb-report-list a,
.cb-pdp-secondary-actions a,
.cb-pdp-report a,
.cb-category-rail a,
.cb-store-footer a {
  color: inherit;
  text-decoration: none;
}

.cb-store-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #141c38;
}

.cb-store-brand span,
.cb-store-product-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #c7dbff;
  background: #eef4ff;
  color: #256dff;
  font-weight: 900;
}

.cb-store-brand span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.cb-store-brand strong {
  font-size: 17px;
}

.cb-store-nav nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.cb-store-nav nav a {
  color: #5e709e;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.cb-store-search,
.cb-listing-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c7dbff;
  border-radius: 8px;
  background: #fff;
}

.cb-store-search {
  min-height: 40px;
  padding: 0 12px;
}

.cb-store-search input,
.cb-listing-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #141c38;
  font: inherit;
}

.cb-store-nav-cart {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #c7dbff;
  border-radius: 8px;
  background: #fff;
  color: #256dff;
}

.cb-store-feedback {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  border: 1px solid #c7dbff;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}

.cb-store-feedback.is-ok {
  border-color: #b6ebd3;
  color: #0a8f58;
}

.cb-store-feedback.is-warn {
  border-color: #f5d29b;
  color: #8a5a09;
}

.cb-home-hero,
.cb-listing-hero,
.cb-pdp-hero,
.cb-trust-grid,
.cb-store-section,
.cb-breadcrumbs,
.cb-trust-strip,
.cb-store-footer {
  width: min(1280px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.cb-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 30px;
  align-items: center;
  min-height: 680px;
  padding: 56px 0;
}

.cb-home-hero-copy {
  display: grid;
  gap: 22px;
}

.cb-store-eyebrow {
  margin: 0;
  color: #256dff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cb-home-hero h1,
.cb-listing-hero h1,
.cb-pdp-title h1 {
  margin: 0;
  color: #141c38;
  font-weight: 900;
  letter-spacing: 0;
}

.cb-home-hero h1 {
  max-width: 620px;
  font-size: 58px;
  line-height: 1;
}

.cb-home-hero-copy > p:not(.cb-store-eyebrow),
.cb-listing-hero > p,
.cb-section-heading p,
.cb-pdp-title span,
.cb-product-card-copy span,
.cb-flagship-heading span,
.cb-empty-state p {
  color: #5e709e;
}

.cb-home-hero-actions,
.cb-flagship-actions,
.cb-pdp-secondary-actions,
.cb-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cb-primary-link,
.cb-secondary-link,
.cb-flagship-actions a,
.cb-flagship-actions button,
.cb-card-actions button,
.cb-pdp-secondary-actions a,
.cb-primary-submit,
.cb-listing-search button,
.cb-compare-drawer form button,
.cb-compare-drawer li button,
.cb-category-rail a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 14px;
  border: 1px solid #c7dbff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.cb-primary-link,
.cb-primary-submit,
.cb-listing-search button,
.cb-compare-drawer form button {
  border-color: #256dff;
  background: #256dff;
  color: #fff;
}

.cb-secondary-link,
.cb-flagship-actions a,
.cb-flagship-actions button,
.cb-card-actions button,
.cb-pdp-secondary-actions a,
.cb-category-rail a {
  background: #fff;
  color: #256dff;
}

.cb-primary-submit:disabled,
.cb-card-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.cb-home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 0;
}

.cb-home-metrics div {
  border-left: 2px solid #bfd4f8;
  padding-left: 12px;
}

.cb-home-metrics dt {
  color: #141c38;
  font-size: 24px;
  font-weight: 900;
}

.cb-home-metrics dd {
  margin: 2px 0 0;
  color: #5e709e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cb-flagship-panel,
.cb-listing-hero,
.cb-store-product-card,
.cb-purchase-panel,
.cb-pdp-media,
.cb-store-section,
.cb-empty-state,
.cb-trust-grid article,
.cb-lab-reports,
.cb-compare-drawer,
.cb-social-proof,
.cb-pdp-report {
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgb(20 87 255 / 8%), 0 8px 18px rgb(13 41 87 / 6%);
}

.cb-flagship-panel {
  display: grid;
  gap: 20px;
  min-height: 460px;
  padding: 22px;
}

.cb-flagship-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cb-flagship-heading p,
.cb-product-card-copy p,
.cb-pdp-title p {
  margin: 0 0 4px;
  color: #256dff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cb-flagship-heading h2,
.cb-product-card-copy h3,
.cb-section-heading h2 {
  margin: 0;
  color: #141c38;
}

.cb-chromatogram {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  background: #eef4ff;
}

.cb-chromatogram svg {
  width: 100%;
  height: 100%;
  min-height: 230px;
}

.cb-chromatogram path:first-child {
  fill: rgb(37 109 255 / 12%);
}

.cb-chromatogram path:last-child {
  fill: none;
  stroke: #256dff;
  stroke-width: 2;
}

.cb-chromatogram span {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #5e709e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cb-store-product-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  line-height: 1;
  overflow: hidden;
  padding: 8px;
}

.cb-store-product-mark strong,
.cb-store-product-mark em {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  line-height: 1.05;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cb-store-product-mark .is-long-code {
  font-size: 0.72em;
}

.cb-store-product-mark-lg {
  width: 74px;
  height: 74px;
  font-size: 18px;
}

.cb-store-product-mark-xl {
  width: 160px;
  height: 160px;
  font-size: 34px;
}

.cb-store-product-mark-sm {
  width: 38px;
  height: 38px;
  font-size: 11px;
}

.cb-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 12px 0 28px;
}

.cb-trust-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.cb-trust-grid svg,
.cb-purchase-facts svg,
.cb-trust-strip svg {
  color: #0dbd6e;
}

.cb-store-section {
  margin-top: 24px;
  padding: 24px;
}

.cb-section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.cb-section-heading h2 {
  font-size: 26px;
}

.cb-category-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cb-category-rail a {
  justify-content: space-between;
  min-width: 0;
}

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

.cb-store-product-card {
  display: grid;
  grid-template-rows: auto minmax(116px, 1fr) auto;
  gap: 14px;
  min-width: 0;
  padding: 14px;
}

.cb-product-card-visual {
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  background: #eef4ff;
}

.cb-product-card-copy {
  min-width: 0;
}

.cb-product-card-copy h3 {
  font-size: 17px;
  line-height: 1.2;
}

.cb-product-card-copy span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
}

.cb-product-card-footer {
  display: grid;
  gap: 12px;
}

.cb-store-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  color: #141c38;
}

.cb-store-price strong {
  font-size: 18px;
}

.cb-store-price del {
  color: #7d8fb8;
  font-size: 13px;
}

.cb-card-actions {
  justify-content: space-between;
}

.cb-card-actions form {
  flex: 1;
}

.cb-card-actions form button {
  width: 100%;
}

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

.cb-report-list a {
  display: flex;
  min-width: 0;
  gap: 10px;
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  padding: 14px;
  background: #f4f9ff;
}

.cb-report-list strong,
.cb-report-list em {
  display: block;
}

.cb-report-list em {
  margin-top: 4px;
  color: #5e709e;
  font-style: normal;
  font-size: 12px;
}

.cb-social-proof {
  margin-bottom: 32px;
}

.cb-listing-hero {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 32px;
}

.cb-listing-hero h1,
.cb-pdp-title h1 {
  font-size: 42px;
  line-height: 1.05;
}

.cb-listing-search {
  max-width: 620px;
  min-height: 46px;
  padding: 0 8px 0 14px;
}

.cb-listing-search button {
  min-height: 34px;
}

.cb-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  margin-top: 16px;
  color: #5e709e;
  font-size: 13px;
  font-weight: 750;
}

.cb-breadcrumbs a,
.cb-breadcrumbs span {
  color: inherit;
}

.cb-pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.cb-pdp-media,
.cb-purchase-panel {
  padding: 18px;
}

.cb-pdp-main-visual {
  display: grid;
  min-height: 560px;
  place-items: center;
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  background: linear-gradient(180deg, #f4f9ff 0%, #eef4ff 100%);
}

.cb-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.cb-pdp-thumbs button {
  display: grid;
  min-height: 90px;
  place-items: center;
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  background: #fff;
  color: #5e709e;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.cb-purchase-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 18px;
}

.cb-pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cb-pdp-badges span {
  border: 1px solid #b6ebd3;
  border-radius: 999px;
  padding: 6px 10px;
  background: #e6faf1;
  color: #0a8f58;
  font-size: 12px;
  font-weight: 850;
}

.cb-pdp-cart-form {
  display: grid;
  gap: 12px;
}

.cb-qty-stepper {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid #c7dbff;
  border-radius: 8px;
  background: #fff;
}

.cb-qty-stepper button,
.cb-qty-stepper input {
  border: 0;
  background: transparent;
  color: #141c38;
  font: inherit;
  font-weight: 850;
  text-align: center;
}

.cb-qty-stepper button {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cb-primary-submit {
  min-height: 48px;
}

.cb-pdp-secondary-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cb-pdp-secondary-actions a {
  min-width: 0;
  text-align: center;
}

.cb-purchase-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5e709e;
  font-size: 13px;
}

.cb-purchase-facts li,
.cb-trust-strip span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cb-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  padding: 14px;
  background: #f4f9ff;
  color: #5e709e;
  font-size: 13px;
  font-weight: 800;
}

.cb-spec-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.cb-spec-matrix div {
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  padding: 14px;
  background: #f4f9ff;
}

.cb-spec-matrix dt {
  color: #5e709e;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cb-spec-matrix dd {
  margin: 5px 0 0;
  color: #141c38;
  font-weight: 850;
}

.cb-pdp-report {
  display: grid;
  gap: 12px;
}

.cb-pdp-report a {
  justify-self: start;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid #c7dbff;
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: #256dff;
  font-weight: 800;
}

.cb-empty-state {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  text-align: center;
}

.cb-empty-state h2 {
  margin: 0;
}

.cb-compare-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(360px, calc(100vw - 36px));
  display: grid;
  gap: 12px;
  padding: 14px;
}

.cb-compare-drawer[data-compare-count="0"] {
  width: auto;
  min-width: 178px;
  padding: 10px 12px;
}

.cb-compare-drawer[data-compare-count="0"] p {
  display: none;
}

.cb-compare-drawer > div,
.cb-compare-drawer li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cb-compare-drawer > div span {
  margin-left: auto;
  color: #5e709e;
  font-size: 12px;
  font-weight: 800;
}

.cb-compare-drawer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cb-compare-drawer li {
  min-width: 0;
  border: 1px solid #d7e4f8;
  border-radius: 8px;
  padding: 8px;
  background: #f4f9ff;
}

.cb-compare-drawer li span:nth-child(2) {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.cb-compare-drawer li button {
  min-height: 32px;
  padding: 0 10px;
  background: #fff;
  color: #5e709e;
}

.cb-store-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  align-items: center;
  margin-top: 40px;
  color: #5e709e;
  font-size: 13px;
}

.coming-soon-main {
  width: 100%;
  min-height: 100vh;
  display: block;
  margin: 0;
  background:
    radial-gradient(circle at 72% 12%, rgb(47 123 255 / 24%), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 48%, #ffffff 100%);
}

.coming-soon-shell {
  width: 100%;
  min-width: 0;
  color: var(--olympus-text-dark);
}

.coming-soon-trust-strip {
  width: 100%;
  background: linear-gradient(90deg, var(--olympus-blue-900), var(--olympus-blue-700), var(--olympus-blue-900));
  color: #fff;
}

.coming-soon-strip-inner {
  width: min(1180px, calc(100% - 64px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.coming-soon-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: rgb(255 255 255 / 92%);
}

.coming-soon-signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--olympus-verified);
  box-shadow: 0 0 0 3px rgb(0 184 107 / 18%);
}

.coming-soon-header {
  width: min(1180px, calc(100% - 64px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.coming-soon-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--olympus-blue-900);
  text-decoration: none;
  white-space: nowrap;
}

.coming-soon-logo-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgb(37 109 255 / 32%);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, var(--olympus-soft-blue-50));
  box-shadow: 0 14px 28px rgb(37 109 255 / 12%);
  padding: 7px;
}

.coming-soon-wordmark {
  display: grid;
  gap: 5px;
  color: var(--olympus-blue-900);
}

.coming-soon-wordmark-main {
  font-size: 19px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.coming-soon-wordmark-country {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--olympus-blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.coming-soon-wordmark-country::before,
.coming-soon-wordmark-country::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgb(37 109 255 / 8%), rgb(37 109 255 / 82%));
}

.coming-soon-wordmark-country::after {
  background: linear-gradient(90deg, rgb(37 109 255 / 82%), rgb(37 109 255 / 8%));
}

.coming-soon-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.coming-soon-nav a,
.coming-soon-header-cta,
.coming-soon-primary-link,
.coming-soon-secondary-link {
  text-decoration: none;
}

.coming-soon-nav a {
  color: var(--olympus-blue-900);
  font-size: 13px;
  font-weight: 750;
}

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

.coming-soon-status-pill {
  min-height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 8px;
  background: rgb(255 255 255 / 82%);
  color: var(--olympus-blue-900);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 850;
}

.coming-soon-status-pill strong {
  color: var(--olympus-verified);
  font-size: 11px;
  font-weight: 800;
}

.coming-soon-header-cta,
.coming-soon-primary-link,
.coming-soon-secondary-link,
.coming-soon-email-row button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.coming-soon-header-cta::after,
.coming-soon-primary-link::after,
.coming-soon-secondary-link::after,
.coming-soon-email-row button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0.28;
  transform: skewX(-32deg);
}

.coming-soon-header-cta,
.coming-soon-primary-link {
  border: 1px solid rgb(255 255 255 / 24%);
  background: linear-gradient(135deg, var(--olympus-blue-600), var(--olympus-blue-700));
  color: #fff;
  box-shadow: 0 12px 26px rgb(37 109 255 / 24%);
}

.coming-soon-secondary-link {
  border: 1px solid rgb(37 109 255 / 28%);
  background: rgb(255 255 255 / 76%);
  color: var(--olympus-blue-700);
}

.coming-soon-header-cta:hover,
.coming-soon-primary-link:hover,
.coming-soon-email-row button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgb(37 109 255 / 30%);
}

.coming-soon-secondary-link:hover {
  border-color: rgb(37 109 255 / 52%);
  background: #fff;
}

.coming-soon-hero,
.coming-soon-trust-grid,
.coming-soon-section,
.coming-soon-rebuild {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.coming-soon-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 32px 0 22px;
  overflow: hidden;
}

.coming-soon-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 16px 0 28px;
}

.coming-soon-announcement {
  width: fit-content;
  margin: 0 0 20px;
  border: 1px solid rgb(37 109 255 / 22%);
  border-radius: 999px;
  background: rgb(37 109 255 / 10%);
  color: var(--olympus-blue-700);
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coming-soon-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--olympus-text-dark);
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: 0;
}

.coming-soon-support {
  max-width: 590px;
  margin-top: 20px;
  color: var(--olympus-text-muted);
  font-size: 16px;
  line-height: 1.58;
}

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

.coming-soon-system-visual {
  min-width: 0;
  position: relative;
  isolation: isolate;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 14%, rgb(255 255 255 / 34%), transparent 30%),
    linear-gradient(135deg, var(--olympus-blue-600), var(--olympus-blue-800) 48%, var(--olympus-blue-900));
  padding: 18px;
  box-shadow: 0 30px 70px rgb(11 30 85 / 24%);
}

.coming-soon-system-visual::before {
  content: "";
  position: absolute;
  inset: 22px 18px auto auto;
  width: 180px;
  height: 180px;
  z-index: -1;
  background: linear-gradient(135deg, rgb(255 255 255 / 24%), rgb(255 255 255 / 4%));
  clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
}

.coming-soon-dashboard-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.25fr;
  grid-template-rows: 140px 190px 140px;
  gap: 12px;
}

.coming-soon-system-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 8px;
  background: rgb(255 255 255 / 12%);
  color: #fff;
  padding: 16px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%);
}

.coming-soon-system-card p {
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.coming-soon-system-card strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.12;
}

.coming-soon-system-card > span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  border-radius: 999px;
  background: rgb(0 184 107 / 20%);
  color: #d7ffe9;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 850;
}

.coming-soon-network-card {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.coming-soon-compound-card {
  grid-column: 1 / span 2;
}

.coming-soon-map-card {
  grid-column: 1 / span 2;
}

.coming-soon-telemetry-card {
  grid-column: 3;
}

.coming-soon-line-chart {
  position: absolute;
  inset: auto 18px 20px 18px;
  height: 56px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.coming-soon-line-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #fff, var(--olympus-blue-500));
}

.coming-soon-line-chart span:nth-child(1) {
  height: 34%;
}

.coming-soon-line-chart span:nth-child(2) {
  height: 62%;
}

.coming-soon-line-chart span:nth-child(3) {
  height: 48%;
}

.coming-soon-line-chart span:nth-child(4) {
  height: 70%;
}

.coming-soon-line-chart span:nth-child(5) {
  height: 88%;
}

.coming-soon-network {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.coming-soon-network span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 26px;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  font-size: 28px;
  font-weight: 850;
}

.coming-soon-network i {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 999px;
  background: radial-gradient(circle, #fff 18%, var(--olympus-blue-500) 20%, var(--olympus-blue-700));
}

.coming-soon-network i:nth-child(2) {
  top: 78px;
  left: 56px;
}

.coming-soon-network i:nth-child(3) {
  top: 78px;
  right: 56px;
}

.coming-soon-network i:nth-child(4) {
  bottom: 54px;
  left: 78px;
}

.coming-soon-network i:nth-child(5) {
  bottom: 54px;
  right: 78px;
}

.coming-soon-molecule {
  min-height: 104px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.coming-soon-molecule i {
  width: 34px;
  height: 34px;
  border: 2px solid rgb(255 255 255 / 82%);
  border-radius: 999px;
  box-shadow: 18px 0 0 -15px #fff;
}

.coming-soon-world-grid {
  height: 92px;
  margin-top: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 50%, rgb(198 225 255 / 48%) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 42%, rgb(198 225 255 / 40%) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 52%, rgb(198 225 255 / 40%) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 38%, rgb(198 225 255 / 44%) 0 1px, transparent 2px),
    linear-gradient(90deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 3%));
  background-color: rgb(255 255 255 / 5%);
  background-size: 30px 22px, 32px 24px, 28px 20px, 34px 26px, auto;
}

.coming-soon-telemetry-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  padding-top: 14px;
  margin-top: 14px;
}

.coming-soon-telemetry-row span {
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  font-weight: 750;
}

.coming-soon-telemetry-row strong {
  margin: 0;
  font-size: 18px;
}

.coming-soon-signup {
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-top: 22px;
  border: 1px solid rgb(215 228 248 / 92%);
  border-radius: 8px;
  background: rgb(255 255 255 / 92%);
  padding: 20px;
  box-shadow: 0 20px 48px rgb(11 30 85 / 12%);
}

.coming-soon-form-title {
  margin: 0;
  color: var(--olympus-text-dark);
  font-size: 22px;
  font-weight: 850;
}

.coming-soon-form-support {
  margin-top: 8px;
  color: var(--olympus-text-muted);
  font-size: 14px;
}

.coming-soon-email-label {
  margin-top: 24px;
  color: var(--olympus-blue-900);
  font-size: 12px;
  font-weight: 850;
}

.coming-soon-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 10px;
}

.coming-soon-email-row input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 8px;
  background: #fff;
  color: var(--olympus-text-dark);
  padding: 0 15px;
  font: inherit;
  font-size: 14px;
}

.coming-soon-email-row button {
  min-height: 54px;
  min-width: 184px;
  border: 0;
  background: linear-gradient(135deg, var(--olympus-blue-600), var(--olympus-blue-700));
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.coming-soon-email-row input:focus-visible,
.coming-soon-email-row button:focus-visible {
  outline: 3px solid rgb(125 102 255 / 42%);
  outline-offset: 3px;
}

.coming-soon-email-row button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.coming-soon-privacy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: var(--olympus-text-muted);
  font-size: 12px;
}

.coming-soon-status {
  min-height: 22px;
  margin-top: 16px;
  color: var(--olympus-text-muted);
  font-size: 13px;
  font-weight: 750;
}

.coming-soon-status.is-mock,
.coming-soon-status.is-success,
.coming-soon-status.is-queued {
  color: var(--olympus-verified);
}

.coming-soon-status.is-pending {
  color: var(--olympus-blue-700);
}

.coming-soon-status.is-validation_failed,
.coming-soon-status.is-error,
.coming-soon-status.is-unsupported {
  color: var(--olympus-blue-800);
}

.coming-soon-email-row input[aria-invalid="true"] {
  border-color: var(--olympus-blue-800);
  box-shadow: 0 0 0 3px rgb(18 60 149 / 12%);
}

.coming-soon-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.coming-soon-trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.coming-soon-trust-card,
.coming-soon-module-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgb(11 30 85 / 6%);
}

.coming-soon-trust-card::before,
.coming-soon-module-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgb(37 109 255 / 14%), transparent 64%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.coming-soon-trust-card {
  min-height: 132px;
  padding: 18px;
}

.coming-soon-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--olympus-soft-blue-100);
  color: var(--olympus-blue-700);
  font-size: 11px;
  font-weight: 850;
}

.coming-soon-trust-card h2 {
  margin-top: 14px;
  color: var(--olympus-blue-900);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
}

.coming-soon-trust-card p {
  margin-top: 7px;
  color: var(--olympus-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.coming-soon-section {
  padding: 62px 0 0;
}

.coming-soon-section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.coming-soon-section-heading p,
.coming-soon-rebuild-copy p {
  color: var(--olympus-blue-700);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.coming-soon-section-heading h2,
.coming-soon-rebuild-copy h2 {
  margin-top: 9px;
  color: var(--olympus-blue-900);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 850;
}

.coming-soon-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.coming-soon-module-card {
  min-height: 154px;
  padding: 22px;
}

.coming-soon-module-card span {
  color: var(--olympus-blue-600);
  font-size: 12px;
  font-weight: 850;
}

.coming-soon-module-card h3 {
  margin-top: 12px;
  color: var(--olympus-blue-900);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 850;
}

.coming-soon-module-card p {
  margin-top: 9px;
  color: var(--olympus-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.coming-soon-rebuild {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 56px;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 8px;
  background: rgb(255 255 255 / 82%);
  padding: 26px;
  box-shadow: 0 18px 42px rgb(11 30 85 / 7%);
}

.coming-soon-rebuild-copy span {
  display: block;
  margin-top: 10px;
  color: var(--olympus-text-muted);
  font-size: 13px;
}

.coming-soon-progress-list {
  display: grid;
  gap: 14px;
}

.coming-soon-progress-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(120px, 1.2fr) 44px;
  gap: 14px;
  align-items: center;
}

.coming-soon-progress-row strong {
  display: block;
  color: var(--olympus-blue-900);
  font-size: 13px;
}

.coming-soon-progress-row span {
  color: var(--olympus-text-muted);
  font-size: 12px;
}

.coming-soon-progress-track {
  height: 8px;
  border-radius: 999px;
  background: #e4edff;
  overflow: hidden;
}

.coming-soon-progress-track i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--olympus-blue-600), var(--olympus-indigo-500));
}

.coming-soon-progress-row b {
  color: var(--olympus-blue-700);
  font-size: 13px;
  text-align: right;
}

.home-quick-commerce {
  width: min(1180px, calc(100% - 64px));
  margin: 52px auto 0;
  padding: 0;
}

.home-quick-commerce-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 20px;
  align-items: end;
}

.home-quick-commerce-heading p {
  margin: 0;
  color: var(--olympus-blue-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.home-quick-commerce-heading h2 {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--olympus-blue-900);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 850;
}

.home-quick-commerce-search {
  display: grid;
  gap: 7px;
  color: var(--olympus-blue-900);
  font-size: 12px;
  font-weight: 850;
}

.home-quick-commerce-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 8px;
  background: #fff;
  color: var(--olympus-text-dark);
  padding: 0 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
}

.home-quick-commerce-search input:focus-visible,
.home-quick-commerce-filters button:focus-visible,
.home-basket-icon-link:focus-visible,
.home-product-carousel-actions button:focus-visible,
.home-product-quick-add button:focus-visible,
.home-product-quantity input:focus-visible,
.home-product-menu:focus-visible {
  outline: 3px solid rgb(125 102 255 / 40%);
  outline-offset: 3px;
}

.home-quick-commerce-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.home-quick-commerce-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.home-quick-commerce-filters button,
.home-basket-icon-link {
  min-height: 32px;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 999px;
  background: #fff;
  color: var(--olympus-blue-800);
  padding: 0 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.home-quick-commerce-filters button[aria-pressed="true"] {
  border-color: var(--olympus-blue-600);
  background: var(--olympus-blue-600);
  color: #fff;
}

.home-basket-icon-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 8px 0 11px;
  border-color: rgb(37 109 255 / 38%);
  background: linear-gradient(180deg, #fff, var(--olympus-soft-blue-50));
  box-shadow: 0 8px 18px rgb(11 30 85 / 5%);
}

.home-basket-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--olympus-blue-600);
}

.home-basket-icon svg {
  width: 18px;
  height: 18px;
}

.home-basket-count {
  min-width: 20px;
  min-height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--olympus-blue-600);
  color: #fff;
  font-size: 10px;
}

.home-product-carousel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
  color: var(--olympus-text-muted);
  font-size: 11px;
  font-weight: 800;
}

.home-product-carousel-actions button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 999px;
  background: #fff;
  color: var(--olympus-blue-700);
  font: inherit;
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.home-quick-commerce-layout {
  display: block;
  align-items: start;
  margin-top: 10px;
}

.home-product-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgb(37 109 255 / 38%) transparent;
  scrollbar-width: thin;
}

.home-product-carousel::-webkit-scrollbar {
  height: 8px;
}

.home-product-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgb(37 109 255 / 34%);
}

.home-product-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.home-product-grid {
  display: grid;
  grid-template-rows: repeat(2, minmax(116px, auto));
  grid-auto-flow: column;
  gap: 10px;
  min-width: 0;
}

.home-product-card {
  display: grid;
  grid-column: var(--home-card-column);
  grid-row: var(--home-card-row);
  grid-template-columns: 64px minmax(0, 1fr) minmax(92px, auto);
  grid-template-rows: auto auto;
  gap: 9px 14px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgb(215 228 248 / 96%);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 8px 18px rgb(11 30 85 / 5%);
  scroll-snap-align: start;
}

.home-product-card.is-filtered-out {
  display: none;
}

.home-product-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.home-product-rank,
.home-product-sales,
.home-product-badges span,
.home-product-code-chip,
.home-product-stock-chip {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 7px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.home-product-rank {
  border: 1px solid var(--olympus-border-blue);
  background: var(--olympus-soft-blue-50);
  color: var(--olympus-blue-800);
}

.home-product-sales,
.home-product-badges span,
.home-product-code-chip,
.home-product-stock-chip {
  border: 1px solid var(--olympus-border-blue);
  background: #fff;
  color: var(--olympus-blue-800);
}

.home-product-thumbnail {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home-product-copy {
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

.home-product-card h3 {
  margin: 7px 0 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--olympus-text-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 850;
  overflow-wrap: anywhere;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.home-product-card-side {
  min-width: 0;
  grid-column: 3;
  grid-row: 1;
  display: grid;
  justify-items: end;
  gap: 6px;
}

.home-product-pricing {
  display: grid;
  justify-items: end;
  gap: 8px;
  white-space: nowrap;
}

.home-product-pricing strong {
  color: var(--olympus-blue-900);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.home-product-pricing span {
  color: var(--olympus-text-muted);
  font-size: 12px;
  font-weight: 800;
  text-decoration: line-through;
}

.home-product-code-chip {
  width: fit-content;
  max-width: 150px;
  margin-top: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-product-stock-chip {
  color: var(--olympus-verified);
}

.home-product-menu {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--olympus-soft-blue-50);
  color: var(--olympus-blue-700);
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.home-product-quick-add {
  grid-column: 2 / 4;
  grid-row: 2;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 8px;
  align-self: end;
}

.home-product-quantity {
  min-height: 38px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  overflow: hidden;
  border: 1px solid var(--olympus-border-blue);
  border-radius: 8px;
  background: #fff;
}

.home-product-quantity button,
.home-product-submit {
  border: 0;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.home-product-quantity button {
  background: var(--olympus-soft-blue-100);
  color: var(--olympus-blue-800);
}

.home-product-quantity input {
  min-width: 0;
  border: 0;
  border-left: 1px solid var(--olympus-border-blue);
  border-right: 1px solid var(--olympus-border-blue);
  color: var(--olympus-text-dark);
  text-align: center;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.home-product-submit {
  min-height: 38px;
  border-radius: 8px;
  background: var(--olympus-blue-600);
  color: #fff;
  font-size: 12px;
}

.home-quick-commerce-empty {
  grid-column: 1 / span 3;
  border: 1px dashed var(--olympus-border-blue);
  border-radius: 8px;
  background: #fff;
  color: var(--olympus-text-muted);
  padding: 18px;
  font-size: 13px;
  font-weight: 750;
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-header-cta,
  .coming-soon-primary-link,
  .coming-soon-secondary-link,
  .coming-soon-email-row button,
  .coming-soon-trust-card,
  .coming-soon-module-card {
    transition: none;
  }
}

@media (max-width: 980px) {
  .coming-soon-strip-inner,
  .coming-soon-header,
  .coming-soon-hero,
  .coming-soon-trust-grid,
  .coming-soon-section,
  .coming-soon-rebuild,
  .home-quick-commerce {
    width: min(100% - 40px, 1180px);
  }

  .coming-soon-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 12px 0;
  }

  .coming-soon-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .coming-soon-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 26px;
    padding-top: 34px;
  }

  .coming-soon-copy {
    padding: 8px 0 0;
  }

  .coming-soon-copy h1 {
    max-width: 760px;
    font-size: 48px;
  }

  .coming-soon-support {
    max-width: 760px;
  }

  .coming-soon-system-visual {
    max-width: 760px;
  }

  .coming-soon-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coming-soon-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-quick-commerce-heading {
    grid-template-columns: 1fr;
  }

  .home-product-grid {
    grid-template-columns: repeat(var(--home-carousel-columns), calc((100% - 20px) / var(--home-carousel-columns)));
  }

  .coming-soon-rebuild {
    grid-template-columns: 1fr;
  }

  .cb-store-nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 10px 18px;
  }

  .cb-store-nav nav {
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cb-store-search {
    min-width: 0;
  }

  .cb-home-hero,
  .cb-pdp-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cb-home-hero h1,
  .cb-listing-hero h1,
  .cb-pdp-title h1 {
    font-size: 42px;
  }

  .cb-product-grid,
  .cb-category-rail,
  .cb-spec-matrix,
  .cb-report-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cb-purchase-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .coming-soon-strip-inner,
  .coming-soon-header,
  .coming-soon-hero,
  .coming-soon-trust-grid,
  .coming-soon-section,
  .coming-soon-rebuild,
  .home-quick-commerce {
    width: min(100% - 24px, 1180px);
  }

  .coming-soon-strip-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    padding: 8px 0;
    row-gap: 7px;
  }

  .coming-soon-strip-inner span {
    font-size: 10px;
  }

  .coming-soon-header {
    min-height: 66px;
    grid-template-columns: 1fr;
  }

  .coming-soon-nav,
  .coming-soon-header-actions {
    display: none;
  }

  .coming-soon-copy {
    padding: 4px 0 0;
  }

  .coming-soon-copy h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .coming-soon-support {
    font-size: 14px;
    line-height: 1.58;
  }

  .coming-soon-hero-actions {
    flex-direction: column;
  }

  .coming-soon-email-row {
    grid-template-columns: 1fr;
  }

  .coming-soon-primary-link,
  .coming-soon-secondary-link,
  .coming-soon-email-row button {
    width: 100%;
    min-width: 0;
  }

  .coming-soon-signup {
    width: 100%;
    padding: 18px;
  }

  .coming-soon-system-visual {
    padding: 12px;
  }

  .coming-soon-dashboard-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .coming-soon-network-card,
  .coming-soon-compound-card,
  .coming-soon-map-card,
  .coming-soon-telemetry-card {
    grid-column: auto;
    grid-row: auto;
  }

  .coming-soon-network {
    min-height: 170px;
  }

  .coming-soon-line-chart {
    position: static;
    height: 48px;
    margin-top: 18px;
  }

  .coming-soon-trust-grid,
  .coming-soon-module-grid {
    grid-template-columns: 1fr;
  }

  .home-quick-commerce {
    margin-top: 24px;
  }

  .home-quick-commerce-heading {
    gap: 14px;
  }

  .home-quick-commerce-heading h2 {
    font-size: 24px;
  }

  .home-quick-commerce-controls {
    display: block;
  }

  .home-quick-commerce-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .home-quick-commerce-filters button,
  .home-basket-icon-link {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    justify-content: center;
    padding: 0 8px;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }

  .home-basket-icon-link {
    padding: 0 8px;
  }

  .home-product-carousel-actions {
    justify-content: space-between;
  }

  .home-quick-commerce-layout {
    display: block;
  }

  .home-product-carousel {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .home-product-grid {
    grid-template-columns: none !important;
    grid-template-rows: 1fr;
    grid-auto-columns: minmax(286px, 84vw);
    grid-auto-flow: column;
    width: max-content !important;
  }

  .home-product-card {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    min-height: 0;
    padding: 12px;
  }

  .home-product-thumbnail {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 6px;
  }

  .home-product-copy {
    grid-column: 2;
    grid-row: 1;
  }

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

  .home-product-card-side {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .home-product-menu {
    display: none;
  }

  .home-product-pricing {
    display: flex;
    align-items: baseline;
    justify-items: start;
  }

  .home-product-quick-add {
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .coming-soon-section-heading {
    text-align: left;
  }

  .coming-soon-section-heading h2,
  .coming-soon-rebuild-copy h2 {
    font-size: 26px;
  }

  .coming-soon-rebuild {
    padding: 20px;
  }

  .coming-soon-progress-row {
    grid-template-columns: 1fr 44px;
  }

  .coming-soon-progress-track {
    grid-column: 1 / -1;
    order: 3;
  }

  .cb-top-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .cb-store-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cb-store-search {
    grid-column: 1 / -1;
    order: 2;
  }

  .cb-home-hero,
  .cb-listing-hero,
  .cb-pdp-hero,
  .cb-trust-grid,
  .cb-store-section,
  .cb-breadcrumbs,
  .cb-trust-strip,
  .cb-store-footer {
    width: min(100% - 24px, 1280px);
  }

  .cb-home-hero {
    padding: 28px 0;
  }

  .cb-home-hero h1,
  .cb-listing-hero h1,
  .cb-pdp-title h1 {
    font-size: 34px;
  }

  .cb-home-metrics,
  .cb-trust-grid,
  .cb-product-grid,
  .cb-category-rail,
  .cb-report-list,
  .cb-spec-matrix,
  .cb-trust-strip,
  .cb-pdp-secondary-actions {
    grid-template-columns: 1fr;
  }

  .cb-pdp-main-visual {
    min-height: 360px;
  }

  .cb-pdp-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cb-store-product-mark-xl {
    width: 120px;
    height: 120px;
    font-size: 26px;
  }
}
