/* BenzCard — light marketplace theme */
:root {
  --bc-navy: #0B2340;
  --bc-navy-soft: #153456;
  --bc-orange: #FF6A00;
  --bc-orange-hover: #E85F00;
  --bc-orange-soft: rgba(255, 106, 0, 0.1);
  --bc-bg: #F4F6F9;
  --bc-bg-hero: #EEF1F6;
  --bc-surface: #FFFFFF;
  --bc-surface-alt: #FAFBFC;
  --bc-border: #E2E6EC;
  --bc-border-strong: #CDD4DE;
  --bc-text: #1A2B3C;
  --bc-text-muted: #5C6B7A;
  --bc-text-light: #8A97A6;
  --bc-shadow: 0 4px 24px rgba(11, 35, 64, 0.08);
  --bc-shadow-lg: 0 12px 40px rgba(11, 35, 64, 0.12);
  --bc-radius: 12px;
  --bc-radius-lg: 16px;
  --bc-font: 'Onest', system-ui, sans-serif;
  --bc-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--bc-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--bc-text);
  background: var(--bc-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ── */
.bc-container { max-width: var(--bc-max); margin: 0 auto; padding: 0 20px; }
.bc-section { padding: 72px 0; }
.bc-section--alt { background: var(--bc-surface); border-top: 1px solid var(--bc-border); border-bottom: 1px solid var(--bc-border); }

/* ── Header ── */
.bc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bc-border);
}
.bc-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--bc-max); margin: 0 auto; padding: 0 20px;
}
.bc-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--bc-navy); }
.bc-logo__mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bc-navy); color: var(--bc-orange);
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
}
.bc-logo span { color: var(--bc-orange); }
.bc-nav { display: none; gap: 32px; }
.bc-nav a { font-size: 0.875rem; font-weight: 500; color: var(--bc-text-muted); transition: color 0.2s; }
.bc-nav a:hover { color: var(--bc-orange); }
.bc-burger {
  width: 40px; height: 40px; border-radius: var(--bc-radius);
  border: 1px solid var(--bc-border); display: grid; place-items: center;
}
.bc-burger svg { width: 22px; height: 22px; color: var(--bc-navy); }
.bc-mobile-menu {
  display: none; border-top: 1px solid var(--bc-border);
  background: var(--bc-surface); padding: 12px 20px 16px;
}
.bc-mobile-menu.is-open { display: block; }
.bc-mobile-menu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--bc-text);
}
.bc-mobile-menu a:hover { background: var(--bc-bg); }

@media (min-width: 1024px) {
  .bc-nav { display: flex; }
  .bc-burger { display: none; }
}

/* ── Hero ── */
.bc-hero {
  position: relative; overflow: hidden;
  padding-top: 64px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 106, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(11, 35, 64, 0.06) 0%, transparent 55%),
    linear-gradient(165deg, var(--bc-bg-hero) 0%, #F8FAFC 45%, var(--bc-bg) 100%);
}
.bc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 35, 64, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.bc-hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: 48px; align-items: center;
  padding: 64px 20px 80px; max-width: var(--bc-max); margin: 0 auto;
}
@media (min-width: 1024px) {
  .bc-hero__inner { grid-template-columns: 1fr 1fr; padding: 80px 20px 96px; gap: 64px; }
}
.bc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--bc-surface); border: 1px solid var(--bc-border);
  font-size: 0.75rem; font-weight: 600; color: var(--bc-navy);
  animation: bc-fade-up 0.6s ease both;
}
.bc-badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bc-orange);
  animation: bc-pulse 2s ease-in-out infinite;
}
.bc-hero__title {
  margin: 20px 0 0; font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800; line-height: 1.12; color: var(--bc-navy);
  animation: bc-fade-up 0.6s 0.1s ease both;
}
.bc-hero__title em { font-style: normal; color: var(--bc-orange); }
.bc-hero__lead {
  margin: 20px 0 0; font-size: 1.0625rem; color: var(--bc-text-muted); max-width: 520px;
  animation: bc-fade-up 0.6s 0.2s ease both;
}
.bc-hero__actions { margin-top: 32px; animation: bc-fade-up 0.6s 0.3s ease both; }
.bc-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--bc-border);
  animation: bc-fade-up 0.6s 0.4s ease both;
}
.bc-stats dt { font-size: 1.5rem; font-weight: 800; color: var(--bc-navy); }
.bc-stats dd { margin: 4px 0 0; font-size: 0.75rem; color: var(--bc-text-light); }

.bc-hero-card {
  position: relative; animation: bc-float 6s ease-in-out infinite;
}
.bc-hero-card__inner {
  background: var(--bc-surface); border: 1px solid var(--bc-border);
  border-radius: 20px; padding: 24px; box-shadow: var(--bc-shadow-lg);
}
.bc-hero-card__ticket {
  margin-top: 20px; padding: 20px; border-radius: 14px;
  background: linear-gradient(135deg, var(--bc-navy) 0%, var(--bc-navy-soft) 100%);
  color: #fff;
}
.bc-hero-card__ticket-top { display: flex; justify-content: space-between; align-items: center; }
.bc-hero-card__ticket-brand { font-weight: 800; font-size: 1.125rem; }
.bc-hero-card__ticket-brand span { color: var(--bc-orange); }
.bc-hero-card__ticket-num {
  margin-top: 24px; font-family: ui-monospace, monospace;
  letter-spacing: 0.12em; font-size: 1rem; opacity: 0.9;
}
.bc-hero-card__chips {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px;
}
.bc-hero-card__chip {
  background: var(--bc-bg); border-radius: 8px; padding: 10px; text-align: center;
  font-size: 0.75rem;
}
.bc-hero-card__chip strong { display: block; font-size: 0.8125rem; color: var(--bc-navy); margin-top: 2px; }

/* ── Buttons ── */
.bc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--bc-radius);
  font-size: 0.9375rem; font-weight: 700; transition: all 0.2s;
}
.bc-btn--primary {
  background: var(--bc-orange); color: #fff;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
}
.bc-btn--primary:hover { background: var(--bc-orange-hover); transform: translateY(-1px); }
.bc-btn--outline {
  background: var(--bc-surface); color: var(--bc-navy);
  border: 1px solid var(--bc-border-strong);
}
.bc-btn--outline:hover { border-color: var(--bc-orange); color: var(--bc-orange); }
.bc-btn--block { width: 100%; }
.bc-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ── Brands strip ── */
.bc-brands { padding: 28px 0; background: var(--bc-surface); border-bottom: 1px solid var(--bc-border); }
.bc-brands__label { text-align: center; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bc-text-light); }
.bc-brands__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px;
  margin-top: 16px; font-size: 0.9375rem; font-weight: 600; color: var(--bc-text-muted);
}
.bc-brands__list span:hover { color: var(--bc-orange); transition: color 0.2s; }

/* ── Section headings ── */
.bc-heading { text-align: center; max-width: 560px; margin: 0 auto; }
.bc-heading h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--bc-navy); }
.bc-heading p { margin: 12px 0 0; color: var(--bc-text-muted); }

/* ── Tabs ── */
.bc-tabs {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 640px; margin: 40px auto 0; padding: 6px;
  background: var(--bc-surface); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
}
@media (min-width: 640px) { .bc-tabs { flex-direction: row; } }
.bc-tab {
  flex: 1; padding: 12px 16px; border-radius: 10px;
  font-size: 0.875rem; font-weight: 600; color: var(--bc-text-muted);
  transition: all 0.2s;
}
.bc-tab:hover { color: var(--bc-navy); background: var(--bc-bg); }
.bc-tab.bc-active { background: var(--bc-orange); color: #fff; box-shadow: 0 2px 12px rgba(255, 106, 0, 0.3); }

/* ── Product grid ── */
.bc-grid { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 768px) { .bc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-grid { grid-template-columns: repeat(3, 1fr); } }

.bc-card {
  display: flex; flex-direction: column;
  background: var(--bc-surface); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg); padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bc-card:hover { border-color: var(--bc-border-strong); box-shadow: var(--bc-shadow); }
.bc-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bc-card__logo {
  height: 56px; width: 160px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--bc-border); border-radius: 10px; padding: 8px 12px;
}
.bc-card__logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.bc-card__tag {
  font-size: 0.6875rem; font-weight: 600; padding: 4px 8px;
  border-radius: 6px; background: var(--bc-orange-soft); color: var(--bc-orange);
  border: 1px solid rgba(255, 106, 0, 0.2); white-space: nowrap;
}
.bc-card__desc { margin: 16px 0 0; font-size: 0.875rem; color: var(--bc-text-muted); }
.bc-card__discount {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(11, 35, 64, 0.04); font-size: 0.75rem; font-weight: 700; color: var(--bc-navy);
}
.bc-card__label {
  margin: 16px 0 0; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--bc-text-light);
}
.bc-card__options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.bc-card__footer { margin-top: auto; padding-top: 24px; }
.bc-card__price-note { font-size: 0.75rem; color: var(--bc-text-light); }
.bc-card__prices { display: flex; align-items: flex-end; gap: 10px; margin-top: 4px; }
.bc-card__total { font-size: 1.5rem; font-weight: 800; color: var(--bc-orange); }
.bc-card__old { font-size: 0.875rem; color: var(--bc-text-light); text-decoration: line-through; margin-bottom: 2px; }
.bc-card__img { width: 100%; border-radius: var(--bc-radius-lg); border: 1px solid var(--bc-border); }
.bc-card__title { margin: 16px 0 0; font-size: 1.0625rem; font-weight: 700; color: var(--bc-navy); }
.bc-card__list { margin: 12px 0 0; padding: 0; list-style: none; font-size: 0.875rem; color: var(--bc-text-muted); }
.bc-card__list li { display: flex; gap: 8px; margin-top: 6px; }
.bc-card__list li::before { content: '✓'; color: var(--bc-orange); font-weight: 700; }
.bc-card__balance-box {
  margin-top: 16px; padding: 16px; border-radius: var(--bc-radius);
  background: var(--bc-bg); border: 1px solid var(--bc-border);
}
.bc-card__balance-box p:first-child { margin: 0; font-size: 0.75rem; color: var(--bc-text-light); }
.bc-card__balance-value { margin: 4px 0 0; font-size: 1.5rem; font-weight: 800; color: var(--bc-navy); }
.bc-card__flash { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.875rem; color: var(--bc-orange); font-weight: 500; }
.bc-card__row { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.bc-card__badge-discount {
  padding: 6px 12px; border-radius: 8px; font-size: 0.8125rem; font-weight: 700;
  background: var(--bc-orange-soft); color: var(--bc-orange);
}
.bc-card__account-head { display: flex; align-items: center; gap: 12px; }
.bc-card__icon {
  width: 48px; height: 48px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--bc-border); background: #fff;
  display: grid; place-items: center;
}
.bc-card__icon img { width: 100%; height: 100%; object-fit: cover; }

/* ── Option buttons ── */
.bc-opt {
  padding: 8px 14px; border-radius: 8px; font-size: 0.8125rem; font-weight: 600;
  border: 1px solid var(--bc-border); color: var(--bc-text-muted); background: var(--bc-surface);
  transition: all 0.15s;
}
.bc-opt:hover { border-color: var(--bc-border-strong); color: var(--bc-navy); }
.bc-opt.bc-active {
  border-color: var(--bc-orange); background: var(--bc-orange-soft);
  color: var(--bc-orange);
}

/* ── Steps / guarantees ── */
.bc-steps { display: grid; gap: 24px; margin-top: 48px; }
@media (min-width: 768px) { .bc-steps { grid-template-columns: repeat(3, 1fr); } }
.bc-step {
  position: relative; padding: 28px 24px 24px;
  background: var(--bc-surface); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
}
.bc-step__num {
  position: absolute; top: -18px; left: 24px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bc-orange); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
}
.bc-step h3 { margin: 8px 0 0; font-size: 1.0625rem; font-weight: 700; color: var(--bc-navy); }
.bc-step p { margin: 10px 0 0; font-size: 0.875rem; color: var(--bc-text-muted); }

.bc-guarantees { display: grid; gap: 20px; margin-top: 48px; }
@media (min-width: 640px) { .bc-guarantees { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-guarantees { grid-template-columns: repeat(4, 1fr); } }
.bc-guarantee {
  padding: 24px; background: var(--bc-surface); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
}
.bc-guarantee__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--bc-orange-soft); color: var(--bc-orange);
  display: grid; place-items: center;
}
.bc-guarantee__icon svg { width: 24px; height: 24px; }
.bc-guarantee h3 { margin: 16px 0 0; font-size: 1rem; font-weight: 700; color: var(--bc-navy); }
.bc-guarantee p { margin: 8px 0 0; font-size: 0.8125rem; color: var(--bc-text-muted); }
.bc-guarantee a { color: var(--bc-orange); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ── CTA strip ── */
.bc-cta {
  position: relative; overflow: hidden; padding: 64px 20px; text-align: center;
  background: linear-gradient(135deg, var(--bc-navy) 0%, var(--bc-navy-soft) 100%);
  color: #fff;
}
.bc-cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.bc-cta__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.bc-cta h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.bc-cta p { margin: 12px 0 0; opacity: 0.85; }
.bc-cta .bc-btn { margin-top: 28px; }

/* ── Footer ── */
.bc-footer { background: var(--bc-navy); color: rgba(255, 255, 255, 0.75); padding: 56px 0 24px; }
.bc-footer__grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .bc-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.bc-footer .bc-logo { color: #fff; }
.bc-footer__desc { margin: 16px 0 0; font-size: 0.875rem; max-width: 400px; line-height: 1.6; }
.bc-footer__disclaimer { margin: 16px 0 0; font-size: 0.75rem; opacity: 0.5; max-width: 400px; }
.bc-footer h4 { margin: 0; font-size: 0.875rem; font-weight: 700; color: #fff; }
.bc-footer ul { margin: 16px 0 0; padding: 0; list-style: none; }
.bc-footer li { margin-top: 8px; }
.bc-footer a { font-size: 0.875rem; transition: color 0.2s; }
.bc-footer a:hover { color: var(--bc-orange); }
.bc-footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  font-size: 0.75rem; opacity: 0.5;
}
@media (min-width: 640px) {
  .bc-footer__bottom { flex-direction: row; justify-content: space-between; }
}
.bc-footer__links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.hidden { display: none !important; }

/* ── Pay page ── */
.bc-pay-body { min-height: 100vh; background: var(--bc-bg); }
.bc-pay-header {
  border-bottom: 1px solid var(--bc-border); background: var(--bc-surface);
}
.bc-pay-header__inner {
  max-width: 480px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.bc-pay-back { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; color: var(--bc-text-muted); }
.bc-pay-back:hover { color: var(--bc-orange); }
.bc-pay-main { max-width: 480px; margin: 0 auto; padding: 32px 20px 48px; }
.bc-pay-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.bc-pay-dot { height: 8px; border-radius: 999px; transition: all 0.3s; background: var(--bc-border); }
.bc-pay-dot--active { width: 32px; background: var(--bc-orange); }
.bc-pay-dot--done { width: 16px; background: rgba(255, 106, 0, 0.4); }
.bc-pay-dot--idle { width: 16px; }
.bc-pay-summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px; margin-bottom: 16px;
  background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg);
}
.bc-pay-summary__label { font-size: 0.75rem; color: var(--bc-text-light); }
.bc-pay-summary__product { margin-top: 2px; font-size: 0.875rem; font-weight: 700; color: var(--bc-navy); max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bc-pay-summary__amount { font-size: 1.25rem; font-weight: 800; color: var(--bc-orange); text-align: right; }
.bc-pay-step { display: none; }
.bc-pay-step.active { display: block; animation: bc-fade-up 0.35s ease both; }
.bc-pay-step h1 { margin: 0; font-size: 1.5rem; font-weight: 800; color: var(--bc-navy); }
.bc-pay-step > p { margin: 8px 0 0; font-size: 0.875rem; color: var(--bc-text-muted); }
.bc-banks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.bc-bank-btn {
  display: flex; align-items: center; gap: 12px; padding: 16px; text-align: left;
  background: var(--bc-surface); border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg); transition: all 0.15s;
}
.bc-bank-btn:hover { border-color: var(--bc-border-strong); }
.bc-bank-btn:active { transform: scale(0.98); }
.bc-bank-btn.selected { border-color: var(--bc-orange); background: var(--bc-orange-soft); }
.bc-bank-btn img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.bc-bank-btn span { font-size: 0.875rem; font-weight: 600; color: var(--bc-navy); }
.bc-bank-btn--wide { grid-column: span 2; }
.bc-bank-btn__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bc-bg); display: grid; place-items: center; color: var(--bc-text-muted);
}
.bc-loader { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 0; }
.bc-loader__spinner { position: relative; width: 80px; height: 80px; }
.bc-loader__spinner svg { position: absolute; inset: 0; width: 80px; height: 80px; }
.bc-loader h2 { margin: 24px 0 0; font-size: 1.25rem; font-weight: 800; color: var(--bc-navy); }
.bc-loader p { margin: 8px 0 0; font-size: 0.875rem; color: var(--bc-text-muted); }
.bc-loader__hint { font-size: 0.75rem; color: var(--bc-text-light); animation: bc-pulse 1.8s ease-in-out infinite; }
.bc-timer-box {
  width: 100%; margin-top: 24px; padding: 16px;
  background: var(--bc-surface); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg);
}
.bc-timer-box__row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.bc-timer-box__val { font-family: ui-monospace, monospace; font-weight: 700; color: var(--bc-orange); }
.bc-timer-bar { margin-top: 8px; height: 6px; border-radius: 999px; background: var(--bc-border); overflow: hidden; }
.bc-timer-bar__fill { height: 100%; background: var(--bc-orange); transition: width 0.5s; border-radius: 999px; }
.bc-pay-panel {
  padding: 20px; background: var(--bc-surface);
  border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg);
}
.bc-pay-panel + .bc-pay-panel { margin-top: 16px; }
.bc-pay-panel__label {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bc-text-light);
}
.bc-pay-panel__hint { margin-top: 4px; font-size: 0.75rem; color: var(--bc-text-muted); }
.bc-pay-field {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding: 12px 16px;
  background: var(--bc-bg); border-radius: 10px;
}
.bc-pay-field__label { font-size: 0.75rem; color: var(--bc-text-light); }
.bc-pay-field__value { margin-top: 2px; font-weight: 600; color: var(--bc-navy); }
.bc-pay-field__value--mono { font-family: ui-monospace, monospace; font-size: 1.0625rem; letter-spacing: 0.08em; }
.bc-copy-btn {
  padding: 8px 12px; border-radius: 8px; font-size: 0.75rem; font-weight: 700;
  background: var(--bc-orange-soft); color: var(--bc-orange);
  border: 1px solid rgba(255, 106, 0, 0.25); transition: background 0.15s;
}
.bc-copy-btn:active { transform: scale(0.96); }
.bc-alert {
  margin-top: 16px; padding: 12px 16px; border-radius: 10px;
  background: rgba(255, 106, 0, 0.06); border: 1px solid rgba(255, 106, 0, 0.2);
  font-size: 0.75rem; color: var(--bc-navy); font-weight: 500;
}
.bc-alert strong { color: var(--bc-orange); }
.bc-qr-wrap { margin-top: 16px; display: flex; justify-content: center; padding: 16px; background: #fff; border-radius: var(--bc-radius-lg); }
.bc-qr-wrap img { max-height: 288px; max-width: 100%; object-fit: contain; }
.bc-upload {
  margin-top: 12px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px; border: 2px dashed var(--bc-border); border-radius: var(--bc-radius);
  background: var(--bc-bg); cursor: pointer; text-align: center; transition: all 0.2s;
}
.bc-upload:hover, .bc-upload.dragover { border-color: var(--bc-orange); background: var(--bc-orange-soft); }
.bc-upload__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bc-surface); border: 1px solid var(--bc-border);
  display: grid; place-items: center; color: var(--bc-text-muted);
}
.bc-upload p { margin: 0; font-size: 0.875rem; font-weight: 600; color: var(--bc-text); }
.bc-upload small { font-size: 0.75rem; color: var(--bc-text-light); }
.bc-file-preview {
  display: none; align-items: center; gap: 12px; margin-top: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: var(--bc-orange-soft); border: 1px solid rgba(255, 106, 0, 0.25);
}
.bc-file-preview.is-visible { display: flex; }
.bc-file-preview__name { flex: 1; font-size: 0.875rem; font-weight: 600; color: var(--bc-orange); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bc-file-preview__remove { color: var(--bc-text-muted); padding: 4px; }
.bc-pay-legal { margin-top: 12px; text-align: center; font-size: 0.75rem; color: var(--bc-text-light); }
.bc-pay-legal a { text-decoration: underline; }
.bc-pay-legal a:hover { color: var(--bc-orange); }
.bc-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px 0; }
.bc-success__icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--bc-orange-soft); border: 2px solid rgba(255, 106, 0, 0.3);
  display: grid; place-items: center; color: var(--bc-orange);
}
.bc-success__icon svg { width: 48px; height: 48px; }
.bc-success h1 { margin: 24px 0 0; font-size: 1.5rem; font-weight: 800; color: var(--bc-navy); }
.bc-success > p { margin: 12px 0 0; font-size: 0.875rem; color: var(--bc-text-muted); line-height: 1.6; }
.bc-success__highlight { color: var(--bc-orange); font-weight: 700; }
.bc-success__details { width: 100%; margin-top: 28px; text-align: left; }
.bc-success__row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-top: 8px; }
.bc-success__row span:first-child { color: var(--bc-text-muted); }
.bc-success__row span:last-child { font-weight: 600; color: var(--bc-navy); max-width: 60%; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bc-success__actions { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: 24px; }
@media (min-width: 480px) { .bc-success__actions { flex-direction: row; } }

/* ── Legal pages ── */
.bc-legal-header {
  border-bottom: 1px solid var(--bc-border); background: var(--bc-surface);
}
.bc-legal-header__inner {
  max-width: 720px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.bc-legal-main { max-width: 720px; margin: 0 auto; padding: 48px 20px 64px; }
.bc-legal-main h1 { margin: 8px 0 0; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--bc-navy); }
.bc-legal-meta { margin-top: 12px; font-size: 0.875rem; color: var(--bc-text-light); }
.bc-legal-content { margin-top: 40px; }
.bc-legal-content section + section { margin-top: 32px; }
.bc-legal-content h2 { margin: 0; font-size: 1.125rem; font-weight: 700; color: var(--bc-navy); }
.bc-legal-content p { margin: 12px 0 0; font-size: 0.875rem; color: var(--bc-text-muted); line-height: 1.7; }
.bc-legal-content ul { margin: 12px 0 0; padding-left: 20px; font-size: 0.875rem; color: var(--bc-text-muted); line-height: 1.7; }
.bc-legal-content a { color: var(--bc-orange); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.bc-legal-footer {
  border-top: 1px solid var(--bc-border); background: var(--bc-surface); padding: 24px 20px;
}
.bc-legal-footer__inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px; font-size: 0.75rem; color: var(--bc-text-light);
}
@media (min-width: 640px) {
  .bc-legal-footer__inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Animations ── */
@keyframes bc-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bc-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes bc-spin {
  to { transform: rotate(360deg); }
}
.bc-spin { animation: bc-spin 0.9s linear infinite; }
