/* ============================================================
   YourChoiceX — Expanded Account Area
   Amazon/eBay-style "Your Account" hub, orders, addresses,
   payment methods, security & notifications.
   Built on the existing storefront tokens (styles.css).
   ============================================================ */

.acct-wrap { max-width: 1100px; margin: 0 auto; padding: 14px 16px 64px; }

/* Breadcrumb row already styled by .breadcrumb; add account title row */
.acct-pagehead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin: 6px 0 18px;
}
.acct-pagehead h1 { font-size: 28px; font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
.acct-pagehead .acct-greet { font-size: 13px; color: var(--muted); margin-top: 3px; }
.acct-pagehead .acct-greet strong { color: var(--ink); }

/* Back link used on subviews */
.acct-back {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: 0;
  color: var(--blue); font-size: 13px; font-weight: 600; cursor: pointer; padding: 2px 0; margin-bottom: 10px;
}
.acct-back:hover { text-decoration: underline; }
.acct-back i { width: 15px; height: 15px; }

/* ---------- Account home: card grid ---------- */
.acct-hub-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px;
}
.acct-card {
  display: flex; gap: 14px; align-items: flex-start; text-align: left;
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  padding: 16px; cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .05s;
  width: 100%; font: inherit; color: inherit;
}
.acct-card:hover { border-color: #adb5b8; box-shadow: var(--shadow-hover); }
.acct-card:active { transform: translateY(1px); }
.acct-card-ico {
  width: 50px; height: 50px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--cyan-soft); color: var(--blue);
}
.acct-card-ico i { width: 26px; height: 26px; }
.acct-card-body { min-width: 0; }
.acct-card-body h3 { margin: 0 0 3px; font-size: 16px; font-weight: 800; color: var(--ink); }
.acct-card-body p { margin: 0; font-size: 13px; line-height: 1.45; color: var(--muted); }
.acct-card-meta { margin-top: 7px; font-size: 12px; font-weight: 700; color: var(--blue); }

/* ---------- Generic section shell ---------- */
.acct-section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.acct-section-head h2 { font-size: 21px; font-weight: 800; color: var(--ink); margin: 0; }
.acct-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 18px;
}
.acct-panel + .acct-panel { margin-top: 14px; }
.acct-panel-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 0 0 14px; }

/* ---------- Buttons (lean on existing .button, add small variants) ---------- */
.acct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 34px; padding: 0 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.acct-btn i { width: 15px; height: 15px; }
.acct-btn:hover { background: #f3f5f6; border-color: #adb5b8; }
.acct-btn.primary { background: linear-gradient(to bottom, #f7dfa5, #f0c14b); border-color: var(--retail-orange-border); color: #111; }
.acct-btn.primary:hover { background: linear-gradient(to bottom, #f5d78e, #eeb933); border-color: #a27d2c; }
.acct-btn.ghost { border-color: var(--blue); color: var(--blue); background: #fff; }
.acct-btn.ghost:hover { background: var(--cyan-soft); }
.acct-btn.danger { border-color: #e3b9b0; color: var(--red); background: #fff; }
.acct-btn.danger:hover { background: var(--red-soft); border-color: var(--red); }
.acct-btn.sm { height: 30px; padding: 0 12px; font-size: 12px; }
.acct-btn-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* Inline link-buttons (Amazon style stacked actions) */
.acct-linkbtn {
  background: none; border: 0; color: var(--blue); font-size: 13px; font-weight: 600; cursor: pointer;
  padding: 0; text-align: left;
}
.acct-linkbtn:hover { text-decoration: underline; }

/* ---------- Filter chips / order toolbar ---------- */
.acct-toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.acct-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.acct-chip {
  height: 32px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer;
}
.acct-chip:hover { border-color: #adb5b8; color: var(--ink); }
.acct-chip.active { background: var(--retail-navy); border-color: var(--retail-navy); color: #fff; }
.acct-search {
  display: flex; align-items: center; gap: 8px; height: 36px; padding: 0 12px; margin-left: auto;
  border: 1px solid #cccccc; border-radius: 999px; background: #fff; min-width: 230px;
}
.acct-search i { width: 16px; height: 16px; color: var(--muted); }
.acct-search input { border: 0; outline: 0; font-size: 13px; flex: 1; background: none; min-width: 0; }

/* ---------- Order cards ---------- */
.acct-order { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--surface); margin-bottom: 16px; }
.acct-order-top {
  display: flex; flex-wrap: wrap; gap: 18px 32px; align-items: center;
  background: var(--surface-strong); border-bottom: 1px solid var(--line); padding: 12px 18px;
}
.acct-order-top .om { display: flex; flex-direction: column; gap: 2px; }
.acct-order-top .om .k { font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); }
.acct-order-top .om .v { font-size: 13px; font-weight: 600; color: var(--ink); }
.acct-order-top .om-right { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.acct-order-num { font-size: 12px; color: var(--muted); }
.acct-order-num strong { color: var(--ink); }

.acct-order-body { padding: 16px 18px; display: flex; flex-wrap: wrap; gap: 18px; }
.acct-order-status-line { width: 100%; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.acct-order-status-line .lbl { font-size: 15px; font-weight: 800; color: var(--ink); }

.acct-order-items { flex: 1 1 360px; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.acct-line { display: flex; gap: 14px; align-items: flex-start; }
.acct-thumb {
  width: 64px; height: 64px; flex: none; border-radius: 6px; border: 1px solid var(--line);
  object-fit: cover; background: #f3f5f6;
}
.acct-line-info { min-width: 0; }
.acct-line-name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.acct-line-name a { color: var(--blue); }
.acct-line-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.acct-line-actions { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 8px; }

.acct-order-actions { flex: 0 0 210px; display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 720px){ .acct-order-actions { flex-basis: 100%; } }

/* ---------- Badges / status ---------- */
.acct-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.acct-badge i { width: 13px; height: 13px; }
.acct-badge.ok { background: var(--green-soft); color: var(--green); }
.acct-badge.bad { background: var(--red-soft); color: var(--red); }
.acct-badge.pending { background: #fff6e5; color: #b26b00; }
.acct-badge.info { background: var(--cyan-soft); color: var(--blue); }
.acct-badge.active { background: #efe9ff; color: #6d28d9; }
.acct-badge.default { background: #eef1f2; color: var(--ink); border: 1px solid var(--line); }
/* Count pill inside an order-filter chip */
.acct-chip-n {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; margin-left: 2px;
  border-radius: 999px; background: rgba(0,0,0,.08);
  font-size: 11px; font-weight: 800; line-height: 1;
}
.acct-chip.active .acct-chip-n { background: rgba(255,255,255,.28); color: #fff; }
/* Subscription login details (shown automatically once a slot is allocated) */
.acct-cred { margin: 0 18px 18px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-strong); }
.acct-cred-title { display: flex; align-items: center; gap: 7px; margin: 0 0 10px; font-weight: 800; font-size: 14px; color: var(--ink); }
.acct-cred-title i { width: 16px; height: 16px; color: var(--retail-navy); }
.acct-cred-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.acct-cred-row:last-of-type { border-bottom: 0; }
.acct-cred-row .k { color: var(--muted); font-size: 13px; flex: none; }
.acct-cred-row .v { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 14px; word-break: break-word; text-align: right; }
.acct-copy { display: inline-grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; color: var(--retail-navy); flex: none; }
.acct-copy:hover { background: var(--cyan-soft); }
.acct-copy i { width: 14px; height: 14px; }
.acct-cred-note { display: flex; gap: 8px; margin-top: 10px; padding: 9px 11px; border-radius: 8px; background: #fff6e5; color: #8a5a00; font-size: 13px; line-height: 1.45; }
.acct-cred-note i { width: 15px; height: 15px; flex: none; margin-top: 1px; }
.acct-cred-foot { display: flex; gap: 7px; align-items: flex-start; margin: 12px 0 0; font-size: 12px; color: var(--muted); line-height: 1.4; }
.acct-cred-foot i { width: 14px; height: 14px; flex: none; margin-top: 1px; }
.acct-cred-pending { display: flex; gap: 12px; align-items: center; }
.acct-cred-pending > i { width: 26px; height: 26px; color: var(--retail-navy); flex: none; animation: acct-spin 1.4s linear infinite; }
.acct-cred-pending strong { display: block; margin-bottom: 3px; color: var(--ink); }
.acct-cred-pending p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
@keyframes acct-spin { to { transform: rotate(360deg); } }
/* Guided sign-in */
.acct-signin-cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; padding: 12px 14px; border-radius: 10px; background: var(--cyan-soft); }
.acct-signin-cta-txt strong { display: block; color: var(--ink); font-size: 14px; }
.acct-signin-cta-txt span { color: var(--muted); font-size: 12.5px; }
.acct-signin-cta.done { background: var(--green-soft); color: var(--green); font-weight: 700; }
.acct-signin-cta.done > span { display: inline-flex; align-items: center; gap: 6px; }
.acct-signin-cta.done i { width: 16px; height: 16px; }
.acct-device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.acct-device { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 8px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-weight: 700; color: var(--ink); transition: border-color .15s, background .15s; }
.acct-device:hover { border-color: var(--retail-navy); background: var(--cyan-soft); }
.acct-device i { width: 26px; height: 26px; color: var(--retail-navy); }
.acct-steps { display: flex; flex-direction: column; gap: 12px; }
.acct-step { display: flex; gap: 12px; align-items: flex-start; }
.acct-step-n { flex: none; width: 26px; height: 26px; border-radius: 999px; background: var(--retail-navy); color: #fff; font-weight: 800; font-size: 13px; display: grid; place-items: center; }
.acct-step-body .t { font-weight: 700; color: var(--ink); font-size: 14px; }
.acct-step-body .d { color: var(--muted); font-size: 13px; line-height: 1.45; margin-top: 2px; }
.acct-step-media { margin-top: 8px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.acct-step-media img, .acct-step-media video { display: block; width: 100%; height: auto; }
.acct-signin-block { display: flex; gap: 12px; align-items: flex-start; }
.acct-signin-block-ico { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: #fff6e5; color: #b26b00; }
.acct-signin-block-ico i { width: 22px; height: 22px; }
.acct-signin-block p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.5; }
.acct-modal-text { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.acct-code-entry { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.acct-input { flex: 1; min-width: 180px; height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 16px; font-weight: 700; letter-spacing: .06em; color: var(--ink); background: #fff; }
.acct-input:focus { outline: none; border-color: var(--retail-navy); box-shadow: 0 0 0 3px var(--cyan-soft); }
.acct-code-display { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; padding: 12px 18px; border-radius: 10px; background: var(--green-soft); color: var(--green); font-size: 26px; font-weight: 800; letter-spacing: .14em; }
.acct-code-display .acct-copy { color: var(--green); border-color: rgba(0,0,0,.08); background: #fff; }
/* "Confirming your payment" banner shown after a checkout redirect */
.acct-paybanner { display: flex; gap: 12px; align-items: center; margin: 0 0 16px; padding: 12px 16px; border-radius: 10px; background: var(--cyan-soft); color: var(--ink); border: 1px solid var(--line); }
.acct-paybanner > i { width: 24px; height: 24px; color: var(--retail-navy); flex: none; animation: acct-spin 1.4s linear infinite; }
.acct-paybanner strong { display: block; font-size: 14px; }
.acct-paybanner p { margin: 2px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }
/* Sign-in "what to type in" fields (label on top, value below) */
.acct-cred-sub { margin: -4px 0 12px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.acct-field { padding: 11px 0; border-bottom: 1px solid var(--line); }
.acct-field:last-child { border-bottom: 0; }
.acct-field.hero { background: var(--surface-strong); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 8px; }
.acct-field-label { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.acct-field-label i { width: 14px; height: 14px; color: var(--retail-navy); }
.acct-field-hint { text-transform: none; letter-spacing: 0; font-weight: 700; color: var(--retail-navy); background: var(--cyan-soft); padding: 2px 8px; border-radius: 999px; font-size: 11px; }
.acct-field-value { display: flex; align-items: center; gap: 10px; }
.acct-field-val { font-size: 16px; font-weight: 800; color: var(--ink); word-break: break-word; }
.acct-field-val.acct-code-big { font-size: 24px; letter-spacing: .14em; color: var(--green); }
.acct-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.acct-field-grid .acct-field { border-bottom: 0; padding-bottom: 0; }
.acct-field-note { margin-top: 8px; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
@media (max-width: 520px) { .acct-field-grid { grid-template-columns: 1fr; } }

/* ---------- Order detail ---------- */
.acct-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; align-items: start; }
@media (max-width: 860px){ .acct-detail-grid { grid-template-columns: 1fr; } }

.acct-timeline { display: flex; flex-direction: column; gap: 0; }
.acct-tl-step { display: flex; gap: 14px; position: relative; padding-bottom: 20px; }
.acct-tl-step:last-child { padding-bottom: 0; }
.acct-tl-dot { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; z-index: 1; background: #eef1f2; color: var(--muted); border: 2px solid var(--line); }
.acct-tl-dot i { width: 14px; height: 14px; }
.acct-tl-step.done .acct-tl-dot { background: var(--green); border-color: var(--green); color: #fff; }
.acct-tl-step.current .acct-tl-dot { background: var(--blue); border-color: var(--blue); color: #fff; }
.acct-tl-step.cancelled .acct-tl-dot { background: var(--red); border-color: var(--red); color: #fff; }
.acct-tl-step::before {
  content: ""; position: absolute; left: 12px; top: 26px; bottom: 0; width: 2px; background: var(--line);
}
.acct-tl-step:last-child::before { display: none; }
.acct-tl-step.done::before { background: var(--green); }
.acct-tl-body .t { font-size: 14px; font-weight: 700; color: var(--ink); }
.acct-tl-body .d { font-size: 12px; color: var(--muted); margin-top: 1px; }

.acct-summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 5px 0; color: var(--ink); }
.acct-summary-row .lbl { color: var(--muted); }
.acct-summary-total { display: flex; justify-content: space-between; gap: 12px; font-size: 16px; font-weight: 800; color: var(--ink); padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--line); }
.acct-summary-total span:first-child { white-space: nowrap; }

.acct-kv { font-size: 13px; line-height: 1.5; color: var(--ink); }
.acct-kv .muted { color: var(--muted); }

/* ---------- Address / payment card grids ---------- */
.acct-tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.acct-tile {
  border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: var(--surface);
  display: flex; flex-direction: column; min-height: 150px;
}
.acct-tile.default { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue) inset; }
.acct-tile-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.acct-tile-head .nm { font-size: 14px; font-weight: 800; color: var(--ink); }
.acct-tile-body { flex: 1; font-size: 13px; line-height: 1.5; color: var(--muted); }
.acct-tile-body strong { color: var(--ink); font-weight: 600; }
.acct-tile-actions { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.acct-tile-add {
  border: 2px dashed #c3cacd; border-radius: 8px; background: #fbfcfc; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  min-height: 150px; color: var(--blue); font-weight: 700; font-size: 14px;
}
.acct-tile-add:hover { border-color: var(--blue); background: var(--cyan-soft); }
.acct-tile-add i { width: 28px; height: 28px; }

.acct-pay-logo {
  width: 44px; height: 30px; border-radius: 5px; display: grid; place-items: center; flex: none;
  font-size: 11px; font-weight: 800; color: #fff; letter-spacing: .02em;
}
.pl-airtel { background: #e2231a; }
.pl-mtn { background: #ffcb05; color: #1a1a1a; }
.pl-zamtel { background: #0a7d3b; }
.pl-visa { background: #1a1f71; }
.pl-mc { background: #1a1a1a; }
.acct-pay-row { display: flex; align-items: center; gap: 12px; }

/* preferred radio */
.acct-pref {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; margin-bottom: 10px; background: #fff;
}
.acct-pref:hover { border-color: #adb5b8; }
.acct-pref.sel { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue) inset; }
.acct-pref input { accent-color: var(--blue); width: 18px; height: 18px; }

/* ---------- Settings rows (login & security, profile) ---------- */
.acct-setting {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.acct-setting:last-child { border-bottom: 0; }
.acct-setting-info { min-width: 0; }
.acct-setting-info .lbl { font-size: 14px; font-weight: 700; color: var(--ink); }
.acct-setting-info .val { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* toggle switch */
.acct-switch { position: relative; width: 46px; height: 26px; flex: none; }
.acct-switch input { opacity: 0; width: 0; height: 0; }
.acct-switch .track { position: absolute; inset: 0; background: #c3cacd; border-radius: 999px; transition: background .18s; }
.acct-switch .track::before { content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: transform .18s; box-shadow: 0 1px 2px rgba(0,0,0,.25); }
.acct-switch input:checked + .track { background: var(--green); }
.acct-switch input:checked + .track::before { transform: translateX(20px); }

/* ---------- Forms ---------- */
.acct-form { display: flex; flex-direction: column; gap: 14px; }
.acct-field { display: flex; flex-direction: column; gap: 5px; }
.acct-field label { font-size: 12px; font-weight: 700; color: var(--muted); }
.acct-field input, .acct-field select, .acct-field textarea {
  border: 1px solid #cccccc; border-radius: var(--radius-sm); padding: 9px 11px; font-size: 14px; font-family: inherit; color: var(--ink); background: #fff;
}
.acct-field input:focus, .acct-field select:focus, .acct-field textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 2px var(--cyan-soft); }
.acct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px){ .acct-field-row { grid-template-columns: 1fr; } }

/* ---------- Modal ---------- */
.acct-modal-overlay {
  position: fixed; inset: 0; background: rgba(15,17,17,.55); z-index: 1200;
  display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto;
}
.acct-modal-overlay[hidden] { display: none; }
.acct-modal {
  background: #fff; border-radius: 10px; width: 100%; max-width: 480px; box-shadow: 0 18px 48px rgba(0,0,0,.3);
  animation: acctModalIn .18s ease; margin: auto 0;
}
@keyframes acctModalIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.acct-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.acct-modal-head h3 { margin: 0; font-size: 17px; font-weight: 800; color: var(--ink); }
.acct-modal-close { background: none; border: 0; cursor: pointer; color: var(--muted); display: grid; place-items: center; width: 32px; height: 32px; border-radius: 6px; }
.acct-modal-close:hover { background: #f0f2f3; color: var(--ink); }
.acct-modal-body { padding: 20px; }
.acct-modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--line); }

/* confirm modal variant */
.acct-confirm-ico { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px; background: var(--red-soft); color: var(--red); }
.acct-confirm-ico i { width: 28px; height: 28px; }
.acct-confirm-text { text-align: center; font-size: 14px; line-height: 1.55; color: var(--ink); }
.acct-confirm-text strong { font-weight: 700; }

/* empty states */
.acct-empty { text-align: center; padding: 48px 20px; color: var(--muted); }
.acct-empty i { width: 42px; height: 42px; color: #c3cacd; margin-bottom: 12px; }
.acct-empty h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.acct-empty p { font-size: 13px; margin: 0 0 16px; }

/* sign out row */
.acct-signout-row { margin-top: 22px; display: flex; justify-content: center; }

/* small helper */
.acct-hr { height: 1px; background: var(--line); border: 0; margin: 16px 0; }
.acct-muted { color: var(--muted); font-size: 13px; }
.acct-note { font-size: 12px; color: var(--muted); line-height: 1.5; }
