/* ─────────────────────────────────────────────────────
   Deposit & withdrawal page — component styles
   Loaded only on /deposit-withdrawal/
   ───────────────────────────────────────────────────── */

/* ── Mobile hero CTA ──────────────────────────────────── */

.mobile-hero-cta {
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 980px) {
  .mobile-hero-cta {
    display: none;
  }
}

.mobile-hero-cta .demo-banner__cta {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  text-align: center;
}

.mobile-hero-cta .demo-banner__fine {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Same-method rule callout ─────────────────────────── */

.rule-box {
  background: #fff8f0;
  border: 2px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
}

.rule-box__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #9a3412;
  margin: 0 0 0.4rem;
}

.rule-box p {
  margin: 0;
  font-size: 0.875rem;
  color: #431407;
  line-height: 1.55;
}

/* ── Pre-withdrawal checklist widget ─────────────────── */

.checklist-widget {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.checklist-widget__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b7280;
  margin: 0 0 1rem;
}

.checklist-widget__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.checklist-widget__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.45;
}

.checklist-widget__list li:last-child {
  border-bottom: none;
}

.checklist-widget__list input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #00c853;
  cursor: pointer;
}

.checklist-widget__list label {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.checklist-item__title {
  font-weight: 600;
  color: #111;
  display: block;
}

.checklist-item__desc {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.1rem;
  display: block;
}

.checklist-status {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 7px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.checklist-status--incomplete {
  background: #fef3c7;
  color: #92400e;
}

.checklist-status--complete {
  background: #dcfce7;
  color: #15803d;
}

/* ── Step list ────────────────────────────────────────── */

.steps-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  counter-reset: step;
}

.steps-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  counter-increment: step;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.steps-list li:last-child {
  border-bottom: none;
}

.steps-list li::before {
  content: counter(step);
  min-width: 1.75rem;
  height: 1.75rem;
  background: #00c853;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Troubleshooting cards ────────────────────────────── */

.trouble-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.trouble-card__title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #111;
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trouble-card__title::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.trouble-card p {
  margin: 0;
  font-size: 0.83rem;
  color: #4b5563;
  line-height: 1.5;
}

.trouble-card__fix {
  margin-top: 0.5rem !important;
  color: #15803d !important;
  font-weight: 500;
}

/* ── Promo code cards ─────────────────────────────────── */

.promo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}

@media (max-width: 680px) {
  .promo-cards {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.promo-card--public {
  border-color: #00c853;
  background: #f0fff5;
}

.promo-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.promo-card--public .promo-card__label {
  color: #15803d;
}

.promo-card__code {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #111;
  font-family: monospace;
  background: #f3f4f6;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  display: inline-block;
  width: fit-content;
}

.promo-card--public .promo-card__code {
  background: #dcfce7;
  color: #14532d;
}

.promo-card__meta {
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.45;
}

.promo-card__note {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.promo-tier-table {
  font-size: 0.78rem;
  border-collapse: collapse;
  width: 100%;
  margin: 0.25rem 0;
}

.promo-tier-table th,
.promo-tier-table td {
  padding: 0.3rem 0.5rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.promo-tier-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.promo-card__cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.55rem 1rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s;
}

.promo-card__cta:hover {
  background: #333;
}

.promo-card--public .promo-card__cta {
  background: #00c853;
  color: #fff;
}

.promo-card--public .promo-card__cta:hover {
  background: #00a844;
}
