/* BundleLova preview — mirrors the production Tailwind tokens */

:root {
  --bg: #0B1220;
  --bg-surface: #111827;
  --bg-raised: #1A2332;
  --bg-inset: #0A0F1A;
  --line: #1F2937;
  --line-strong: #2A3447;
  --ink: #F8FAFC;
  --ink-muted: #94A3B8;
  --ink-subtle: #64748B;
  --ink-dim: #475569;
  --yellow: #FFC107;
  --yellow-dark: #E0A800;
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --green: #22C55E;
  --green-light: #4ADE80;
  --red: #EF4444;
  --whatsapp: #25D366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-feature-settings: "cv11", "ss01";
}
::selection { background: rgba(255, 193, 7, 0.3); }

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }
code { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 0.9em; background: var(--bg-inset); padding: 1px 5px; border-radius: 4px; }

input, select, textarea {
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-inset);
  border: 0.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input::placeholder, textarea::placeholder { color: var(--ink-dim); }
input:focus, textarea:focus, select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
}
input:disabled { opacity: 0.6; }

/* ---------- Layout ---------- */

.preview-banner {
  background: rgba(255, 193, 7, 0.12);
  border-bottom: 0.5px solid rgba(255, 193, 7, 0.25);
  color: var(--yellow);
  text-align: center;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
}
.preview-banner a { color: var(--yellow); text-decoration: underline; }
.preview-banner .links { margin-left: 8px; }
.preview-banner .links a { margin: 0 4px; }

.app {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--line);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-row { display: inline-flex; align-items: center; gap: 8px; }
.brand-mark {
  width: 28px; height: 28px;
  border: 2.5px solid var(--blue);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, transparent 40%, var(--yellow) 40%, var(--yellow) 60%, transparent 60%);
  mask: linear-gradient(135deg, transparent 35%, #000 38%, #000 62%, transparent 65%);
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.brand-text .quick { color: var(--ink); }
.brand-text .data { color: var(--yellow); }
.brand-sub {
  font-size: 10px;
  color: var(--ink-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 4px;
}
.header-right { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  color: var(--ink-muted);
  transition: transform 0.1s ease;
}
.icon-btn:active { transform: scale(0.95); }
.icon-btn.menu {
  background: var(--yellow);
  color: var(--bg);
  border: none;
}

.content {
  flex: 1;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.1s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-yellow { background: var(--yellow); color: var(--bg); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-ghost { background: var(--bg-raised); color: var(--ink); border: 0.5px solid var(--line); }
.btn-ghost.danger { color: var(--red); }
.btn-block { width: 100%; }

/* ---------- Cards ---------- */

.card {
  background: var(--bg-surface);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.card-raised {
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.card-link { display: block; transition: transform 0.1s ease; }
.card-link:active { transform: scale(0.99); }

.section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  font-weight: 600;
}

/* ---------- Pills / status ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}
.pill-success { background: rgba(34, 197, 94, 0.15); color: var(--green-light); }
.pill-warn { background: rgba(255, 193, 7, 0.15); color: var(--yellow); }
.pill-danger { background: rgba(239, 68, 68, 0.15); color: var(--red); }
.pill-info { background: rgba(59, 130, 246, 0.15); color: var(--blue-light); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Helpers ---------- */

.muted { color: var(--ink-muted); }
.subtle { color: var(--ink-subtle); }
.text-yellow { color: var(--yellow); }
.text-green { color: var(--green-light); }
.text-blue { color: var(--blue-light); }
.text-red { color: var(--red); }
.font-bold { font-weight: 700; }
.font-semi { font-weight: 600; }
.text-xs { font-size: 11px; }
.text-sm { font-size: 13px; }
.text-base { font-size: 14px; }
.text-lg { font-size: 16px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 22px; }
.text-3xl { font-size: 28px; }
.center { text-align: center; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.back-link svg { width: 14px; height: 14px; }

/* ---------- Hero / network grid ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 0.5px solid rgba(255, 193, 7, 0.3);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.18) 0%, var(--bg-surface) 60%);
  margin-bottom: 20px;
}
.hero-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--blue), var(--green), var(--yellow));
}
.hero-content { padding: 24px 20px; }
.hero h1 { font-size: 24px; font-weight: 700; line-height: 1.2; }
.hero h1 .accent { color: var(--yellow); }
.hero p { font-size: 13px; color: var(--ink-muted); margin-top: 8px; line-height: 1.5; }
.hero-ctas { display: flex; gap: 8px; margin-top: 16px; }
.hero-ctas .btn { flex: 1; }

.trust-pill {
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.trust-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.trust-pill .label { font-size: 14px; }
.trust-pill .label strong { font-weight: 600; }
.trust-pill .label .muted { color: var(--ink-muted); }

.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.network-tile {
  background: var(--bg-surface);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.1s ease;
  position: relative;
}
.network-tile:active { transform: scale(0.99); }
.network-tile .tile-badge {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow);
}
.network-tile .logo-wrap {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}
.network-tile .logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.network-tile .logo-wrap.fill { padding: 0; }
.network-tile .logo-wrap.fill img { width: 100%; height: 100%; object-fit: cover; }
.network-tile .meta { padding: 12px; }
.network-tile .name { font-size: 14px; font-weight: 600; line-height: 1.2; }
.network-tile .price { font-size: 11px; color: var(--ink-muted); margin: 2px 0 8px; }
.network-tile .cta {
  text-align: center;
  padding: 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: var(--yellow);
  color: var(--bg);
}

/* ---------- Feature cards ---------- */

.feature-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon.yellow { background: rgba(255, 193, 7, 0.15); color: var(--yellow); }
.feature-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--blue-light); }
.feature-icon.green { background: rgba(34, 197, 94, 0.15); color: var(--green-light); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 14px; font-weight: 600; }
.feature-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; margin-top: 2px; }

/* ---------- Bundle pills ---------- */

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.bundle-pill {
  position: relative;
  padding: 10px 4px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-surface);
  color: var(--ink);
  border: 0.5px solid var(--line);
  text-align: center;
  cursor: pointer;
}
.bundle-pill.selected { background: var(--yellow); color: var(--bg); border: 1.5px solid var(--yellow); }
.bundle-pill .star {
  position: absolute;
  top: -6px; right: -6px;
  width: 16px; height: 16px;
  background: var(--yellow);
  color: var(--bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}

/* ---------- Order summary rows ---------- */

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 0.5px dashed var(--line);
  font-size: 13px;
}
.row:last-child { border-bottom: none; }
.row .label { color: var(--ink-muted); }
.row .value { font-weight: 600; }
.row.total { font-size: 15px; padding-top: 12px; border-top: 0.5px solid var(--line); border-bottom: none; }
.row.total .value { color: var(--yellow); font-weight: 700; }

/* ---------- Not supported list ---------- */

.x-list { list-style: none; }
.x-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.x-mark {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.notice {
  border-left: 4px solid var(--yellow);
  background: rgba(255, 193, 7, 0.1);
  border-radius: 0 16px 16px 0;
  padding: 12px 14px;
}
.notice p { font-size: 12px; line-height: 1.6; color: rgba(255, 248, 220, 0.9); }
.notice strong { color: var(--yellow); font-weight: 600; }

/* ---------- Side menu drawer ---------- */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85%;
  max-width: 360px;
  background: var(--bg-surface);
  border-left: 0.5px solid var(--line);
  z-index: 50;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.2s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 0.5px solid var(--line);
}
.drawer-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-section { padding: 12px 16px; }
.drawer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-subtle);
  font-weight: 600;
  margin-bottom: 8px;
  padding: 0 4px;
}
.drawer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 4px;
  font-size: 14px;
}
.drawer-row .icon-box {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.drawer-row .label { flex: 1; }
.drawer-row .chev {
  width: 14px; height: 14px;
  color: var(--ink-subtle);
}
.drawer-row.profile {
  padding: 12px;
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  margin-bottom: 16px;
}
.drawer-row.profile .icon-box {
  width: 48px; height: 48px;
  background: rgba(255, 193, 7, 0.2);
  font-size: 22px;
}
.drawer-row.profile .label { font-weight: 600; }
.drawer-row.profile .sub { font-size: 11px; color: var(--ink-muted); }

/* ---------- Dashboard ---------- */

.welcome-card {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  color: var(--bg);
}
.welcome-card-inner { padding: 20px; }
.welcome-greet { font-size: 14px; font-weight: 500; opacity: 0.8; }
.welcome-name { font-size: 28px; font-weight: 700; margin-top: 2px; }
.welcome-sub { font-size: 12px; opacity: 0.8; margin-top: 2px; }
.welcome-icons { display: flex; gap: 8px; }
.welcome-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(11, 18, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
}
.welcome-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 12px;
}
.welcome-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.welcome-action {
  background: rgba(11, 18, 32, 0.85);
  color: var(--ink);
  border-radius: 10px;
  padding: 10px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.welcome-action.green { background: var(--green); color: #fff; }
.welcome-action svg { width: 14px; height: 14px; }

.system-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.system-card .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.system-card .info { flex: 1; }
.system-card .info p:first-child { font-size: 14px; font-weight: 600; }
.system-card .info p:last-child { font-size: 12px; color: var(--ink-muted); }
.system-card .badge-247 {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 193, 7, 0.2);
  color: var(--yellow);
}
.system-card .icons { display: flex; gap: 6px; }
.system-card .icons .badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.help-banner .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-banner .label { flex: 1; font-size: 14px; font-weight: 600; color: var(--yellow); }

.dash-section { position: relative; margin-bottom: 16px; }
.dash-section .top-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--blue), var(--green), var(--yellow));
  border-radius: 16px 16px 0 0;
}
.dash-section .body { padding: 16px; padding-top: 20px; }

.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tile-mini {
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  text-align: center;
}
.tile-mini .square {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  overflow: hidden;
}
.tile-mini .square img { max-width: 80%; max-height: 80%; object-fit: contain; }
.tile-mini p { font-size: 11px; font-weight: 600; }

.stats-card {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  color: var(--bg);
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stats-cell { display: flex; align-items: center; gap: 12px; }
.stats-cell .icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(11, 18, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-cell .label { font-size: 11px; opacity: 0.8; }
.stats-cell .value { font-size: 14px; font-weight: 700; }

.empty-state { text-align: center; padding: 32px 16px; }
.empty-state .icon-bubble {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--yellow);
}
.empty-state h3 { font-size: 16px; font-weight: 600; }
.empty-state p { font-size: 13px; color: var(--ink-muted); margin: 4px 0 20px; }

.qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.qa-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  border-radius: 16px;
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  color: var(--yellow);
}
.qa-tile.highlight { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }
.qa-tile svg { width: 18px; height: 18px; }
.qa-tile span { font-size: 10px; font-weight: 600; color: var(--ink); }
.qa-tile.highlight span { color: var(--bg); }

/* ---------- Order pages ---------- */

@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 56px; height: 56px;
  border: 3px solid rgba(255, 193, 7, 0.3);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

.success-banner {
  background: rgba(34, 197, 94, 0.1);
  border: 0.5px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}
.success-banner .check {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 12px;
}
.success-banner h2 { font-size: 18px; font-weight: 700; color: var(--green-light); }
.success-banner p { font-size: 13px; color: rgba(74, 222, 128, 0.9); margin-top: 4px; }

.timeline { display: flex; flex-direction: column; gap: 12px; }
.timeline-row { display: flex; gap: 12px; }
.timeline-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.timeline-dot.pending {
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  color: var(--ink-muted);
}
.timeline-dot.current {
  background: var(--yellow);
  color: var(--bg);
}
.timeline-row .step-title { font-size: 13px; font-weight: 600; }
.timeline-row .step-meta { font-size: 11px; color: var(--ink-muted); }

/* ---------- Wallet ---------- */

.wallet-card {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  color: var(--bg);
}
.wallet-card .balance-label { font-size: 12px; font-weight: 500; opacity: 0.8; }
.wallet-card .balance-value { font-size: 32px; font-weight: 700; margin-top: 4px; }
.wallet-card .meta { font-size: 11px; opacity: 0.8; margin-top: 8px; }

.method-card {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 8px;
}
.method-card.selected {
  border: 2px solid var(--yellow);
  background: rgba(255, 193, 7, 0.08);
}
.method-card .logo-box {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-card .logo-box img { max-width: 80%; max-height: 80%; object-fit: contain; }
.method-card .logo-box.fill img { width: 100%; height: 100%; object-fit: cover; }
.method-card .info { flex: 1; }
.method-card .info p:first-child { font-size: 14px; font-weight: 600; }
.method-card .info p:last-child { font-size: 11px; color: var(--ink-muted); }
.method-card .radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  flex-shrink: 0;
  position: relative;
}
.method-card.selected .radio { border-color: var(--yellow); }
.method-card.selected .radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ---------- FAQ accordion ---------- */
details.faq-card {
  background: var(--bg-surface);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 8px;
  cursor: pointer;
}
details.faq-card summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
details.faq-card summary::-webkit-details-marker { display: none; }
details.faq-card summary::after {
  content: '+';
  color: var(--ink-muted);
  font-size: 18px;
  transition: transform 0.15s;
}
details.faq-card[open] summary::after { transform: rotate(45deg); }
details.faq-card p { font-size: 13px; color: var(--ink-muted); margin-top: 10px; line-height: 1.6; }

/* ---------- Footer ---------- */
.footer {
  margin-top: auto;
  border-top: 0.5px solid var(--line);
  padding: 32px 16px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.footer p.tagline { font-size: 14px; color: var(--ink-muted); line-height: 1.6; margin: 12px 0 16px; }
.footer .wa-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 0.5px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  margin-bottom: 24px;
}
.footer .wa-banner .wa-icon {
  width: 36px; height: 36px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .wa-banner p:first-child { font-size: 14px; font-weight: 600; color: var(--green-light); }
.footer .wa-banner p:last-child { font-size: 12px; color: var(--ink-muted); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.footer-col p.section-title { margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: var(--ink-muted); }
.footer-col a:hover { color: var(--ink); }
.footer-contact p { font-size: 13px; color: var(--ink-muted); margin-bottom: 8px; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-subtle);
}

/* ---------- Sign-in promo card ---------- */
.signin-promo {
  background: rgba(255, 193, 7, 0.1);
  border: 0.5px solid rgba(255, 193, 7, 0.3);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.signin-promo h2 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.signin-promo p { font-size: 13px; color: var(--ink-muted); margin-bottom: 12px; }

/* ---------- Inputs labels ---------- */
.input-label {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.input-help {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 6px;
}

/* ---------- Crumbs ---------- */
.crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-subtle);
  margin-bottom: 8px;
}
.crumbs a { color: var(--yellow); }
.crumbs .here { color: var(--ink); font-weight: 600; }

/* ---------- Selected summary in checkout ---------- */
.summary-card { padding: 16px; }

/* ---------- Sign-out button ---------- */
.signout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  background: transparent;
  border-radius: 10px;
}

/* ---------- Sign-in/sign-up form ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}
.divider .line { flex: 1; height: 1px; background: var(--line); }
.divider span { font-size: 11px; color: var(--ink-subtle); }

/* ---------- Quick amount buttons ---------- */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.amount-btn {
  padding: 10px;
  border-radius: 10px;
  background: var(--bg-raised);
  border: 0.5px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}
.amount-btn:hover { border-color: var(--yellow); }
