:root {
  --bg: #f7f8fb;
  --card: rgba(255, 255, 255, 0.94);
  --ink: #172033;
  --muted: #667085;
  --line: #e6e9f0;
  --blue: #2477e6;
  --cyan: #25b9d7;
  --green: #44cf7a;
  --orange: #ff9d2e;
  --danger: #c13b4a;
  --shadow: 0 20px 60px rgba(23, 32, 51, .08);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
}

body [hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
  font-style: normal;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 157, 46, .16), transparent 28%),
    radial-gradient(circle at top right, rgba(68, 207, 122, .15), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.checkpay-shell {
  height: 100vh;
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr) 340px;
  gap: 14px;
  padding: 14px;
}

.checkpay-sidebar,
.checkpay-detail .panel,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.checkpay-sidebar {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  letter-spacing: -.04em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

nav {
  display: grid;
  gap: 7px;
}

nav a,
nav button {
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  padding: 11px 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

nav .active,
nav button:hover,
nav a:hover {
  background: #eef5ff;
  color: var(--blue);
}

.role-card {
  margin-top: auto;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(140deg, #101828, #1d2b4f);
  color: #fff;
}

.role-card small,
.role-card p {
  color: rgba(255, 255, 255, .72);
}

.role-card select {
  width: 100%;
  margin: 8px 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding: 10px;
}

.role-card option {
  color: #101828;
}

.role-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.checkpay-main,
.checkpay-detail {
  display: grid;
  gap: 14px;
  min-height: 0;
  overflow: hidden;
}

.checkpay-main {
  grid-template-rows: auto 1fr auto;
}

.checkpay-detail {
  grid-template-rows: 1fr auto;
}

.hero {
  padding: 18px 20px;
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(130deg, rgba(36, 119, 230, .94), rgba(37, 185, 215, .88) 44%, rgba(68, 207, 122, .86)),
    radial-gradient(circle at bottom right, rgba(255, 157, 46, .6), transparent 38%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}

.hero small {
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .78;
}

.hero h1 {
  margin: 7px 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.055em;
}

.hero p {
  margin: 0;
  max-width: 700px;
  opacity: .86;
  font-size: 13px;
}

.status-stack {
  display: grid;
  gap: 8px;
}

.status-pill {
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
}

.sandbox-badge {
  border-radius: 999px;
  background: rgba(255, 157, 46, .14);
  color: #9a5b13;
  border: 1px solid rgba(255, 157, 46, .35);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sandbox-warning {
  border: 1px dashed rgba(255, 157, 46, .65);
  background: rgba(255, 246, 235, .9);
  color: #8a4b0f;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.sandbox-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  border-radius: 20px;
  padding: 14px;
}

.sandbox-card h3 {
  margin: 0 0 4px;
}

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

.sandbox-actions button {
  flex: 1 1 150px;
}

.point-admin-panel {
  min-height: 0;
  overflow: auto;
}

.point-admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.point-admin-actions select {
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
}

.point-admin-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.point-admin-summary span {
  border: 1px solid rgba(36, 119, 230, .12);
  border-radius: 999px;
  background: rgba(238, 245, 255, .84);
  padding: 8px 10px;
}

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

.point-admin-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  padding: 14px;
}

.panel-head.slim {
  margin: 0;
}

.panel-head.slim h3 {
  margin: 2px 0 0;
}

.point-admin-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.point-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
}

.point-admin-row.empty {
  grid-template-columns: 1fr;
  color: var(--muted);
}

.point-admin-row b,
.point-admin-row span,
.point-admin-row small {
  display: block;
  overflow-wrap: anywhere;
}

.point-admin-row span,
.point-admin-row small {
  color: var(--muted);
  font-size: 12px;
}

.point-admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.point-admin-form button {
  min-height: 40px;
}

.panel {
  padding: 16px;
  min-height: 0;
  overflow: auto;
}

.panel.muted {
  background: rgba(255, 255, 255, .74);
}

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

.panel h2,
.panel h3 {
  margin: 4px 0 0;
  letter-spacing: -.04em;
}

.panel small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
}

.search-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

button {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
  cursor: pointer;
  font-weight: 700;
}

.primary {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  align-self: end;
}

.secondary {
  background: #f8fbff;
  border-color: rgba(36, 119, 230, .18);
  color: var(--blue);
  align-self: end;
}

.text-danger {
  border: 0;
  background: transparent;
  color: var(--danger);
  padding: 6px 0;
  text-align: left;
}

.results-placeholder {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed #c9d5e7;
  border-radius: 16px;
  color: var(--muted);
  background: #fbfdff;
  font-size: 13px;
}

.results {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.payment-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.payment-row.empty {
  grid-template-columns: 1fr;
  cursor: default;
}

.payment-row:hover {
  border-color: rgba(36, 119, 230, .35);
  box-shadow: 0 10px 30px rgba(36, 119, 230, .08);
}

.provider-chip {
  min-width: 104px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.provider-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

.provider-brand img {
  display: block;
  width: auto;
  max-width: 116px;
  max-height: 26px;
  object-fit: contain;
}

.provider-brand.compact {
  min-height: 22px;
}

.provider-brand.compact img {
  max-width: 94px;
  max-height: 20px;
}

.payment-row strong {
  display: block;
}

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

.amount {
  font-weight: 800;
  color: var(--blue);
}

.status {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 11px;
}

.sticky {
  min-height: 0;
  overflow: auto;
}

.ticket-panel {
  display: flex;
  flex-direction: column;
  color: #111827;
}

#selectedTitle {
  display: grid;
  gap: 8px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: #0f172a;
}

dl {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 9px 12px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.28;
}

dt {
  color: #344054;
  font-weight: 900;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #111827;
  font-weight: 750;
}

.related-events {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.related-events article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #fbfdff;
}

.related-events span,
.related-events small {
  display: block;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.related-events b {
  display: block;
  margin: 3px 0;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

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

.actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.restricted-panel {
  min-height: auto;
}

.restricted-panel p {
  color: var(--muted);
  font-size: 13px;
}

pre {
  overflow: auto;
  padding: 12px;
  border-radius: 14px;
  background: #101828;
  color: #d1e9ff;
}

.checkout-provider-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-self: end;
}

.provider-action {
  position: relative;
  min-height: 74px;
  color: var(--ink);
  border-color: rgba(36, 119, 230, .16);
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .04);
  overflow: hidden;
}

.provider-action.active {
  border: 1px solid rgba(36, 119, 230, .36);
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 14px 34px rgba(36, 119, 230, .12);
}

.provider-action.active::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--green));
}

.provider-action span,
.provider-action small {
  display: block;
}

.provider-action-logo {
  display: block;
  width: auto;
  max-width: 124px;
  max-height: 30px;
  margin: 0 auto;
  object-fit: contain;
}

.provider-action-logo.stripe-logo {
  max-height: 24px;
}

.provider-action-logo.mercado-pago-logo {
  max-height: 32px;
}

.provider-action small {
  margin-top: 6px;
  color: inherit;
  opacity: .68;
  font-size: 10px;
  letter-spacing: .04em;
}

.provider-methods {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.provider-methods label {
  display: flex;
  width: auto;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f8fbff;
  color: var(--ink);
}

.provider-methods input {
  width: auto;
}

.point-options {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(160px, .9fr) minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 10px;
  border: 1px solid rgba(36, 119, 230, .16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(242, 249, 255, .9));
}

.point-options[hidden] {
  display: none;
}

.point-options .point-print {
  min-height: 40px;
}

.point-status-button {
  min-height: 40px;
  padding: 0 14px;
}

.technical-field {
  display: none;
}

.tax-note {
  grid-column: span 2;
  align-self: end;
  margin: 0;
  padding: 10px 12px;
  border: 1px dashed rgba(255, 157, 46, .45);
  border-radius: 14px;
  background: rgba(255, 247, 237, .76);
  color: #8a4b0f;
  font-size: 12px;
  line-height: 1.35;
}

.checkout-summary {
  grid-column: 1 / -1;
  align-self: end;
  min-height: 42px;
  padding: 11px 12px;
  border: 1px dashed #c9d5e7;
  border-radius: 14px;
  color: var(--muted);
  background: #fbfdff;
  font-size: 12px;
}

.signature-field {
  grid-column: span 2;
}

.point-help {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

/* gopayments v1.1: compact operational layout aligned with Bacanora bpay. */
.checkpay-shell {
  grid-template-columns: 220px minmax(0, 1fr) 324px;
  gap: 12px;
  padding: 12px;
}

.checkpay-sidebar {
  padding: 14px;
}

.brand {
  font-size: 18px;
}

nav a,
nav button {
  padding: 10px 11px;
}

.checkpay-main {
  grid-template-rows: auto minmax(0, 1fr);
}

.hero {
  padding: 14px 18px;
  border-radius: 22px;
}

.hero h1 {
  margin: 5px 0;
  font-size: clamp(21px, 2vw, 26px);
}

.hero p {
  font-size: 12px;
}

.status-pill {
  padding: 7px 10px;
}

.panel {
  padding: 14px;
}

.panel-head {
  margin-bottom: 12px;
}

.panel h2,
.panel h3 {
  font-size: 20px;
}

input,
select,
button {
  padding: 9px 10px;
}

.checkout-grid,
.search-grid {
  gap: 8px;
}

.provider-action {
  min-height: 58px;
}

.provider-action-logo {
  max-width: 112px;
}

.point-options {
  gap: 8px;
  border-radius: 16px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 9px;
  align-self: end;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.checkbox-field input {
  width: auto;
}

.loyalty-panel {
  min-height: 0;
}

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

.loyalty-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.loyalty-grid b,
.loyalty-grid span {
  display: block;
}

.loyalty-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.reports-panel {
  max-height: 230px;
}

.report-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.report-grid article,
.provider-report article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
}

.report-grid strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.04em;
}

.provider-report {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.provider-report b {
  display: inline-flex;
  margin-bottom: 4px;
}

.provider-report span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1180px) {
  body {
    height: auto;
    overflow: auto;
  }

  .checkpay-shell {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
  }

  .checkpay-main,
  .checkpay-detail {
    overflow: visible;
  }

  .search-grid,
  .checkout-grid,
  .report-grid,
  .point-options,
  .point-admin-grid,
  .point-admin-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hero,
  .panel-head {
    display: grid;
  }

  .search-grid,
  .checkout-grid,
  .report-grid,
  .checkout-provider-row,
  .point-options,
  .point-admin-grid,
  .point-admin-form,
  .payment-row {
    grid-template-columns: 1fr;
  }
}

/* gopayments visual system: stronger GBPay + partner checkout presence. */
body {
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 157, 46, .18), transparent 24rem),
    radial-gradient(circle at 86% 6%, rgba(68, 207, 122, .16), transparent 28rem),
    linear-gradient(135deg, #fffaf4 0%, #f6fbff 46%, #f4fff8 100%);
}

.brand {
  gap: 12px;
  font-size: 19px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(36, 119, 230, .18);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-color: rgba(255, 255, 255, .36);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 157, 46, .42), transparent 20rem),
    radial-gradient(circle at 84% 6%, rgba(68, 207, 122, .42), transparent 22rem),
    linear-gradient(132deg, #172033 0%, #2477e6 46%, #25b9d7 72%, #44cf7a 100%);
  box-shadow: 0 22px 66px rgba(36, 119, 230, .18);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -112px;
  width: 420px;
  height: 220px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.26), rgba(255,255,255,0));
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero small,
.hero p {
  color: rgba(255,255,255,.82);
}

.status-pill {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.checkout-provider-row {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
}

.provider-action {
  min-height: 96px;
  padding: 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(36,119,230,.28), rgba(37,185,215,.22), rgba(68,207,122,.2)) border-box;
  border: 1px solid transparent;
}

.provider-action.active {
  border-color: transparent;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff) padding-box,
    linear-gradient(135deg, var(--blue), var(--cyan), var(--green)) border-box;
  box-shadow: 0 18px 42px rgba(36, 119, 230, .16);
}

.provider-action.active::before {
  display: none;
}

.provider-action span {
  width: 100%;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
  font-weight: 760;
}

.provider-action small {
  margin: 0;
  width: 100%;
  max-width: 160px;
  white-space: normal;
  color: #667085;
  opacity: 1;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .035em;
}

.provider-action-logo {
  max-width: 164px;
  max-height: 44px;
}

.provider-action-logo.stripe-logo {
  max-width: 150px;
  max-height: 38px;
}

.provider-action-logo.mercado-pago-logo {
  max-width: 176px;
  max-height: 48px;
}

.provider-methods {
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
}

.provider-methods label {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(36,119,230,.12);
  background: #fff;
}

.provider-brand img,
.receipt-provider img {
  max-width: 158px;
  max-height: 38px;
  object-fit: contain;
}

.payment-row {
  grid-template-columns: minmax(128px, auto) minmax(0, 1fr) auto;
}

.payment-row .provider-chip {
  min-width: 140px;
  justify-content: center;
}

.primary {
  min-height: 44px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.22), transparent 44%),
    linear-gradient(135deg, var(--blue), var(--cyan), var(--green));
  box-shadow: 0 12px 30px rgba(36,119,230,.18);
}

@media (max-width: 860px) {
  .checkout-provider-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .checkout-provider-row {
    grid-template-columns: 1fr;
  }
}

/* Partner checkout stage: sober, brand-forward payment screens. */
body {
  background:
    linear-gradient(135deg, rgba(8, 18, 42, .92), rgba(11, 31, 66, .82) 48%, rgba(12, 54, 80, .86)),
    url("/assets/gopayments/brand/payments-stage-bg.jpg") center / cover fixed;
}

.payment-orbit {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(92vw, 560px);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(8, 18, 42, .54);
  box-shadow: 0 20px 58px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.payment-orbit-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 54px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.payment-orbit-item.gbpay {
  min-width: 42px;
  padding: 4px;
  background: linear-gradient(135deg, #2477e6, #25b9d7 54%, #44cf7a);
}

.payment-orbit-item img {
  display: block;
  width: auto;
  max-width: 116px;
  max-height: 25px;
  object-fit: contain;
}

.payment-orbit-item.gbpay img {
  width: 30px;
  height: 30px;
  max-height: none;
  border-radius: 50%;
}

.payment-orbit-item.clip {
  background: #ff4b00;
}

.payment-orbit-item.clip img {
  filter: none;
  max-height: 28px;
}

.checkpay-shell {
  padding-top: 76px;
}

.checkpay-sidebar,
.panel,
.checkpay-detail {
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 68px rgba(0,0,0,.16);
}

.hero {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 129, 40, .4), transparent 22rem),
    radial-gradient(circle at 84% 20%, rgba(0, 177, 234, .34), transparent 24rem),
    linear-gradient(135deg, #08122a, #102145 48%, #1f3b69);
}

.checkout-provider-row {
  grid-template-columns: repeat(auto-fit, minmax(182px, 1fr));
}

.provider-action {
  min-height: 88px;
  border: 0;
  color: #fff;
  background: #172033;
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
}

.provider-action[data-checkout-provider="stripe"] {
  background: linear-gradient(135deg, #635bff, #7a5cff);
}

.provider-action[data-checkout-provider="mercadopago"],
.provider-action[data-checkout-provider="mercadopago_point"] {
  background: linear-gradient(135deg, #03264c, #00b1ea);
}

.provider-action[data-checkout-provider="clip"] {
  background: linear-gradient(135deg, #ff4b00, #ff6a00);
}

.provider-action[data-checkout-provider="gofinancial"] {
  background: linear-gradient(135deg, #101828, #344054);
}

.provider-action.active {
  color: #fff;
  background: linear-gradient(135deg, #172033, #2477e6);
  box-shadow: 0 20px 48px rgba(36,119,230,.24), inset 0 0 0 2px rgba(255,255,255,.36);
}

.provider-action[data-checkout-provider="stripe"].active {
  background: linear-gradient(135deg, #4f46e5, #635bff);
}

.provider-action[data-checkout-provider="mercadopago"].active,
.provider-action[data-checkout-provider="mercadopago_point"].active {
  background: linear-gradient(135deg, #03264c, #00b1ea);
}

.provider-action[data-checkout-provider="clip"].active {
  background: linear-gradient(135deg, #d93b00, #ff4b00);
}

.provider-action span,
.provider-action small {
  color: #fff;
}

.provider-action small {
  opacity: .86;
}

.provider-action-logo {
  max-width: 156px;
  max-height: 34px;
}

.provider-action-logo.stripe-logo,
.provider-action-logo.mercado-pago-logo {
  filter: brightness(0) invert(1);
}

.provider-action-logo.clip-logo {
  max-width: 102px;
  max-height: 38px;
}

@media (max-width: 760px) {
  .payment-orbit {
    top: 8px;
    gap: 6px;
    padding: 6px;
  }

  .payment-orbit-item {
    height: 32px;
    min-width: 42px;
    padding: 4px 8px;
  }

  .payment-orbit-item img {
    max-width: 88px;
    max-height: 20px;
  }

  .checkpay-shell {
    padding-top: 58px;
  }
}
