/* ============================================================
   BABY OKAZ — Feuille de style v2
   Palette : corail #EF6363 / bleu #54A8DC / jaune #F5B82E / vert #6FBF73
   ============================================================ */

:root {
  --coral: #EF6363;
  --coral-dark: #D94F4F;
  --coral-light: #FDECEC;
  --blue: #54A8DC;
  --blue-dark: #3D8CBE;
  --blue-light: #E8F4FB;
  --yellow: #F5B82E;
  --green: #6FBF73;
  --ink: #2D3142;
  --ink-soft: #6B7280;
  --bg: #F7F8FA;
  --card: #FFFFFF;
  --line: #ECEDF1;
  --radius: 16px;
  --shadow: 0 2px 12px rgba(45, 49, 66, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 49, 66, 0.16);
  --nav-h: 64px;
  --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body { font-family: var(--font); background: #E9EBF0; color: var(--ink); -webkit-font-smoothing: antialiased; }

#app {
  max-width: 480px; margin: 0 auto; min-height: 100dvh;
  background: var(--bg); position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.12);
  display: flex; flex-direction: column;
}

/* ---------- Boot loader ---------- */
.boot-loader { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; min-height: 100dvh; }
.boot-logo { font-size: 44px; font-weight: 900; position: relative; }
.boot-logo-img { width: 180px; height: auto; }
.brand-icon { width: 30px; height: 30px; border-radius: 8px; }
.boot-baby { color: var(--coral); }
.boot-okaz { color: var(--blue); }
.boot-heart { text-align: center; color: var(--coral); font-size: 22px; }
.boot-sub { color: var(--ink-soft); font-size: 15px; }
.spinner { width: 28px; height: 28px; border: 3px solid var(--coral-light); border-top-color: var(--coral); border-radius: 50%; animation: spin 0.8s linear infinite; margin-top: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Bannières ---------- */
.demo-banner { background: linear-gradient(90deg, var(--yellow), #F9CD60); color: #5C4400; font-size: 12.5px; font-weight: 700; padding: 8px 14px; text-align: center; cursor: pointer; position: sticky; top: 0; z-index: 50; }
.live-banner { background: linear-gradient(90deg, var(--green), #8BD18F); color: #1d4d20; font-size: 12.5px; font-weight: 700; padding: 6px 14px; text-align: center; }

/* ---------- En-tête ---------- */
.app-header { background: var(--card); padding: 14px 16px 10px; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.app-header .brand { font-size: 24px; font-weight: 900; display: flex; align-items: center; gap: 6px; }
.brand .b1 { color: var(--coral); }
.brand .b2 { color: var(--blue); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.screen-header { background: var(--card); padding: 14px 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; position: sticky; top: 0; z-index: 40; }
.screen-header h1 { font-size: 19px; font-weight: 800; flex: 1; }
.back-btn { border: none; background: var(--bg); width: 38px; height: 38px; border-radius: 50%; font-size: 18px; cursor: pointer; color: var(--ink); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ---------- Recherche & filtres ---------- */
.search-bar { display: flex; align-items: center; gap: 8px; background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: 10px 14px; margin-top: 12px; }
.search-bar input { border: none; background: transparent; outline: none; font-size: 15px; flex: 1; font-family: var(--font); color: var(--ink); }
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0 4px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex-shrink: 0; border: 1.5px solid var(--line); background: var(--card); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--ink-soft); cursor: pointer; font-family: var(--font); white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.chip.active { background: var(--coral); border-color: var(--coral); color: #fff; }
.filter-row { display: flex; gap: 8px; padding: 8px 0 2px; }
.filter-row select { flex: 1; padding: 8px 10px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 13px; font-family: var(--font); color: var(--ink); background: var(--card); }

/* ---------- Contenu ---------- */
.content { flex: 1; padding-bottom: calc(var(--nav-h) + 24px); }
.content.no-nav { padding-bottom: 24px; }

/* ---------- Grille annonces ---------- */
.listing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; }
.listing-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; position: relative; transition: transform 0.15s; }
.listing-card:active { transform: scale(0.97); }
.listing-card .thumb { width: 100%; aspect-ratio: 1 / 0.9; object-fit: cover; display: block; background: var(--blue-light); }
.listing-card .fav-btn { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); font-size: 15px; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; }
.listing-card .info { padding: 10px 12px 12px; }
.listing-card .title { font-size: 13.5px; font-weight: 700; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 35px; }
.listing-card .price { font-size: 16px; font-weight: 900; color: var(--coral); margin-top: 4px; }
.listing-card .meta { font-size: 11.5px; color: var(--ink-soft); margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.badge-sold { position: absolute; top: 8px; left: 8px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }

/* ---------- Détail annonce ---------- */
.photo-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; background: var(--blue-light); }
.photo-carousel::-webkit-scrollbar { display: none; }
.photo-carousel img { width: 100%; flex-shrink: 0; aspect-ratio: 1 / 0.85; object-fit: cover; scroll-snap-align: center; }
.detail-body { padding: 18px 16px; }
.detail-title { font-size: 21px; font-weight: 800; line-height: 1.25; }
.detail-price { font-size: 26px; font-weight: 900; color: var(--coral); margin: 8px 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.tag { background: var(--blue-light); color: var(--blue-dark); font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px; }
.detail-desc { font-size: 14.5px; line-height: 1.55; color: #444; white-space: pre-wrap; margin: 14px 0; }
.seller-card { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 12px 14px; margin: 14px 0; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; flex-shrink: 0; }
.seller-card .name { font-weight: 800; font-size: 15px; }
.seller-card .rating { font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 3px; }
.detail-actions { position: sticky; bottom: 0; background: var(--card); border-top: 1px solid var(--line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); display: flex; gap: 10px; }

/* ---------- Boutons ---------- */
.btn { border: none; border-radius: 14px; padding: 14px 18px; font-size: 15.5px; font-weight: 800; cursor: pointer; font-family: var(--font); transition: opacity 0.15s, transform 0.1s; text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: default; }
.btn-primary { background: var(--coral); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-outline { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost { background: transparent; color: var(--coral); }
.btn-block { width: 100%; display: flex; }
.btn-ai { background: linear-gradient(135deg, #8E6FE8, var(--blue)); color: #fff; }
.btn-danger { background: #fff; color: #E03131; border: 1.5px solid #FFD3D3; }

/* ---------- Formulaires ---------- */
.form-section { padding: 16px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 15px; font-family: var(--font); background: var(--card); color: var(--ink); outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field .hint { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }

/* ---------- Upload photos ---------- */
.photo-upload-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; }
.photo-slot { width: 92px; height: 92px; border-radius: 12px; flex-shrink: 0; position: relative; overflow: hidden; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot .del { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border-radius: 50%; border: none; background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; cursor: pointer; line-height: 1; }
.photo-add { width: 92px; height: 92px; border: 2px dashed #C9CDD6; border-radius: 12px; background: var(--card); font-size: 26px; color: #9AA0AC; cursor: pointer; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-family: var(--font); }
.photo-add small { font-size: 10px; font-weight: 700; }

/* ---------- Info box ---------- */
.info-box { background: var(--blue-light); color: var(--blue-dark); border-radius: 12px; padding: 12px 14px; font-size: 13px; line-height: 1.5; margin: 12px 0; display: flex; align-items: flex-start; gap: 8px; }
.info-box.warn { background: #FFF6E0; color: #7A5B00; }
.info-box.ok { background: #E9F7EA; color: #2B6B2F; }
.info-box.coral { background: var(--coral-light); color: var(--coral-dark); }

/* ---------- Navigation basse ---------- */
.bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 480px; height: calc(var(--nav-h) + env(safe-area-inset-bottom)); background: var(--card); border-top: 1px solid var(--line); display: flex; justify-content: space-around; align-items: flex-start; padding-top: 8px; z-index: 60; }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer; color: #9AA0AC; font-size: 10.5px; font-weight: 800; border: none; background: none; font-family: var(--font); width: 64px; position: relative; }
.nav-item .ico { font-size: 22px; }
.nav-item.active { color: var(--coral); }
.nav-publish .ico { background: var(--coral); color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-top: -16px; box-shadow: 0 4px 12px rgba(239, 99, 99, 0.4); }

/* ---------- Auth ---------- */
.auth-screen { padding: 48px 24px 32px; display: flex; flex-direction: column; justify-content: center; min-height: 100dvh; }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .big { font-size: 56px; color: var(--coral); }
.auth-logo .name { font-size: 36px; font-weight: 900; }
.auth-logo .sub { color: var(--ink-soft); font-size: 15px; margin-top: 6px; }
.auth-links { text-align: center; margin-top: 18px; font-size: 14px; color: var(--ink-soft); }
.auth-links a { color: var(--blue-dark); font-weight: 800; cursor: pointer; text-decoration: none; }

/* ---------- Chat ---------- */
.conv-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--card); border-bottom: 1px solid var(--line); cursor: pointer; }
.conv-item .conv-body { flex: 1; min-width: 0; }
.conv-item .conv-top { display: flex; justify-content: space-between; gap: 8px; }
.conv-item .who { font-weight: 800; font-size: 15px; }
.conv-item .when { font-size: 11.5px; color: var(--ink-soft); flex-shrink: 0; }
.conv-item .last { font-size: 13.5px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.conv-thumb { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.chat-screen { display: flex; flex-direction: column; height: 100dvh; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 8px; background: var(--bg); }
.bubble { max-width: 78%; padding: 10px 14px; border-radius: 18px; font-size: 14.5px; line-height: 1.45; white-space: pre-wrap; word-wrap: break-word; }
.bubble.me { align-self: flex-end; background: var(--coral); color: #fff; border-bottom-right-radius: 6px; }
.bubble.them { align-self: flex-start; background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 6px; }
.bubble .time { display: block; font-size: 10px; opacity: 0.7; margin-top: 3px; text-align: right; }
.chat-input-row { display: flex; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: var(--card); border-top: 1px solid var(--line); }
.chat-input-row input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 15px; font-family: var(--font); outline: none; }
.chat-input-row button { width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--coral); color: #fff; font-size: 18px; cursor: pointer; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ---------- Profil ---------- */
.profile-head { background: var(--card); padding: 26px 16px 20px; text-align: center; border-bottom: 1px solid var(--line); }
.profile-head .avatar { width: 76px; height: 76px; font-size: 30px; margin: 0 auto 12px; }
.profile-head h2 { font-size: 20px; font-weight: 900; }
.profile-head .email { color: var(--ink-soft); font-size: 13.5px; margin-top: 2px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.profile-head .stats { display: flex; justify-content: center; gap: 26px; margin-top: 14px; }
.profile-head .stat { text-align: center; }
.profile-head .stat .n { font-weight: 900; font-size: 17px; }
.profile-head .stat .l { font-size: 11.5px; color: var(--ink-soft); }
.menu-list { background: var(--card); margin-top: 12px; }
.menu-item { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--line); cursor: pointer; font-size: 15px; font-weight: 700; }
.menu-item .mi-ico { font-size: 19px; width: 26px; text-align: center; display: flex; align-items: center; justify-content: center; }
.menu-item .arrow { margin-left: auto; color: #C2C6CF; }
.menu-item.danger { color: #E03131; }

/* ---------- Comptes / connexions ---------- */
.service-card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 14px; }
.service-card .svc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.service-card .svc-head .svc-ico { font-size: 22px; display: flex; align-items: center; }
.service-card .svc-head h3 { font-size: 16px; flex: 1; }
.status-pill { font-size: 11.5px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.status-pill.on { background: #E9F7EA; color: #2B6B2F; }
.status-pill.off { background: #FFEAEA; color: #C92A2A; }
.status-pill.opt { background: var(--blue-light); color: var(--blue-dark); }
.service-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 10px; }

/* ---------- Checkout ---------- */
.price-table { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 16px; margin: 14px 0; }
.price-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 6px 0; color: var(--ink-soft); }
.price-row.total { border-top: 1.5px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 900; font-size: 17px; color: var(--ink); }

/* ---------- État vide ---------- */
.empty-state { text-align: center; padding: 60px 30px; color: var(--ink-soft); }
.empty-state .big { font-size: 52px; margin-bottom: 12px; }
.empty-state h3 { color: var(--ink); margin-bottom: 6px; font-size: 17px; }
.empty-state p { font-size: 14px; line-height: 1.5; }

/* ---------- Toasts ---------- */
#toast-container { position: fixed; bottom: calc(var(--nav-h) + 20px); left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; width: min(420px, calc(100vw - 32px)); }
.toast { background: var(--ink); color: #fff; padding: 13px 18px; border-radius: 14px; font-size: 14px; font-weight: 700; font-family: var(--font); box-shadow: var(--shadow-lg); animation: toastIn 0.25s ease; text-align: center; }
.toast.success { background: var(--green); }
.toast.error { background: #E03131; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Bandeaux publicitaires ---------- */
.ad-banner { background: #eef2ff; border-top: 1px solid #c8d3f0; border-bottom: 1px solid #c8d3f0; padding: 10px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.ad-label { font-size: 9.5px; color: #6a7aaa; font-weight: 800; border: 1px solid #c8d3f0; border-radius: 4px; padding: 2px 5px; flex-shrink: 0; letter-spacing: 0.06em; text-transform: uppercase; }
.ad-body { flex: 1; font-size: 12.5px; color: #3a4a70; line-height: 1.4; min-width: 0; }
.ad-body strong { font-weight: 700; }
.ad-arrow { color: #7a8bb0; font-size: 14px; flex-shrink: 0; }

/* ---------- Divers ---------- */
.section-title { font-size: 16px; font-weight: 900; padding: 18px 16px 6px; }
.legal-body { padding: 18px; font-size: 14px; line-height: 1.65; color: #444; }
.legal-body h2 { font-size: 17px; margin: 18px 0 8px; color: var(--ink); }
.legal-body p { margin-bottom: 10px; }
hr.sep { border: none; border-top: 1px solid var(--line); margin: 14px 0; }

/* ---------- Bandeau cookies (RGPD) ---------- */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; display: flex; justify-content: center; padding: 12px; }
.cookie-card { background: var(--card, #fff); max-width: 456px; width: 100%; border-radius: 16px; padding: 16px; box-shadow: 0 -4px 30px rgba(0,0,0,0.25); border: 1px solid var(--line, #eee); }
.cookie-title { font-weight: 800; font-size: 15px; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; color: var(--coral, #EF6363); }
.cookie-card p { font-size: 13px; line-height: 1.45; color: var(--ink, #333); margin-bottom: 12px; }
.cookie-card a { color: var(--blue, #54A8DC); text-decoration: underline; cursor: pointer; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .btn { flex: 1; padding: 10px; font-size: 14px; }

/* ---------- Onglets pages légales ---------- */
.legal-tabs { display: flex; gap: 6px; padding: 12px 0 4px; overflow-x: auto; }
.legal-tab { border: 1px solid var(--line, #ddd); background: var(--card, #fff); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; color: var(--ink, #333); }
.legal-tab.active { background: var(--coral, #EF6363); border-color: var(--coral, #EF6363); color: #fff; }
.legal-body h3 { font-size: 14.5px; font-weight: 800; margin: 14px 0 4px; }

/* ---------- Cagnotte ---------- */
.wallet-hero { background: linear-gradient(135deg, var(--coral, #EF6363), #F08C56); border-radius: 18px; padding: 24px 18px; text-align: center; color: #fff; margin: 14px 0; }
.wallet-label { font-size: 13px; font-weight: 700; opacity: 0.9; display: flex; align-items: center; justify-content: center; gap: 6px; }
.wallet-balance { font-size: 40px; font-weight: 900; margin: 6px 0 2px; }
.wallet-hint { font-size: 12px; opacity: 0.85; }
.wallet-entry { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--line, #eee); background: var(--card, #fff); }
.wallet-entry:last-child { border-bottom: none; }
.we-body { flex: 1; min-width: 0; }
.we-label { font-size: 13.5px; font-weight: 600; }
.we-when { font-size: 11.5px; color: var(--ink-soft, #999); }
.we-amount { font-weight: 800; font-size: 14px; white-space: nowrap; }
.we-amount.pos { color: var(--green, #4CAF50); }
.we-amount.neg { color: var(--coral, #EF6363); }
.wallet-badge { background: var(--green, #4CAF50); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; padding: 2px 8px; margin-left: 6px; }
.wallet-toggle { display: flex; align-items: center; gap: 10px; background: var(--card, #fff); border: 1.5px solid var(--green, #4CAF50); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; cursor: pointer; font-size: 13.5px; }
.wallet-toggle input { width: 18px; height: 18px; accent-color: var(--green, #4CAF50); }

/* ---------- Cartes achat/vente ---------- */
.purchase-card { background: var(--card, #fff); border-radius: 14px; padding: 12px; margin-bottom: 12px; border: 1px solid var(--line, #eee); }
.tx-status { font-size: 12.5px; font-weight: 700; margin-top: 10px; padding: 8px 10px; border-radius: 10px; display: flex; align-items: center; gap: 6px; }
.tx-status.done { background: #E8F5E9; color: #2E7D32; }
.tx-status.pending { background: #FFF3E0; color: #B26A00; }
.btn-confirm { font-size: 13.5px; }
.ad-banner-real { position: relative; margin: 12px 0; min-height: 60px; background: var(--card, #fff); border-radius: 12px; overflow: hidden; }
.ad-banner-real .ad-label { position: absolute; top: 4px; right: 8px; font-size: 10px; color: var(--ink-soft, #999); z-index: 2; }

/* ---------- Retraits de cagnotte ---------- */
.withdraw-pending{display:flex;align-items:center;gap:8px;background:#FFF6E5;border:1px solid #F5D08C;color:#8a5a00;border-radius:12px;padding:10px 14px;font-size:13px;font-weight:600;margin-bottom:14px}
.wd-methods{display:flex;gap:10px}
.wd-method{flex:1;display:flex;align-items:center;justify-content:center;gap:7px;padding:12px;border-radius:12px;border:2px solid var(--line);background:#fff;font-weight:700;font-size:14px;color:var(--ink-soft);cursor:pointer}
.wd-method.active{border-color:var(--brand);color:var(--brand);background:var(--brand-soft, #FFF0F3)}
.field-hint{display:block;margin-top:6px;font-size:12px;color:var(--ink-soft);line-height:1.45}
.field-hint .ti{color:#1a9c6b}
.wd-legal{font-size:12px;color:var(--ink-soft);line-height:1.5;margin:14px 2px 20px}
.wd-status{font-size:11px;font-weight:700;padding:2px 8px;border-radius:20px;margin-left:6px}
.wd-status.pending{background:#FFF6E5;color:#8a5a00}
.wd-status.paid{background:#E3F7EC;color:#1a9c6b}
.wd-status.rejected{background:#FDE8E8;color:#c0392b}
.admin-wd-card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:14px;margin-bottom:12px}
.admin-wd-card.pending{border-color:#F5D08C}
.admin-wd-top{display:flex;align-items:center;gap:8px;font-size:16px;margin-bottom:8px}
.admin-wd-line{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--ink);margin:4px 0;word-break:break-all}
.admin-wd-line .mono{font-family:ui-monospace,monospace;font-size:13px}
.copy-btn{border:none;background:var(--bg);border-radius:8px;padding:4px 8px;cursor:pointer;color:var(--ink-soft)}
.admin-wd-actions{display:flex;gap:10px;margin-top:12px}
.admin-wd-actions .btn{flex:1;padding:10px}
