/* ── Checkout Page ── */

.checkout-main {
  background: var(--color-surface);
  min-height: 100vh;
  padding: 3rem 0 5rem;
}

/* Breadcrumb */
.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}
.checkout-breadcrumb a { color: var(--color-muted); transition: color var(--transition); }
.checkout-breadcrumb a:hover { color: var(--color-black); }
.checkout-breadcrumb .crumb-sep { opacity: 0.4; }
.checkout-breadcrumb .crumb-active { color: var(--color-black); font-weight: 700; }

/* Two-column layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

/* ── LEFT: Form ── */
.checkout-form-col { min-width: 0; }

/* Steps indicator */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.checkout-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-right: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
  cursor: default;
}
.checkout-step:last-child { border-right: none; }
.checkout-step.is-active {
  background: var(--btn-primary-bg);
  color: var(--color-white);
}
.checkout-step.is-done {
  color: var(--color-black);
  background: var(--color-surface);
}
.checkout-step.is-done .step-num {
  background: #1a7f37;
  color: #fff;
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.checkout-step.is-active .step-num {
  background: rgba(255,255,255,0.25);
  color: var(--color-white);
}

/* Form panels */
.checkout-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: none;
}
.checkout-panel.is-active { display: block; }

.panel-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row.full { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.form-input, .form-select {
  padding: 0.75rem 1rem;
  font: 0.9rem var(--font);
  color: var(--color-black);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus {
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-input::placeholder { color: #bbb; }

/* Shipping options */
.shipping-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.shipping-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.shipping-option:hover { border-color: #aaa; }
.shipping-option.is-selected {
  border-color: var(--color-black);
  background: #fafafa;
}
.shipping-option input[type="radio"] { display: none; }
.shipping-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition);
}
.shipping-option.is-selected .shipping-radio {
  border-color: var(--color-black);
}
.shipping-option.is-selected .shipping-radio::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-black);
  border-radius: 50%;
}
.shipping-info { flex: 1; }
.shipping-name { font-size: 0.88rem; font-weight: 700; }

/* Payment method (card / crypto) */
.pay-method-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.pay-method-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.pay-method-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.pay-method-option:hover { border-color: #aaa; }
.pay-method-option.is-selected {
  border-color: var(--color-black);
  background: #fafafa;
}
.pay-method-option input[type="radio"] { display: none; }
.pay-method-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pay-method-option.is-selected .pay-method-radio {
  border-color: var(--color-black);
}
.pay-method-option.is-selected .pay-method-radio::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-black);
  border-radius: 50%;
}
.pay-method-copy { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.pay-method-name { font-size: 0.88rem; font-weight: 700; }
.pay-method-desc { font-size: 0.72rem; color: var(--color-muted); line-height: 1.35; }

.crypto-pay-box {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.1rem 1.15rem 1.2rem;
  background: #fafafa;
  margin-bottom: 0.25rem;
}
.crypto-pay-lead {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-black);
}
.crypto-pay-amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.crypto-pay-amount-label { font-size: 0.8rem; color: var(--color-muted); font-weight: 600; }
.crypto-pay-amount-value { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.crypto-how-it-works {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.crypto-how-title {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.crypto-how-steps {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--color-black);
}
.crypto-how-steps li { margin-bottom: 0.35rem; }
.crypto-how-steps li:last-child { margin-bottom: 0; }
.crypto-buyer-heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.form-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
}
.crypto-pay-hint {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: var(--color-muted);
  line-height: 1.4;
}
.crypto-confirm-label { margin-top: 1rem; }
@media (max-width: 700px) {
  .pay-method-options { grid-template-columns: 1fr; }
}
.shipping-eta  { font-size: 0.75rem; color: var(--color-muted); margin-top: 2px; }
.shipping-price { font-size: 0.9rem; font-weight: 700; }
.shipping-price.free { color: #1a7f37; }

/* Panel navigation buttons */
.panel-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.btn-back {
  background: none;
  border: none;
  font: 600 0.8rem var(--font);
  color: var(--color-muted);
  cursor: pointer;
  padding: 0;
  display: flex; align-items: center; gap: 0.35rem;
  transition: color var(--transition);
}
.btn-back:hover { color: var(--color-black); }

/* Saved address picker (signed-in) — card matches shipping-option / panel tone */
.checkout-saved-address-wrap {
  margin: 0 0 1.75rem;
}
.checkout-saved-address-card {
  background: linear-gradient(165deg, #fafafa 0%, var(--color-white) 100%);
  border: 1.5px solid var(--color-border);
  border-radius: 18px;
  padding: 1.15rem 1.25rem 1rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.checkout-saved-address-head {
  margin-bottom: 0.85rem;
}
.checkout-saved-address-title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.checkout-saved-address-lead {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-muted);
  font-weight: 500;
}

/* Custom dropdown (native <select> list cannot be styled) */
.checkout-saved-address-combo {
  position: relative;
  z-index: 5;
}
.checkout-saved-address-combo.is-open {
  z-index: 50;
}
.checkout-saved-address-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1.15rem 0.85rem 1.25rem;
  font: 500 0.88rem var(--font);
  color: var(--color-black);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.checkout-saved-address-trigger:hover:not(:disabled) {
  border-color: #aaa;
}
.checkout-saved-address-trigger:focus-visible {
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.checkout-saved-address-trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--color-surface);
}
.checkout-saved-address-trigger-text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-saved-address-trigger-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  opacity: 0.45;
  transition: transform 0.2s ease, opacity var(--transition);
}
.checkout-saved-address-combo.is-open .checkout-saved-address-trigger-chevron {
  transform: rotate(180deg);
  opacity: 0.75;
}

.checkout-saved-address-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  padding: 6px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  max-height: min(280px, 45vh);
  overflow: hidden;
}
.checkout-saved-address-dropdown[hidden] {
  display: none !important;
}
.checkout-saved-address-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: min(268px, calc(45vh - 12px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.checkout-saved-address-list > li {
  margin: 0;
  padding: 0;
}
.checkout-saved-address-list > li + li {
  margin-top: 4px;
}
.checkout-saved-address-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.72rem 1rem;
  font: 500 0.85rem var(--font);
  color: var(--color-black);
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  transition: background 0.15s ease, color 0.15s ease;
}
.checkout-saved-address-option:hover {
  background: var(--color-surface);
}
.checkout-saved-address-option:focus {
  outline: none;
}
.checkout-saved-address-option:focus-visible {
  background: var(--color-surface);
  box-shadow: inset 0 0 0 2px var(--color-black);
}
.checkout-saved-address-option[aria-selected='true'] {
  background: #f0f0f0;
  font-weight: 600;
}

.checkout-saved-address-hint {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.72rem;
  color: var(--color-muted);
  line-height: 1.45;
}
.checkout-saved-address-hint a {
  color: var(--color-black);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity var(--transition);
}
.checkout-saved-address-hint a:hover {
  opacity: 0.75;
}

/* Review panel */
.review-save-wrap {
  margin-top: 0.85rem;
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
}
.review-save-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-muted);
  cursor: pointer;
  margin: 0;
  font-weight: 500;
}
.review-save-label input {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--color-black, #111);
}

.review-section { margin-bottom: 1.5rem; }
.review-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 0.75rem;
}
.review-block {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-black);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.review-block > :first-child {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.review-edit {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: color var(--transition);
}
.review-edit:hover { color: var(--color-black); }

.review-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  border-radius: 8px;
}
.review-item img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #e8e8e8;
}
.review-item.is-set img { object-fit: contain; }
.review-item-info { flex: 1; min-width: 0; }
.review-item-name { font-size: 0.82rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-item-qty  { font-size: 0.74rem; color: var(--color-muted); margin-top: 2px; }
.review-item-price { font-size: 0.88rem; font-weight: 700; flex-shrink: 0; }

/* ── RIGHT: Order Summary ── */
.checkout-summary {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  position: sticky;
  top: calc(96px + 1.5rem);
}
.checkout-summary-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.co-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  max-height: 340px;
  overflow-y: auto;
}
.co-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.co-item-img-wrap { position: relative; flex-shrink: 0; }
.co-item-img-wrap img {
  width: 54px; height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--color-surface);
  display: block;
}
.co-item.is-set .co-item-img-wrap img { object-fit: contain; }
.co-item-qty-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.co-item-info { flex: 1; min-width: 0; }
.co-item-name { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }
.co-item-meta { font-size: 0.7rem; color: var(--color-muted); margin-top: 2px; }
.co-item-price { font-size: 0.88rem; font-weight: 700; flex-shrink: 0; }

.co-lines { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.co-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-muted);
}
.co-line span:last-child { font-weight: 600; color: var(--color-black); }
.co-line .free { color: #1a7f37; font-weight: 700; }

.bcard-badge--liquidation,
.product-badge--liquidation {
  background: #c0392b;
  color: #fff;
}

.bd-liquidation-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c0392b;
  margin: 0 0 0.35rem;
}

.checkout-place-order-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.checkout-order-limit-hint {
  margin: 0;
  font-size: 0.82rem;
  color: #b42318;
  max-width: 280px;
  text-align: right;
  line-height: 1.4;
}

#place-order-btn.is-disabled-limit,
#place-order-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.co-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
}
.co-total-label { font-size: 0.95rem; font-weight: 700; }
.co-total-value { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }

/* Promo in checkout */
.co-promo,
.co-rewards {
  display: none !important;
}

.co-promo-row { display: flex; gap: 0.5rem; }
.co-promo-input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  font: 0.83rem var(--font);
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color var(--transition);
}
.co-promo-input:focus { border-color: var(--color-black); }
.co-promo-msg { font-size: 0.75rem; font-weight: 500; margin-top: 0.4rem; }
.co-promo-msg.ok  { color: #1a7f37; }
.co-promo-msg.err { color: #cc0000; }

.checkout-pay-msg {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.35rem;
  color: #cc0000;
}

.checkout-form-col .form-input.is-invalid {
  border-color: #cc0000;
}

.co-rewards {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
}
.co-rewards-line {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 0;
  line-height: 1.45;
}
.co-rewards-line + .co-rewards-line { margin-top: 0.35rem; }
.co-rewards-line--muted { font-weight: 500; color: var(--color-muted); font-size: 0.74rem; }
.co-rewards-line--gift { color: #1a6b30; font-size: 0.74rem; }

/* Trust badges */
.co-trust {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.co-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: center;
}

/* ── Success screen ── */
.checkout-success {
  display: none;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 4rem 2rem;
}
.checkout-success.is-visible { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: #d4edda;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.success-sub {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 420px;
  margin: 0 auto 0.5rem;
  line-height: 1.6;
}
.success-order-num {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin: 1rem 0 2rem;
}
.success-crypto-box {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 2rem;
  padding: 1.1rem 1.15rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.success-crypto-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.success-crypto-lead {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-muted);
}
.success-crypto-rows { display: flex; flex-direction: column; gap: 0.55rem; }
.success-crypto-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.85rem;
}
.success-crypto-row span { color: var(--color-muted); font-weight: 600; }
.success-crypto-row strong { font-weight: 700; text-align: right; word-break: break-all; }
.success-crypto-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 600;
}
.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1000px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .co-items-list { max-height: none; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr 1fr; }
  .checkout-steps { flex-wrap: wrap; }
  .checkout-step { flex: none; width: 50%; border-bottom: 1px solid var(--color-border); }
  .checkout-saved-address-card { padding: 1rem 1rem 0.9rem; }
  .checkout-saved-address-trigger { font-size: 1rem; padding: 0.8rem 1rem 0.8rem 1.15rem; }
  .checkout-saved-address-dropdown { border-radius: 14px; }
  .checkout-saved-address-option { font-size: 0.9rem; padding: 0.78rem 1rem; border-radius: 11px; }
}
