/* ── BuyVCC Custom Checkout Page ─────────────────────────────────────────── */
:root {
  --bvc-navy:       #0d0f1f;
  --bvc-navy2:      #12152b;
  --bvc-navy3:      #1a1e38;
  --bvc-border:     #2a2f52;
  --bvc-purple:     #7c3aed;
  --bvc-purple2:    #a855f7;
  --bvc-grad:       linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --bvc-text:       #e2e8f0;
  --bvc-muted:      #94a3b8;
  --bvc-green:      #10b981;
  --bvc-red:        #ef4444;
  --bvc-radius:     12px;
  --bvc-transition: 0.22s ease;
}

/* Ensure live chat widget (3CX / WP Live Chat) always floats above all checkout elements */
call-us-selector { position: relative !important; z-index: 9999999 !important; }

/* Suppress all wpautop-injected <br> and <p> tags inside the checkout page */
#bvc-checkout-page br,
#bvc-success br { display: none !important; }
#bvc-checkout-page > p:empty,
#bvc-checkout-page > p > br:only-child { display: none !important; }

/* ── Page shell ─────────────────────────────────────────────────────────── */
body.woocommerce-checkout {
  background: var(--bvc-navy) !important;
  color: var(--bvc-text) !important;
}

/* Reset theme container padding so our checkout owns its horizontal rhythm */
body.woocommerce-checkout #main,
body.woocommerce-checkout #content-wrap,
body.woocommerce-checkout .container,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .single-page-content,
body.woocommerce-checkout .content-area {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Force every checkout element to use border-box so 100% width = 100% width */
.woocommerce-checkout #bvc-checkout-page,
.woocommerce-checkout #bvc-checkout-page *,
.woocommerce-checkout #bvc-checkout-page *::before,
.woocommerce-checkout #bvc-checkout-page *::after { box-sizing: border-box; }

.woocommerce-checkout #bvc-checkout-page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--bvc-text);
}

/* ── Page header ────────────────────────────────────────────────────────── */
.bvc-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.bvc-page-title h1 {
  margin: 0 0 6px;
  font-size: 38px;
  font-weight: 800;
  color: var(--bvc-text);
  letter-spacing: -0.5px;
}

.bvc-page-title h1 em {
  font-style: normal;
  color: var(--bvc-purple2);
}

.bvc-page-subtitle {
  font-size: 14px;
  color: var(--bvc-muted);
  margin: 0;
}

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.bvc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 6px;
}

.bvc-bc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bvc-bc-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bvc-border);
  background: var(--bvc-navy2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--bvc-muted);
  transition: var(--bvc-transition);
}

.bvc-bc-step.active .bvc-bc-num {
  background: var(--bvc-grad);
  border-color: var(--bvc-purple);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
}

.bvc-bc-label {
  font-size: 11px;
  color: var(--bvc-muted);
  font-weight: 500;
  white-space: nowrap;
}

.bvc-bc-step.active .bvc-bc-label { color: var(--bvc-purple2); font-weight: 600; }

.bvc-bc-line {
  width: 64px;
  height: 2px;
  background: var(--bvc-border);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.bvc-bc-line.active { background: var(--bvc-purple); }

/* ── Two-column grid ────────────────────────────────────────────────────── */
.bvc-cols {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* ── Left column ────────────────────────────────────────────────────────── */
.bvc-col-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Right column ───────────────────────────────────────────────────────── */
.bvc-col-right {
  position: sticky;
  top: 24px;
  background: var(--bvc-navy2);
  border: 1px solid var(--bvc-border);
  border-radius: var(--bvc-radius);
  overflow: hidden;
}

/* ── Section cards ──────────────────────────────────────────────────────── */
.bvc-section {
  background: var(--bvc-navy2);
  border: 1px solid var(--bvc-border);
  border-radius: var(--bvc-radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color var(--bvc-transition);
}

.bvc-section:last-child { margin-bottom: 0; }

.bvc-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bvc-section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bvc-grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bvc-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bvc-text);
}

/* ── Form fields ────────────────────────────────────────────────────────── */
.bvc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.bvc-field:last-child { margin-bottom: 0; }

.bvc-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bvc-muted);
}

.bvc-field .bvc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bvc-navy3);
  border: 1px solid var(--bvc-border);
  border-radius: 8px;
  transition: border-color var(--bvc-transition), box-shadow var(--bvc-transition);
}

.bvc-field .bvc-input-wrap:focus-within {
  border-color: var(--bvc-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.bvc-field .bvc-input-wrap br { display: none !important; }

.bvc-field .bvc-input-wrap svg {
  width: 16px;
  height: 16px;
  color: var(--bvc-muted);
  pointer-events: none;
  flex-shrink: 0;
  margin-left: 13px;
  position: static;
  transform: none;
}

.bvc-field input[type="email"],
.bvc-field input[type="text"] {
  flex: 1;
  min-width: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--bvc-text) !important;
  font-size: 14px !important;
  padding: 12px 14px !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

.bvc-field input[type="email"]::placeholder,
.bvc-field input[type="text"]::placeholder {
  color: var(--bvc-muted);
}

.bvc-field-error {
  font-size: 12px;
  color: var(--bvc-red);
  min-height: 16px;
  display: block;
}

/* ── Payment method cards ───────────────────────────────────────────────── */
.bvc-method-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bvc-method-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border: 2px solid var(--bvc-border);
  border-radius: var(--bvc-radius);
  background: var(--bvc-navy3);
  cursor: pointer;
  transition: border-color var(--bvc-transition), box-shadow var(--bvc-transition);
  -webkit-user-select: none;
  user-select: none;
  min-width: 0;
}

.bvc-method-card input[type="radio"] { display: none; }

.bvc-method-disabled {
  opacity: 0.45;
  cursor: not-allowed !important;
  pointer-events: none;
}

.bvc-method-card.selected {
  border-color: var(--bvc-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.06);
}

.bvc-method-icons {
  display: flex;
  gap: -4px;
}

.bvc-method-icons img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bvc-navy3);
  margin-left: -6px;
}

.bvc-method-icons img:first-child { margin-left: 0; }

.bvc-method-icon-single {
  font-size: 24px;
  line-height: 1;
}

.bvc-method-info {
  flex: 1;
  min-width: 0;
}

.bvc-method-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bvc-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bvc-method-desc {
  display: block;
  font-size: 11px;
  color: var(--bvc-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bvc-method-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--bvc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--bvc-transition);
}

.bvc-method-card.selected .bvc-method-radio {
  border-color: var(--bvc-purple);
  background: var(--bvc-purple);
}

.bvc-method-card.selected .bvc-method-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* ── Coin icons ─────────────────────────────────────────────────────────── */
.bvc-coin-icons {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bvc-coin {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-left: -6px;
  border: 2px solid var(--bvc-navy3);
  flex-shrink: 0;
}

.bvc-coin:first-child { margin-left: 0; }
.bvc-coin-btc  { background: #f7931a; }
.bvc-coin-usdt { background: #26a17b; }
.bvc-coin-eth  { background: #627eea; }

/* ── Custom gateway dropdown ────────────────────────────────────────────── */
.bvc-field .bvc-custom-select { position: relative; }

.bvc-select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bvc-navy3);
  border: 1px solid var(--bvc-border);
  border-radius: 8px;
  color: var(--bvc-text);
  font-size: 14px;
  padding: 11px 14px;
  cursor: pointer;
  transition: border-color var(--bvc-transition), box-shadow var(--bvc-transition);
  -webkit-user-select: none;
  user-select: none;
}

.bvc-select-trigger:hover,
.bvc-custom-select.open .bvc-select-trigger {
  border-color: var(--bvc-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.bvc-gateway-label { flex: 1; }

.bvc-select-arrow {
  width: 16px;
  height: 16px;
  color: var(--bvc-muted);
  flex-shrink: 0;
  transition: transform var(--bvc-transition);
}

.bvc-custom-select.open .bvc-select-arrow { transform: rotate(180deg); }

.bvc-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bvc-navy3);
  border: 1px solid var(--bvc-border);
  border-radius: 8px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.bvc-custom-select.open .bvc-select-options { display: block; }

.bvc-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--bvc-text);
  cursor: pointer;
  transition: background var(--bvc-transition);
}

.bvc-select-option:hover { background: rgba(124, 58, 237, 0.12); }

.bvc-select-option.selected {
  background: rgba(124, 58, 237, 0.18);
  color: var(--bvc-purple2);
  font-weight: 600;
}

/* ── Payment details box ────────────────────────────────────────────────── */
.bvc-payment-box {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bvc-border);
}

.bvc-payment-box.visible { display: flex; }

.bvc-wallet-section {}

.bvc-wallet-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bvc-muted);
  display: block;
  margin-bottom: 8px;
}

.bvc-address-row {
  display: flex;
  gap: 0;
}

.bvc-address-input {
  flex: 1;
  background: var(--bvc-navy) !important;
  border: 1px solid var(--bvc-border) !important;
  border-right: none !important;
  border-radius: 8px 0 0 8px !important;
  color: var(--bvc-text) !important;
  font-size: 13px !important;
  font-family: 'Courier New', monospace !important;
  padding: 11px 14px !important;
  box-shadow: none !important;
  outline: none !important;
}

.bvc-copy-btn {
  background: var(--bvc-purple);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  cursor: pointer;
  transition: background var(--bvc-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.bvc-copy-btn:hover { background: var(--bvc-purple2); }

/* ── QR section ─────────────────────────────────────────────────────────── */
.bvc-qr-section {
  display: flex;
  gap: 20px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  padding: 18px;
  align-items: center;
}

.bvc-qr-img-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bvc-qr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bvc-qr-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bvc-qr-scan-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--bvc-text);
}

.bvc-qr-send-label {
  font-size: 12px;
  color: var(--bvc-muted);
}

.bvc-qr-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--bvc-purple2);
  letter-spacing: -0.3px;
}

.bvc-timer-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bvc-muted);
  margin-top: 4px;
}

.bvc-timer-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

#bvc-timer {
  font-weight: 700;
  color: var(--bvc-text);
  font-variant-numeric: tabular-nums;
}

/* ── Info notice ────────────────────────────────────────────────────────── */
.bvc-info-notice {
  display: flex;
  gap: 12px;
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  align-items: flex-start;
}

.bvc-info-notice svg {
  width: 18px;
  height: 18px;
  color: var(--bvc-purple2);
  flex-shrink: 0;
  margin-top: 1px;
}

.bvc-info-notice-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bvc-purple2);
  margin-bottom: 4px;
}

.bvc-info-notice-text p {
  font-size: 12px;
  color: var(--bvc-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Status box ─────────────────────────────────────────────────────────── */
.bvc-status-box {
  display: none;
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  gap: 10px;
  flex-direction: column;
}

.bvc-status-box.visible { display: flex; }

.bvc-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.bvc-status-label { color: var(--bvc-muted); }
.bvc-status-text  { font-weight: 600; color: var(--bvc-text); }

/* ── Coupon section ─────────────────────────────────────────────────────── */
.bvc-coupon-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--bvc-muted);
  cursor: pointer;
  transition: color var(--bvc-transition);
  -webkit-user-select: none;
  user-select: none;
}

.bvc-coupon-toggle:hover { color: var(--bvc-purple2); }

.bvc-coupon-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--bvc-transition);
}

.bvc-coupon-toggle.open svg { transform: rotate(45deg); }

.bvc-coupon-tag {
  font-size: 11px;
  color: var(--bvc-muted);
  background: rgba(148, 163, 184, 0.12);
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 4px;
}

.bvc-coupon-body {
  display: none;
  gap: 8px;
  margin-top: 14px;
}

.bvc-coupon-body.open {
  display: flex;
}

.bvc-coupon-body input {
  flex: 1;
  background: var(--bvc-navy3) !important;
  border: 1px solid var(--bvc-border) !important;
  border-radius: 8px !important;
  color: var(--bvc-text) !important;
  font-size: 13px !important;
  padding: 10px 14px !important;
  outline: none !important;
  box-shadow: none !important;
}

.bvc-coupon-body input:focus {
  border-color: var(--bvc-purple) !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18) !important;
}

.bvc-coupon-apply {
  background: var(--bvc-navy3);
  border: 1px solid var(--bvc-border);
  border-radius: 8px;
  color: var(--bvc-text);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color var(--bvc-transition), background var(--bvc-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.bvc-coupon-apply:hover {
  border-color: var(--bvc-purple);
  background: rgba(124, 58, 237, 0.1);
}

.bvc-coupon-msg {
  display: block;
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}

/* ── Right column: product image ────────────────────────────────────────── */
.bvc-right-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1e38 0%, #0d0f1f 100%);
  border-bottom: 1px solid var(--bvc-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bvc-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bvc-right-img-placeholder {
  font-size: 48px;
}

/* ── Right column: body ─────────────────────────────────────────────────── */
.bvc-right-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Order summary ──────────────────────────────────────────────────────── */
.bvc-order-summary-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bvc-muted);
  margin-bottom: 14px;
}

.bvc-order-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 6px;
}

.bvc-order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 12px;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.bvc-order-item:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(168, 85, 247, 0.32);
}
.bvc-order-item-main {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bvc-order-item-name {
  font-size: 13px;
  color: var(--bvc-text);
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.4;
}

.bvc-order-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--bvc-text);
  white-space: nowrap;
}

/* Trash button — circular, brand-tinted, hover lifts to red for clarity */
.bvc-order-item-remove {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #fca5a5;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.bvc-order-item-remove svg {
  width: 16px;
  height: 16px;
  display: block;
}
.bvc-order-item-remove:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.55);
  color: #ffffff;
  transform: scale(1.05);
}
.bvc-order-item-remove:focus-visible {
  outline: 2px solid #ef4444;
  outline-offset: 2px;
}
.bvc-order-item-remove.is-loading {
  opacity: 0.55;
  cursor: progress;
  pointer-events: none;
}

/* Empty-cart state */
.bvc-order-empty {
  text-align: center;
  padding: 28px 18px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px dashed rgba(168, 85, 247, 0.28);
  border-radius: 12px;
}
.bvc-order-empty p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--bvc-text);
}
.bvc-order-empty .bvc-empty-cta {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.bvc-order-empty .bvc-empty-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.bvc-order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--bvc-border);
}

.bvc-order-total-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--bvc-text);
}

.bvc-order-total-value {
  font-size: 24px;
  font-weight: 800;
  background: var(--bvc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* ── No hidden fees badge ───────────────────────────────────────────────── */
.bvc-no-fees {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bvc-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
}

.bvc-no-fees svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Trust badges ───────────────────────────────────────────────────────── */
.bvc-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bvc-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--bvc-muted);
}

.bvc-trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bvc-navy3);
  border: 1px solid var(--bvc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bvc-trust-item-info {}
.bvc-trust-item-name { display: block; font-weight: 600; color: var(--bvc-text); font-size: 13px; }
.bvc-trust-item-desc { display: block; font-size: 11px; color: var(--bvc-muted); margin-top: 1px; }

/* ── Status box (right col) ─────────────────────────────────────────────── */
.bvc-right-status {
  display: none;
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  gap: 10px;
  flex-direction: column;
}

.bvc-right-status.visible { display: flex; }

/* ── Complete Payment button ────────────────────────────────────────────── */
.bvc-pay-btn {
  width: 100%;
  padding: 16px;
  background: var(--bvc-grad);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--bvc-transition), transform var(--bvc-transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.bvc-pay-btn:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.bvc-pay-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.bvc-btn-text {}
.bvc-btn-spinner { display: none; }

.bvc-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bvc-spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes bvc-spin { to { transform: rotate(360deg); } }

.bvc-pay-terms {
  font-size: 11px;
  color: var(--bvc-muted);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.bvc-pay-terms a {
  color: var(--bvc-purple2);
  text-decoration: none;
}

.bvc-pay-terms a:hover { text-decoration: underline; }

/* ── Success overlay ────────────────────────────────────────────────────── */
#bvc-success {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 15, 31, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 24px;
}

#bvc-success.visible { display: flex; }

.bvc-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bvc-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(124, 58, 237, 0.2);
  animation: bvc-pop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bvc-pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.bvc-success-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--bvc-text);
  margin: 0;
}

.bvc-success-sub {
  font-size: 15px;
  color: var(--bvc-muted);
  max-width: 400px;
  margin: 0;
  line-height: 1.6;
}

.bvc-success-btn {
  background: var(--bvc-grad);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  cursor: pointer;
  transition: opacity var(--bvc-transition);
}

.bvc-success-btn:hover { opacity: 0.88; }

/* ── Bottom trust strip ─────────────────────────────────────────────────── */
.bvc-bottom-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bvc-border);
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.bvc-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--bvc-border);
}

.bvc-strip-item:first-child { padding-left: 0; }
.bvc-strip-item:last-child  { border-right: none; }

.bvc-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bvc-strip-icon svg {
  width: 22px;
  height: 22px;
  color: var(--bvc-purple2);
}

.bvc-strip-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bvc-text);
  display: block;
  margin-bottom: 4px;
}

.bvc-strip-desc {
  font-size: 12px;
  color: var(--bvc-muted);
  line-height: 1.5;
  display: block;
}

/* ── Crypto amount display (ticker + chain badge) ───────────────────────── */
.bvc-amt-num    { font-weight: 800; }
.bvc-amt-ticker { font-weight: 800; color: var(--bvc-purple2); }
.bvc-amt-chain  {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--bvc-muted);
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* ── Responsive: tablet ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bvc-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bvc-col-right {
    position: static;
    order: -1;          /* show order summary on top on mobile */
  }
  .bvc-page-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .bvc-breadcrumb {
    justify-content: flex-start;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .bvc-breadcrumb::-webkit-scrollbar { display: none; }
  .bvc-bc-line { width: 36px; }
}

/* ── Responsive: phone ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Consistent 20px horizontal padding throughout */
  .woocommerce-checkout #bvc-checkout-page {
    padding: 20px 20px 60px;
    width: 100%;
    margin: 0 auto;
  }
  .bvc-cols,
  .bvc-col-left,
  .bvc-col-right,
  .bvc-section,
  .bvc-page-header {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .bvc-page-title h1 { font-size: 26px; line-height: 1.15; }
  .bvc-page-subtitle { font-size: 13px; }

  /* Center the step 1/2/3 breadcrumb on mobile */
  .bvc-breadcrumb {
    justify-content: center !important;
    width: 100%;
  }

  /* Strip Elementor section's hard-coded padding on this checkout layout */
  .elementor-41 .elementor-element.elementor-element-19be9334,
  .elementor-41 .elementor-element.elementor-element-19be9334 > .elementor-container,
  .elementor-41 .elementor-element.elementor-element-19be9334 > .elementor-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
  }

  .bvc-section { padding: 20px; }
  .bvc-section-header { margin-bottom: 16px; }
  .bvc-section-num { width: 24px; height: 24px; font-size: 12px; }
  .bvc-section-title { font-size: 14px; }

  .bvc-method-cards { grid-template-columns: 1fr; gap: 10px; }

  /* Payment details box: stack the wallet address and the Copy button
     vertically on mobile so a long crypto address + a side-by-side button
     never overflow the right edge of the screen. */
  .bvc-address-row {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .bvc-address-input,
  #bvc-wallet-address {
    width: 100% !important;
    min-width: 0 !important;
    border-right: 1px solid var(--bvc-border) !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    word-break: break-all;
    text-overflow: clip !important;
    overflow: visible !important;
  }
  .bvc-copy-btn {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 8px !important;
    padding: 12px !important;
  }

  .bvc-qr-section { flex-direction: column; text-align: center; gap: 14px; padding: 20px; }
  .bvc-qr-img-wrap { margin: 0 auto; }

  /* Right column: 20px padding to match the rest */
  .bvc-right-img { aspect-ratio: 16/9; max-height: 180px; }
  .bvc-right-body { padding: 20px; gap: 16px; }
  .bvc-order-total-value { font-size: 22px; }

  /* Trust strip: 2-cols then 1-col on tiny */
  .bvc-bottom-strip {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: 40px;
  }
  .bvc-strip-item {
    border-right: none;
    padding: 0;
  }
  .bvc-strip-icon { width: 38px; height: 38px; }
  .bvc-strip-icon svg { width: 18px; height: 18px; }
  .bvc-strip-title { font-size: 13px; }
  .bvc-strip-desc  { font-size: 11px; }

  /* Amount display: chain badge wraps below on tight screens */
  .bvc-amt-chain { display: inline-block; margin-top: 4px; margin-left: 0; }

  .bvc-pay-btn { font-size: 15px; padding: 14px; }
}

/* ── Responsive: tiny phone ─────────────────────────────────────────────── */
@media (max-width: 400px) {
  .bvc-bottom-strip { grid-template-columns: 1fr; }
  .bvc-page-title h1 { font-size: 22px; }
  .bvc-bc-num { width: 30px; height: 30px; font-size: 12px; }
  .bvc-bc-line { width: 24px; }
}

/* ============================================================================
   BRAND REFRESH (May 2026) — Pay button + empty-cart CTA gradient
   ============================================================================ */
.bvc-pay-btn {
  background: linear-gradient(to right, #3562F4 0%, #C339DA 100%) !important;
  border-radius: 10px !important;
  box-shadow: 0 14px 32px rgba(53, 98, 244, 0.30),
              0 6px 14px rgba(195, 57, 218, 0.22) !important;
}
.bvc-order-empty .bvc-empty-cta {
  background: linear-gradient(to right, #3562F4 0%, #C339DA 100%) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(53, 98, 244, 0.30) !important;
}

/* Hint / loading / error message shown inside #bvc-payment-box. Always
   visible so the customer never sees an empty wallet area. */
.bvc-payment-hint {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.28);
  color: #cbd5e1;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 14px;
}
.bvc-payment-hint.is-error {
  background: rgba(239, 68, 68, 0.10);
  border-color: rgba(239, 68, 68, 0.38);
  color: #fecaca;
}
.bvc-payment-hint.is-loading {
  background: rgba(53, 98, 244, 0.08);
  border-color: rgba(53, 98, 244, 0.28);
  color: #c4d4fd;
}
.bvc-payment-hint.is-loading::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 12px; height: 12px;
  border: 2px solid rgba(195, 215, 253, 0.30);
  border-top-color: #c4d4fd;
  border-radius: 50%;
  animation: bvc-spin 0.7s linear infinite;
}
@keyframes bvc-spin {
  to { transform: rotate(360deg); }
}
