/* ═══════════════════════════════════════════════════════════════════════
   Scoopie's — staff dashboard theme
   Retro candy palette from the brand mascot. Playful but classy.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette (sampled from the logo) */
  --pink: #efa7c4;
  --pink-deep: #e06c97;
  --pink-deeper: #c94f80;
  --lemon: #f3ea83;
  --mint: #cbdb9a;
  --sky: #dee8e9;
  --cherry: #c0304a;

  /* Neutrals — warm, to sit with the candy tones */
  --ink: #2b2422;
  --ink-soft: #6c5f5a;
  --line: #efe4de;
  --line-strong: #e6d5cc;
  --cream: #fbf6f0;
  --cream-deep: #f5ece2;
  --panel: #ffffff;

  --ok: #4b9b5e;
  --warn: #e08a2b;
  --danger: #d64b63;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 6px 22px rgba(160, 110, 130, 0.10);
  --shadow-soft: 0 2px 10px rgba(160, 110, 130, 0.08);
  --shadow-pop: 0 10px 30px rgba(199, 79, 128, 0.18);

  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Fredoka", var(--font-body);
  --font-script: "Pacifico", cursive;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -5%, #fdeef4 0, transparent 42%),
    radial-gradient(circle at 92% 0%, #fbf7df 0, transparent 40%),
    var(--cream);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 15px;
}

a { color: var(--pink-deeper); text-decoration: none; }
a:hover { text-decoration: underline; }

h1 { font-family: var(--font-head); font-weight: 600; font-size: 1.7rem; margin: 0 0 .35rem; letter-spacing: -.01em; }
h2 { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; margin: 0 0 .85rem; }

.sub { color: var(--ink-soft); margin: 0 0 1.4rem; }

/* ─── Top bar ─────────────────────────────────────────────────────────── */
.topbar {
  display: flex; align-items: center; gap: 1.25rem;
  padding: .6rem 1.4rem;
  background: linear-gradient(120deg, var(--pink) 0%, #f3b4cd 55%, var(--lemon) 165%);
  border-bottom: 3px solid #fff;
  box-shadow: var(--shadow-soft);
  position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mascot {
  width: 46px; height: 46px; object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.15));
  transform: translateY(1px);
}
.brand-word { font-family: var(--font-script); font-size: 1.6rem; color: #fff; line-height: 1;
  text-shadow: 0 2px 0 rgba(192, 79, 128, .55), 0 0 1px rgba(0,0,0,.3); }

.mainnav { display: flex; gap: .35rem; flex: 1; margin-left: .5rem; flex-wrap: wrap; }
.mainnav a {
  color: #5c2a43; font-weight: 700; font-family: var(--font-head); font-size: .95rem;
  padding: .4rem .8rem; border-radius: 999px; transition: background .15s, color .15s;
}
.mainnav a:hover { text-decoration: none; background: rgba(255,255,255,.45); }
.mainnav a.active { background: #fff; color: var(--pink-deeper); box-shadow: var(--shadow-soft); }

.topbar-right { display: flex; align-items: center; gap: .9rem; }
.wa-status { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 700;
  color: #5c2a43; background: rgba(255,255,255,.5); padding: .28rem .6rem; border-radius: 999px; white-space: nowrap; }
.wa-status .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.wa-on .dot { background: #2ec77a; box-shadow: 0 0 0 3px rgba(46,199,122,.3); }
.wa-off .dot { background: #ff8f8f; box-shadow: 0 0 0 3px rgba(255,143,143,.3); }
.logout { display: flex; align-items: center; gap: .6rem; }
.who { color: #5c2a43; font-size: .85rem; font-weight: 700; }
.who small { display: block; font-weight: 600; opacity: .7; font-size: .7rem; }

.container { max-width: 1060px; margin: 1.6rem auto; padding: 0 1.4rem; }

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem; justify-content: center;
  border: 2px solid var(--line-strong); background: #fff; color: var(--ink);
  padding: .5rem .95rem; border-radius: 999px; font-size: .9rem; cursor: pointer;
  font-weight: 700; font-family: var(--font-head); transition: transform .08s, box-shadow .15s, background .15s;
}
.btn:hover { text-decoration: none; box-shadow: var(--shadow-soft); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pink-deep); border-color: var(--pink-deep); color: #fff; }
.btn-primary:hover { background: var(--pink-deeper); border-color: var(--pink-deeper); box-shadow: var(--shadow-pop); }
.btn-danger { background: #fff; border-color: var(--danger); color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.35); border-color: transparent; color: #5c2a43; }
.btn-ghost:hover { background: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: .32rem .6rem; font-size: .8rem; border-width: 1.5px; }

/* ─── Flash ───────────────────────────────────────────────────────────── */
.flash { padding: .75rem 1.1rem; border-radius: var(--radius-sm); margin: 0 0 1.2rem; font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; gap: .5rem; }
.flash::before { font-size: 1.05rem; }
.flash-success { background: #e7f6ec; color: #256b39; border: 1.5px solid #bfe6cb; }
.flash-success::before { content: "🍦"; }
.flash-error { background: #fdeaee; color: #a52439; border: 1.5px solid #f4c4cd; }
.flash-error::before { content: "⚠️"; }

/* ─── Panels ──────────────────────────────────────────────────────────── */
.panel { background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow); margin-bottom: 1.35rem; }
.panel.center { text-align: center; }
.panel h2 { display: flex; align-items: center; gap: .45rem; }
.muted { color: var(--ink-soft); font-size: .9rem; }
.empty { color: var(--ink-soft); padding: 1.5rem 0; text-align: center; }
.empty::before { content: "🍨"; display: block; font-size: 2rem; margin-bottom: .4rem; }

/* Section eyebrow */
.eyebrow { font-family: var(--font-head); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  font-size: .72rem; color: var(--pink-deep); margin-bottom: .3rem; }

/* Stat tiles */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: .9rem; margin-bottom: 1.35rem; }
.stat { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; right: -14px; top: -14px; width: 54px; height: 54px; border-radius: 50%; opacity: .25; }
.stat.s-pink::after { background: var(--pink); }
.stat.s-lemon::after { background: var(--lemon); }
.stat.s-mint::after { background: var(--mint); }
.stat.s-sky::after { background: var(--sky); }
.stat .n { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; line-height: 1; }
.stat .l { color: var(--ink-soft); font-size: .82rem; font-weight: 700; margin-top: .25rem; }

/* ─── Filter chips ────────────────────────────────────────────────────── */
.filterbar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.35rem; }
.chip { background: #fff; border: 1.5px solid var(--line-strong); border-radius: 999px; padding: .38rem .85rem;
  font-size: .85rem; font-weight: 700; font-family: var(--font-head); color: var(--ink); }
.chip:hover { text-decoration: none; background: var(--cream-deep); }
.chip-on { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ─── Orders grid ─────────────────────────────────────────────────────── */
.order-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px,1fr)); gap: 1.1rem; }
.order-card { display: block; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.05rem; box-shadow: var(--shadow-soft); color: var(--ink); transition: transform .1s, box-shadow .15s, border-color .15s; }
.order-card:hover { text-decoration: none; border-color: var(--pink); box-shadow: var(--shadow-pop); transform: translateY(-2px); }
.order-card-top { display: flex; justify-content: space-between; align-items: center; }
.order-id { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.order-cust { font-size: .9rem; color: var(--ink-soft); margin: .3rem 0 .6rem; font-weight: 600; }
.order-items { list-style: none; padding: 0; margin: 0 0 .7rem; font-size: .88rem; }
.order-items li { padding: .12rem 0; }
.order-card-bot { display: flex; justify-content: space-between; align-items: baseline; border-top: 1.5px dashed var(--line-strong); padding-top: .55rem; }
.order-card-bot strong { font-family: var(--font-head); font-size: 1.05rem; }
.order-card-bot .ago { font-size: .72rem; color: var(--ink-soft); }

/* ─── Badges ──────────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: .24rem .6rem; border-radius: 999px; font-size: .7rem; font-weight: 800;
  font-family: var(--font-head); border: 1.5px solid transparent; letter-spacing: .01em; }
.status-pending_payment { background: #fff5d6; color: #8a6a12; border-color: #f2e2a4; }
.status-paid { background: #e3f6e9; color: #256b39; border-color: #bfe6cb; }
.status-preparing { background: #ffe9d1; color: #9a5713; border-color: #f7cfa4; }
.status-ready_for_pickup { background: #dbeffb; color: #1668a0; border-color: #b6def3; }
.status-out_for_delivery { background: #dbeffb; color: #1668a0; border-color: #b6def3; }
.status-completed { background: #efe3f7; color: #6a2b96; border-color: #dcc4ee; }
.status-cancelled { background: #fbe0e5; color: #a52439; border-color: #f2c2cc; }

/* role pills */
.pill { display: inline-block; padding: .16rem .55rem; border-radius: 999px; font-size: .68rem; font-weight: 800; font-family: var(--font-head); }
.pill-admin { background: #fbe4ef; color: var(--pink-deeper); }
.pill-staff { background: var(--sky); color: #315a6b; }
.pill-off { background: #eee; color: #888; }

/* ─── Order detail ────────────────────────────────────────────────────── */
.back { display: inline-block; margin-bottom: .8rem; font-size: .9rem; font-weight: 700; }
.order-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.order-head h1 { margin: 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
@media (max-width: 760px) { .detail-grid { grid-template-columns: 1fr; } }

.lines { width: 100%; border-collapse: collapse; }
.lines td { padding: .5rem 0; border-bottom: 1.5px dashed var(--line-strong); }
.lines .q { width: 2.6rem; color: var(--ink-soft); font-weight: 700; }
.lines .r { text-align: right; font-weight: 700; }
.lines .total td { border-bottom: none; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; padding-top: .7rem; }
.note { margin-top: .8rem; font-size: .9rem; }
.warn-inline { color: var(--warn); font-size: .72rem; font-weight: 800; }

/* ─── Forms ───────────────────────────────────────────────────────────── */
.stack { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1rem; }
.row { display: flex; gap: .5rem; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; }
.inline { display: inline-flex; align-items: center; gap: .4rem; font-size: .95rem; font-weight: 700; }
label { display: block; font-size: .82rem; color: var(--ink-soft); font-weight: 800; }
input, select, textarea {
  width: 100%; padding: .58rem .7rem; border: 1.5px solid var(--line-strong); background: #fff;
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit; color: var(--ink); margin-top: .25rem;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(239,167,196,.35); }
.row select { width: auto; }
.inline input { width: auto; margin: 0; }

.grid-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; align-items: end; }
.grid-form .wide { grid-column: 1 / -1; }
.grid-form button { grid-column: 1 / -1; justify-self: start; }
@media (max-width: 760px) { .grid-form { grid-template-columns: 1fr 1fr; } }

.grid-table { width: 100%; border-collapse: collapse; }
.grid-table th, .grid-table td { text-align: left; padding: .6rem .45rem; border-bottom: 1.5px solid var(--line); font-size: .9rem; vertical-align: middle; }
.grid-table th { color: var(--ink-soft); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.row-off { opacity: .5; }
.low { color: var(--danger); font-weight: 800; }
.inline-form { display: inline-flex; gap: .35rem; align-items: center; flex-wrap: wrap; }
.inline-form input { margin: 0; }
.w-sm { width: 5.5rem; } .w-xs { width: 3.8rem; }
.w-name { width: 100%; min-width: 190px; }
.itemno { display: inline-flex; align-items: center; justify-content: center; min-width: 1.9rem; height: 1.9rem;
  padding: 0 .4rem; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: .82rem; }
.pthumb { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; background: var(--cream-deep);
  display: inline-flex; align-items: center; justify-content: center; }
.pthumb-empty { font-size: 1.1rem; border: 1.5px dashed var(--line-strong); }
.grid-table td:first-child, .grid-table th:first-child { white-space: nowrap; }

/* ─── Login ───────────────────────────────────────────────────────────── */
.login-wrap { min-height: 100vh; display: grid; grid-template-columns: 1.1fr .9fr; }
@media (max-width: 860px) { .login-wrap { grid-template-columns: 1fr; } .login-hero { display: none; } }
.login-hero {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at 30% 20%, #fdeef5 0, transparent 55%),
    radial-gradient(circle at 75% 80%, #fbf6d6 0, transparent 55%),
    linear-gradient(135deg, #f7c9dc, #f6e6a6);
  position: relative; overflow: hidden;
}
.login-hero::before, .login-hero::after { content: ""; position: absolute; border-radius: 50%; opacity: .5; filter: blur(2px); }
.login-hero::before { width: 220px; height: 220px; background: #fff6; top: -60px; left: -40px; }
.login-hero::after { width: 160px; height: 160px; background: #fff5; bottom: -30px; right: -20px; }
.login-hero img { width: min(58%, 300px); position: relative; z-index: 1; filter: drop-shadow(0 12px 18px rgba(150,70,110,.28)); }
.login-hero .tag { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 600; color: #7a3357;
  text-align: center; font-size: 1.05rem; max-width: 320px; }

.login-panel { display: flex; align-items: center; justify-content: center; padding: 2rem; }
.login-card { width: 100%; max-width: 380px; }
.login-card .logo-h { width: 210px; display: block; margin: 0 auto 1rem; }
.login-brand { font-family: var(--font-script); font-size: 2.1rem; color: var(--pink-deep); text-align: center; line-height: 1; }
.login-sub { text-align: center; color: var(--ink-soft); margin: .2rem 0 1.5rem; font-weight: 700; }
.login-card label { margin-bottom: .85rem; }

.foot { text-align: center; color: var(--ink-soft); font-size: .8rem; padding: 2.2rem 1rem; }
.foot .heart { color: var(--pink-deep); }

/* Settings sub-nav */
.subnav { display: flex; gap: .5rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.subnav a { padding: .4rem .9rem; border-radius: 999px; font-weight: 700; font-family: var(--font-head);
  background: #fff; border: 1.5px solid var(--line-strong); color: var(--ink); font-size: .9rem; }
.subnav a:hover { text-decoration: none; background: var(--cream-deep); }
.subnav a.active { background: var(--pink-deep); border-color: var(--pink-deep); color: #fff; }

.hint { background: var(--cream-deep); border: 1.5px dashed var(--line-strong); border-radius: var(--radius-sm);
  padding: .7rem .9rem; font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.hint code { background: #fff; padding: .05rem .3rem; border-radius: 5px; border: 1px solid var(--line-strong); }

/* Themed checkboxes / ticks */
input[type="checkbox"] { accent-color: var(--pink-deep); width: 18px; height: 18px; cursor: pointer; }
.switch { display: inline-flex; align-items: center; }

/* Icon buttons in the top bar (settings cog, sign out) */
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(255,255,255,.4); color: #5c2a43; border: none; cursor: pointer; text-decoration: none; transition: background .15s, transform .08s; }
.icon-btn:hover { background: #fff; text-decoration: none; transform: translateY(-1px); }
.icon-btn.active { background: #fff; color: var(--pink-deeper); box-shadow: var(--shadow-soft); }

/* Products table */
.table-scroll { overflow-x: auto; }
.products-table { min-width: 720px; }
.products-table td { vertical-align: middle; }
.cell-name { min-width: 320px; }
.w-name { width: 100%; min-width: 300px; }
.row-form { display: contents; }
.pcell { display: flex; align-items: center; gap: .4rem; }
.pthumb { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; background: var(--cream-deep);
  display: inline-flex; align-items: center; justify-content: center; flex: none; }
.pthumb-empty { font-size: 1.2rem; border: 1.5px dashed var(--line-strong); }
.upload-btn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 9px; background: var(--cream-deep); border: 1.5px solid var(--line-strong); cursor: pointer; font-size: .95rem; }
.upload-btn:hover { background: #fff; border-color: var(--pink); }
.upload-form { margin: 0; }
.price-in { display: inline-flex; align-items: center; gap: .3rem; }
.price-in span { color: var(--ink-soft); font-weight: 700; }
.active-cell { display: flex; align-items: center; gap: .7rem; }

/* WhatsApp conversation */
.chat { display: flex; flex-direction: column; gap: .5rem; max-height: 380px; overflow-y: auto; padding: .3rem; }
.bubble { max-width: 78%; padding: .5rem .8rem; border-radius: 14px; font-size: .9rem; line-height: 1.4; box-shadow: var(--shadow-soft); }
.bubble-body { white-space: pre-wrap; word-break: break-word; }
.bubble-time { font-size: .66rem; color: var(--ink-soft); margin-top: .2rem; opacity: .75; }
.bubble-in { align-self: flex-start; background: #fff; border: 1.5px solid var(--line); border-bottom-left-radius: 4px; }
.bubble-out { align-self: flex-end; background: #eaf7ea; border: 1.5px solid #c9e9cd; border-bottom-right-radius: 4px; }

/* Footer branding */
.foot { display: flex; flex-direction: column; gap: .25rem; align-items: center; }
.foot-brand { font-size: .82rem; }
.foot-brand strong { color: var(--pink-deeper); letter-spacing: .02em; }

/* Ambient background graphics (sprinkles) behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg stroke-width='6' stroke-linecap='round'%3E%3Cline x1='30' y1='40' x2='48' y2='28' stroke='%23efa7c4'/%3E%3Cline x1='120' y1='30' x2='132' y2='48' stroke='%23cbdb9a'/%3E%3Cline x1='200' y1='55' x2='214' y2='40' stroke='%23f3ea83'/%3E%3Cline x1='70' y1='110' x2='84' y2='120' stroke='%231e88e5' opacity='.5'/%3E%3Cline x1='170' y1='120' x2='182' y2='104' stroke='%23efa7c4'/%3E%3Cline x1='40' y1='180' x2='56' y2='190' stroke='%23f3ea83'/%3E%3Cline x1='130' y1='195' x2='142' y2='178' stroke='%23cbdb9a'/%3E%3Cline x1='205' y1='185' x2='218' y2='198' stroke='%23efa7c4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 320px;
}

/* ─── CRM / reports / chat (added) ────────────────────────────────────── */
.container.narrow { max-width: 720px; }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.page-head .btn { flex: none; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.panel-head h2 { margin-bottom: 0; }

.btn-row { display: flex; flex-wrap: wrap; gap: .45rem; margin: .5rem 0 .9rem; }

.r { text-align: right; }
.grid-table td.r, .grid-table th.r { text-align: right; }
.clickable { cursor: pointer; }
.clickable:hover { background: var(--cream); }

.toolbar { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-bottom: 1.1rem; }
.toolbar input[type="search"] { flex: 1; min-width: 200px; padding: .55rem .8rem; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); font: inherit; }
.toolbar select { padding: .55rem .7rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); font: inherit; background: #fff; }
.sortchips { display: flex; gap: .35rem; flex-wrap: wrap; }
.table-wrap { overflow-x: auto; }

.avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--cream-deep); flex: none; }
.avatar-sm { width: 34px; height: 34px; }
.avatar-lg { width: 84px; height: 84px; }
.avatar-fallback { display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; background: var(--pink-deep); font-size: 1.1rem; }
.avatar-lg.avatar-fallback { font-size: 2rem; }
.avatar-sm.avatar-fallback { font-size: .9rem; }
.cust-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .5rem; }
.cust-profile { display: flex; align-items: center; gap: 1.2rem; margin: .6rem 0 1.4rem; flex-wrap: wrap; }
.cust-profile h1 { margin-bottom: .2rem; }

.reply-form { display: flex; gap: .5rem; margin-top: .9rem; }
.reply-form input[type="text"] { flex: 1; padding: .6rem .85rem; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); font: inherit; }
.chat-tall { max-height: 60vh; }
.radio-row { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.big-num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--pink-deeper); margin: .2rem 0 .4rem; }

.bars { display: flex; flex-direction: column; gap: .4rem; }
.bar-row { display: grid; grid-template-columns: 3.2rem 1fr auto; align-items: center; gap: .6rem; font-size: .85rem; }
.bar-label { color: var(--ink-soft); }
.bar-track { background: var(--cream-deep); border-radius: 999px; height: 12px; overflow: hidden; }
.bar-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--pink), var(--pink-deep)); }
.bar-val { font-weight: 700; white-space: nowrap; font-size: .8rem; }
