/* lojazon — estilo simples e leve */
:root {
  --primary: #2bb673;
  --primary-dark: #1f9c5d;
  --accent: #1a73e8;
  --bg: #f5f7f6;
  --surface: #ffffff;
  --text: #1f2d27;
  --muted: #6b7a72;
  --border: #e3e9e6;
  --danger: #d33b3b;
  --warn: #f4b942;
  --price-old: #b9b9b9;
  --radius: 10px;
  --shadow: 0 2px 6px rgba(0,0,0,.06);
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* ============== HEADER ============== */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.logo img { height: 44px; width: auto; }
.search {
  display: flex;
  align-items: stretch;
  background: var(--bg);
  border-radius: 999px;
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 480px;
}
.search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
}
.search button {
  border: 0;
  background: var(--primary);
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search button:hover { background: var(--primary-dark); }
.user-nav { display: flex; gap: 12px; align-items: center; }
.user-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted);
  padding: 8px 12px; border-radius: 8px;
}
.user-link:hover { background: var(--bg); color: var(--text); }
.user-link.wa { color: var(--primary); font-weight: 600; }

.catnav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 10px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.catnav a {
  color: var(--muted);
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.catnav a:hover, .catnav a.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* ============== CONTAINER / LAYOUT ============== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 48px;
}
.layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  margin-top: 28px;
}
@media (max-width: 800px) {
  .layout { grid-template-columns: 1fr; }
}

.side {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  align-self: start;
  border: 1px solid var(--border);
}
.side-title { font-size: 16px; margin: 0 0 12px; }
.side-cats { list-style: none; padding: 0; margin: 0; }
.side-cats li { margin-bottom: 6px; }
.side-cats a {
  display: block;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  text-align: center;
  color: var(--muted);
  transition: all .15s;
}
.side-cats a:hover, .side-cats a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============== HERO ============== */
.hero {
  background:
    radial-gradient(1200px 320px at 70% -20%, rgba(132,255,196,.18), transparent 60%),
    radial-gradient(700px 240px at -10% 80%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(120deg, #061d14 0%, #0e3a25 35%, #145d3a 70%, #1a8050 100%);
  color: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 24px;
  align-items: center;
  min-height: 240px;
  margin-bottom: 24px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.45) 99%, transparent 100%),
    radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,.4) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,.35) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(255,255,255,.3) 99%, transparent 100%),
    radial-gradient(2px 2px at 10% 70%, rgba(255,255,255,.4) 99%, transparent 100%);
  pointer-events: none;
}

.hero-aside {
  position: relative; z-index: 2;
  font-size: 13px;
  color: #d3f4e2;
}
.hero-aside-title { margin: 0 0 6px; font-weight: 600; }
.hero-aside-list { list-style: none; padding: 0; margin: 0; }
.hero-aside-list li { padding: 2px 0; }
.hero-aside-list li::before { content: "— "; color: rgba(255,255,255,.55); }

.hero-main {
  position: relative; z-index: 2;
  text-align: center;
}
.hero-brand {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: .14em; font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}
.hero-title {
  font-size: 38px;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.hero-cta {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 36px;
  border-radius: 4px;
  letter-spacing: .25em;
  font-weight: 700;
  font-size: 16px;
  transition: background .2s, color .2s, transform .15s;
}
.hero-cta:hover {
  background: #fff;
  color: #0e3a25;
  transform: translateY(-1px);
}
.hero-pitch {
  margin: 18px 0 0;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.hero-decor {
  position: relative; z-index: 2;
  height: 100%; min-height: 180px;
}
.hero-wa {
  position: absolute;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  background: linear-gradient(145deg, #4be58a 0%, #1ab85c 100%);
  color: #fff;
}
.hero-wa svg { width: 60%; height: 60%; }
.hero-wa.wa-back {
  width: 110px; height: 110px;
  right: 70px; top: 0;
  transform: rotate(-12deg);
  opacity: .85;
}
.hero-wa.wa-front {
  width: 130px; height: 130px;
  right: 10px; top: 30px;
  transform: rotate(8deg);
}
.hero-check {
  position: absolute;
  width: 26px; height: 26px;
  color: #6dffae;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}
.hero-check.c1 { right: 0; bottom: 50px; transform: rotate(-8deg); }
.hero-check.c2 { right: 130px; bottom: 10px; transform: rotate(12deg); }

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "decor" "main" "aside";
    text-align: center;
    padding: 24px 20px;
    min-height: auto;
  }
  .hero-aside { grid-area: aside; text-align: left; }
  .hero-main { grid-area: main; }
  .hero-decor { grid-area: decor; height: 110px; }
  .hero-decor .hero-wa.wa-back { right: calc(50% + 10px); top: 0; width: 80px; height: 80px; }
  .hero-decor .hero-wa.wa-front { right: calc(50% - 70px); top: 14px; width: 90px; height: 90px; }
  .hero-decor .hero-check { display: none; }
  .hero-title { font-size: 28px; }
}

/* ============== PRODUCT GRID ============== */
.grid-section { min-width: 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.card-wrap {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.card-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(20,40,30,.10), 0 4px 8px rgba(20,40,30,.06);
}

.card {
  padding: 18px 16px 8px;
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column;
}
.card:hover { color: inherit; }

.card-thumb {
  aspect-ratio: 1;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 14px;
}
.card-thumb img {
  max-width: 78%; max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.06));
}

/* Badge amarelo redondo de oferta */
.badge-circle {
  position: absolute;
  top: 4px; right: 4px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 30%, #ffe26a 0%, #f4b942 60%, #d99c1e 100%);
  color: #2a1f00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 2px 6px rgba(217,156,30,.4);
  z-index: 2;
  line-height: 1;
}
.badge-circle small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: 2px;
  opacity: .85;
}
.badge-circle.yellow { font-size: 11px; letter-spacing: .12em; }

.card-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a3559;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .02em;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  margin: 0 0 12px;
  display: flex; gap: 10px;
  align-items: baseline; justify-content: center;
  flex-wrap: wrap;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.card-price .old {
  color: #d33b3b;
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 600;
}
.card-price .now {
  color: #18a957;
  font-weight: 800;
  font-size: 17px;
}

.card-buy {
  display: block;
  text-align: center;
  background: #2bb673;
  color: #fff;
  padding: 11px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  letter-spacing: .03em;
  transition: background .15s;
}
.card-buy:hover {
  background: #1a8f54;
  color: #fff;
}

.empty {
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--muted);
  border: 1px dashed var(--border);
}

/* ============== STRIP NOVIDADES ============== */
.strip-novidades {
  margin-top: 36px;
  background: linear-gradient(135deg, #0e1818, #1a2925);
  border-radius: var(--radius);
  color: #fff;
  padding: 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 800px) { .strip-novidades { grid-template-columns: 1fr; } }
.strip-text h2 { margin: 0 0 6px; font-size: 22px; }
.strip-text p { margin: 0 0 14px; opacity: .8; font-size: 13px; }
.strip-cta {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.strip-cta:hover { background: #fff; color: #0e1818; }
.strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 800px) { .strip-row { grid-template-columns: repeat(2, 1fr); } }
.strip-card {
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}
.strip-card:hover { color: var(--text); }
.strip-card img { aspect-ratio: 1; object-fit: contain; margin-bottom: 8px; }
.strip-name { font-weight: 600; line-height: 1.3; min-height: 2.6em; }
.strip-price { color: var(--primary-dark); font-weight: 700; margin-top: 6px; }

/* ============== CATEGORY HEADER ============== */
.category-head {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.category-head h1 { margin: 0 0 4px; font-size: 24px; }
.category-head p { margin: 0; color: var(--muted); font-size: 13px; }

/* ============== PRODUCT DETAIL ============== */
.product-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .product-detail { grid-template-columns: 1fr; } }
.product-gallery .hero-img {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: #fafbfa; border-radius: 8px;
}
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.thumbs img { aspect-ratio: 1; object-fit: contain; background: #fafbfa; border-radius: 6px; padding: 4px; }
.crumbs { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.crumbs a { color: var(--muted); }
.crumbs span { color: var(--text); }
.product-info h1 { font-size: 26px; margin: 4px 0 12px; line-height: 1.2; }
.price-block { display: flex; gap: 12px; align-items: baseline; margin-bottom: 16px; }
.price-block .now { font-size: 28px; color: var(--primary-dark); font-weight: 700; }
.price-block .old { font-size: 16px; text-decoration: line-through; color: var(--price-old); }
.lead { color: var(--muted); margin: 0 0 18px; }
.big-buy {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 16px;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(43,182,115,.25);
}
.big-buy:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.long-desc { border-top: 1px solid var(--border); padding-top: 16px; }
.long-desc summary { cursor: pointer; font-weight: 600; padding: 6px 0; }
.long-desc-body { padding: 12px 0; color: var(--muted); font-size: 14px; }

.related { margin-top: 36px; }
.related h2 { margin: 0 0 16px; font-size: 18px; }

/* ============== ARTICLE / PRIVACY ============== */
.article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 760px; margin: 0 auto;
}
.article h1 { margin: 0 0 16px; font-size: 28px; }
.article h2 { margin: 24px 0 8px; font-size: 18px; }
.article p { color: var(--muted); }
.article .contact a { color: var(--primary-dark); font-weight: 600; }

/* ============== FOOTER ============== */
.site-footer {
  background: #0e1818; color: #cbd6d2;
  padding: 36px 20px 12px; margin-top: 40px;
  font-size: 13px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; margin: 0 0 8px; font-size: 14px; }
.site-footer p { margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #cbd6d2; }
.site-footer a:hover { color: var(--primary); }
.btn-wa-big {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.btn-wa-big:hover { background: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid #1d2c28;
  margin-top: 24px;
  padding-top: 12px;
  text-align: center;
  font-size: 12px;
  color: #5d6e69;
  max-width: var(--max); margin-left: auto; margin-right: auto;
}

/* ============== ADMIN ============== */
.alert {
  background: #fef2f2; color: var(--danger); border: 1px solid #fecaca;
  padding: 10px 14px; border-radius: 8px; margin-bottom: 16px; font-size: 14px;
}
.login-card {
  max-width: 380px; margin: 40px auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.login-card h1 { font-size: 20px; margin: 0 0 18px; }
.login-card form { display: grid; gap: 12px; }
.login-card label { display: grid; gap: 4px; font-size: 13px; }
.login-card label span { color: var(--muted); }
.login-card input {
  border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px; font-size: 14px;
}
.login-card button {
  background: var(--primary); color: #fff; border: 0;
  padding: 12px; border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 14px;
}
.login-card button:hover { background: var(--primary-dark); }

.admin-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; flex-wrap: wrap; gap: 12px;
}
.admin-head h1 { margin: 0; font-size: 22px; }
.admin-actions { display: flex; gap: 8px; }
.btn {
  display: inline-block; padding: 8px 14px; border-radius: 6px;
  font-size: 13px; cursor: pointer; border: 1px solid transparent;
  background: var(--bg); color: var(--text); text-decoration: none; font-family: inherit;
}
.btn:hover { background: #e8efeb; }
.btn.primary { background: var(--primary); color: #fff; }
.btn.primary:hover { background: var(--primary-dark); color: #fff; }
.btn.ghost { background: transparent; border-color: var(--border); }
.btn.danger { background: var(--danger); color: #fff; }
.btn.danger:hover { background: #b22929; color: #fff; }
.btn.small { font-size: 12px; padding: 6px 10px; }

.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  font-size: 13px;
}
.admin-table th, .admin-table td {
  padding: 10px 12px; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.admin-table th { background: var(--bg); color: var(--muted); font-weight: 600; font-size: 12px; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table .thumb { width: 60px; }
.admin-table .thumb img { width: 50px; height: 50px; object-fit: contain; background: var(--bg); border-radius: 4px; }
.admin-table small { display: block; color: var(--muted); font-size: 11px; }
.admin-table .strike { color: var(--price-old); text-decoration: line-through; }
.admin-table .actions { white-space: nowrap; display: flex; gap: 6px; }
.pill { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.pill.green { background: #dcfce7; color: #15803d; }
.pill.gray { background: #f1f5f4; color: var(--muted); }
.pill.yellow { background: #fef3c7; color: #92400e; margin-left: 4px; }

.edit-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }
.grid-2 .span-2 { grid-column: 1 / -1; }
.edit-form label { display: grid; gap: 4px; font-size: 13px; }
.edit-form label span { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.edit-form input, .edit-form select, .edit-form textarea {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 10px 12px; font-size: 14px; font-family: inherit;
  background: #fff;
}
.edit-form textarea { resize: vertical; }
.edit-form .checks { display: flex; gap: 24px; padding-top: 8px; }
.edit-form .check { flex-direction: row; align-items: center; gap: 6px; }
.edit-form .check input { width: 16px; height: 16px; }
.form-actions { margin-top: 20px; display: flex; gap: 8px; }

/* ============== ADMIN — TABS ============== */
.admin-tabs {
  display: flex; gap: 4px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px;
  margin-bottom: 18px;
  width: fit-content;
}
.admin-tabs a {
  padding: 8px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.admin-tabs a:hover { background: var(--bg); color: var(--text); }
.admin-tabs a.active { background: var(--primary); color: #fff; }
.admin-tabs a.active:hover { background: var(--primary-dark); color: #fff; }
.admin-head .muted { color: var(--muted); font-size: 13px; margin: 4px 0 0; }

/* ============== ADMIN — DASHBOARD ============== */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.kpi-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); font-weight: 600;
}
.kpi-value {
  font-size: 28px; font-weight: 700; color: var(--text);
}
.kpi-value.green { color: var(--primary-dark); }

.card-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 18px;
}
.card-section h2 { margin: 0 0 14px; font-size: 16px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.lead-list { list-style: none; padding: 0; margin: 0; counter-reset: ll; }
.lead-list li {
  display: grid; grid-template-columns: auto 40px 1fr auto;
  align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 13px;
  counter-increment: ll;
}
.lead-list li::before {
  content: counter(ll);
  color: var(--muted); font-weight: 700; width: 18px; font-size: 12px;
}
.lead-list li:last-child { border-bottom: 0; }
.lead-list img { width: 40px; height: 40px; object-fit: contain; background: var(--bg); border-radius: 4px; }
.lead-list .lead-name { font-weight: 500; }
.lead-list .lead-name a { color: var(--text); }
.lead-list .lead-count {
  font-weight: 700; color: var(--primary-dark); font-size: 16px;
  min-width: 36px; text-align: right;
}

.simple { width: 100%; border-collapse: collapse; font-size: 13px; }
.simple td { padding: 8px 0; border-bottom: 1px solid var(--border); }
.simple tr:last-child td { border-bottom: 0; }
.simple .num { text-align: right; font-weight: 700; color: var(--primary-dark); width: 60px; }
.simple code { font-family: ui-monospace, "Cascadia Code", Menlo, monospace; font-size: 12px; color: var(--muted); }
.muted { color: var(--muted); }
