/*
 * Tema VITRINA del menú web — claro, estilo app de pedidos.
 *
 * Un tema es un directorio (plantilla + CSS + JS), no un if: agregar el siguiente es agregar una
 * carpeta. Nada de este archivo depende de un tenant concreto; lo único que varía es --accent,
 * que la plantilla inyecta cuando el negocio configuró su color.
 *
 * Las fuentes se sirven como archivo y no embebidas en base64: la página se cachea por 60 s pero
 * las fuentes duran un año, así que meterlas en el HTML costaría 145 kB en CADA visita.
 */

@font-face {
  font-family: 'Onest';
  src: url('/menu-assets/fonts/onest-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage';
  src: url('/menu-assets/fonts/bricolage-grotesque-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #FFFFFF;
  --bg-2: #F3F6F4;
  --line: #E4EAE6;
  --line-soft: #EEF2F0;
  --ink: #0F1A15;
  --ink-2: #65756C;
  --ink-3: #95A29B;
  --accent: #0E7A43;
  --accent-soft: #E7F3EC;
  --warn: #B4432B;
  --promo: #8E2A4E;
  --r-lg: 20px;
  --r-md: 14px;
  --shadow-s: 0 1px 2px rgba(15, 26, 21, .06);
  --shadow-m: 0 4px 14px rgba(15, 26, 21, .08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px;
}

h1, h2, h3 { margin: 0; font-family: 'Bricolage', 'Onest', sans-serif; letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; text-align: left; }
input { font: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }

.shell { max-width: 1140px; margin: 0 auto; padding: 0 16px; }

/* ── Portada ──────────────────────────────────────────────────────────── */
.cover {
  position: relative;
  height: 200px;
  background:
    radial-gradient(120% 90% at 20% 20%, color-mix(in srgb, var(--accent) 55%, #FFFFFF) 0%, transparent 60%),
    radial-gradient(110% 100% at 80% 30%, color-mix(in srgb, var(--accent) 30%, #FFFFFF) 0%, transparent 62%),
    linear-gradient(155deg, color-mix(in srgb, var(--accent) 85%, #000000), var(--accent));
  background-size: cover;
  background-position: center;
}
.cover.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 21, .25) 0%, rgba(15, 26, 21, 0) 45%, rgba(15, 26, 21, .35) 100%);
}
.round {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-m);
  background: var(--accent);
}
.round svg { width: 19px; height: 19px; fill: #FFFFFF; }

/* ── Tarjeta del negocio ──────────────────────────────────────────────── */
.card {
  position: relative;
  z-index: 3;
  margin: -56px auto 0;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-m);
}
.card-top { display: flex; gap: 14px; align-items: flex-start; }
.card-id { min-width: 0; }
.logo {
  width: 56px; height: 56px; flex: 0 0 auto;
  border-radius: 16px; object-fit: cover;
  box-shadow: 0 4px 14px rgba(15, 26, 21, .18);
}
.logo-text {
  display: grid; place-items: center;
  background: var(--accent); color: #FFFFFF;
  font-family: 'Bricolage', sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -.03em;
}
.card h1 { font-size: 1.5rem; font-weight: 800; line-height: 1.15; }
.card-sub { margin-top: 4px; color: var(--ink-2); font-size: .875rem; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  background: var(--bg-2); color: var(--ink-2);
  font-size: .8125rem; font-weight: 500;
}
.chip.ok  { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.chip.off { background: #F5E7E4; color: var(--warn); font-weight: 600; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.dot.live { animation: ping 2.4s ease-out infinite; }
@keyframes ping {
  0%        { box-shadow: 0 0 0 0 currentColor; }
  70%, 100% { box-shadow: 0 0 0 6px transparent; }
}

.banner {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px; padding: 11px 13px; border-radius: var(--r-md);
  background: rgba(142, 42, 78, .07);
  border: 1px solid rgba(142, 42, 78, .16);
}
.banner-tag {
  flex: 0 0 auto; padding: 3px 8px; border-radius: 6px;
  background: var(--promo); color: #FFFFFF;
  font-size: .625rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.banner p { font-size: .8125rem; color: var(--promo); line-height: 1.4; }

/* ── Buscador y categorías ────────────────────────────────────────────── */
.sticky {
  position: sticky; top: 0; z-index: 35;
  margin-top: 22px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sticky.stuck { border-bottom-color: var(--line); box-shadow: 0 4px 14px rgba(15, 26, 21, .05); }

.search { position: relative; padding: 10px 0 4px; }
.search svg {
  position: absolute; left: 15px; top: 50%; transform: translateY(-42%);
  width: 17px; height: 17px; fill: var(--ink-3); pointer-events: none;
}
.search input {
  width: 100%; padding: 12px 14px 12px 40px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid transparent; color: var(--ink);
  font-size: .9375rem;
}
.search input::placeholder { color: var(--ink-3); }
.search input:focus { background: var(--bg); border-color: var(--accent); outline: none; }

.tabs {
  display: flex; gap: 7px; overflow-x: auto;
  padding: 8px 16px 12px; max-width: 1140px; margin: 0 auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
  flex: 0 0 auto; padding: 8px 15px; border-radius: 999px; white-space: nowrap;
  font-size: .875rem; font-weight: 600; color: var(--ink-2); background: var(--bg-2);
  transition: background .15s ease, color .15s ease;
}
.tabs button[aria-current="true"] { background: var(--ink); color: var(--bg); }

/* ── Secciones ────────────────────────────────────────────────────────── */
.layout { display: block; }
.nav { display: none; }

.cat { padding-top: 28px; scroll-margin-top: 118px; }
.cat-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.cat-head h2 { font-size: 1.3125rem; font-weight: 800; }
.cat-head span { font-size: .8125rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }

.rows { display: grid; }
.row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
}
.row-txt { flex: 1 1 auto; min-width: 0; }
.row-name { font-size: 1rem; font-weight: 600; line-height: 1.3; }
.row-desc {
  margin-top: 4px; font-size: .875rem; color: var(--ink-2); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.row-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.row-from  { font-size: .75rem; color: var(--ink-3); }
.row-price { font-size: .9375rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.row-foot .row-from + .row-price { margin-left: -4px; }
.mini {
  padding: 3px 8px; border-radius: 6px;
  background: var(--accent-soft); color: var(--accent);
  font-size: .6875rem; font-weight: 600;
}
.thumb {
  flex: 0 0 auto; width: 96px; height: 96px;
  border-radius: var(--r-md); object-fit: cover; background: var(--bg-2);
}

/* Agotado: se muestra, no se esconde — pero queda claro que hoy no se puede pedir. */
.row.out .thumb { filter: grayscale(1); opacity: .5; }
.row.out .row-name,
.row.out .row-desc,
.row.out .row-price { color: var(--ink-3); }
.row.out .row-price { text-decoration: line-through; text-decoration-thickness: 1px; }
.badge-out {
  padding: 3px 8px; border-radius: 6px;
  background: #F5E7E4; color: var(--warn);
  font-size: .6875rem; font-weight: 600;
}

.no-results,
.empty { padding: 44px 0; text-align: center; color: var(--ink-3); }

/* ── Pie ──────────────────────────────────────────────────────────────── */
footer {
  margin-top: 46px; padding: 28px 0 24px;
  border-top: 1px solid var(--line); background: var(--bg-2);
}
.foot-grid { display: grid; gap: 22px; }
.foot h2 {
  font-family: 'Onest', sans-serif; font-size: .6875rem; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px;
}
.foot p,
.foot a { font-size: .875rem; color: var(--ink-2); text-decoration: none; display: block; }
.foot a:hover { color: var(--accent); }
.foot-note {
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  font-size: .75rem; color: var(--ink-3);
}

/* Atribución del pie: la palabra "Comandapp" pasó a ser el lockup. 15px de alto para que
   acompañe al texto de .75rem sin dominarlo — el lockup v4 es 3,78:1, así que son ~57px
   de ancho. `gap` en vez de un espacio: el <img> es un bloque dentro de la línea. */
.foot-brand {
  display: inline-flex; align-items: center; gap: 6px;
}
.foot-brand img {
  height: 15px; width: auto; display: block;
}


/* ── Llamado a la acción ──────────────────────────────────────────────── */
.cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 18px; border-radius: 16px;
  background: var(--accent); color: #FFFFFF; text-decoration: none;
  font-weight: 600; font-size: .9375rem;
  box-shadow: 0 6px 20px rgba(15, 26, 21, .22);
}
.cta svg { width: 19px; height: 19px; fill: currentColor; }

/* ── Tablet ───────────────────────────────────────────────────────────── */
@media (min-width: 720px) {
  .cover { height: 260px; }
  .card { margin-top: -70px; padding: 22px; }
  .card h1 { font-size: 1.875rem; }
  .logo { width: 66px; height: 66px; border-radius: 19px; }
  .logo-text { font-size: 25px; }
  .foot-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}

/* ── Escritorio ───────────────────────────────────────────────────────── */
@media (min-width: 960px) {
  body { padding-bottom: 40px; }
  .layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 44px; align-items: start; }
  .nav { display: block; position: sticky; top: 126px; padding-top: 28px; }
  .nav h2 {
    font-family: 'Onest', sans-serif; font-size: .6875rem; font-weight: 700;
    letter-spacing: .11em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px;
  }
  .nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
  .nav button {
    display: flex; align-items: center; width: 100%;
    padding: 9px 12px; border-radius: 10px;
    font-size: .9375rem; color: var(--ink-2);
    transition: background .15s ease, color .15s ease;
  }
  .nav button:hover { background: var(--bg-2); color: var(--ink); }
  .nav button[aria-current="true"] { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
  .nav .n { margin-left: auto; font-size: .75rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
  .tabs { display: none; }
  .cat { padding-top: 0; margin-top: 38px; scroll-margin-top: 104px; }
  .cat:first-child { margin-top: 26px; }
  .rows { grid-template-columns: 1fr 1fr; column-gap: 36px; }
  .thumb { width: 110px; height: 110px; }
  .cta { left: auto; right: 24px; bottom: 24px; width: auto; padding: 15px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Aviso de vista previa ────────────────────────────────────────────── */
/* La barra empuja todo hacia abajo en vez de flotar: tapando la portada, el dueño
   revisaría un menú al que le falta justo lo primero que ve el cliente. */
.preview-bar {
  padding: 9px 16px;
  background: var(--promo);
  color: #FFFFFF;
  font-size: .8125rem;
  font-weight: 600;
  text-align: center;
}
.is-preview .sticky { top: 0; }

/* ── Carrito (F4) ─────────────────────────────────────────────────────── */
/* Solo se carga cuando el negocio lo tiene encendido; un menú de solo lectura
   no baja ni este CSS ni el JS del carrito. */
.row.tap { cursor: pointer; }
.row.tap:hover .row-name { color: var(--accent); }

/*
 * Que se pueda agregar tiene que VERSE.
 *
 * La fila entera es tocable desde que existe el carrito, pero lo único que lo decía era el
 * cursor del ratón (.row.tap) — y en un teléfono no hay cursor. Un menú con carrito encendido
 * se veía exactamente igual que uno de solo lectura: el cliente tocaba un platillo, no pasaba
 * nada que él pudiera notar, y concluía que la página no servía. El signo va alineado arriba,
 * a la altura del nombre, para no pelearse con la foto.
 */
.row-add {
  flex: 0 0 auto; align-self: center;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--accent); font-size: 1.25rem; font-weight: 600; line-height: 1;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.row.tap:hover .row-add { background: var(--accent); border-color: var(--accent); color: #fff; }

.cartbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(115%);
  transition: transform .28s cubic-bezier(.2, .8, .3, 1);
}
.cartbar.on { transform: none; }
.cart-btn {
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 11px;
  padding: 15px 18px; border-radius: 16px;
  background: var(--accent); color: #FFFFFF;
  font-weight: 600; font-size: .9375rem;
  box-shadow: 0 6px 20px rgba(15, 26, 21, .22);
}
.cart-qty {
  min-width: 24px; height: 24px; padding: 0 6px; border-radius: 8px;
  background: rgba(255, 255, 255, .22);
  display: grid; place-items: center;
  font-size: .8125rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.cart-total { margin-left: auto; font-weight: 700; font-variant-numeric: tabular-nums; }

/* Con la barra del pedido abajo, el botón fijo de WhatsApp estorbaría. */
.cartbar.on ~ .cta { display: none; }

.scrim {
  position: fixed; inset: 0; z-index: 60; background: rgba(10, 18, 14, .45);
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.scrim.on { opacity: 1; pointer-events: auto; }

/*
 * ⚠ Una hoja CERRADA no puede capturar clics.
 *
 * En pantallas anchas (>=960px en vitrina) la hoja deja de ser un panel que sube desde abajo y
 * pasa a ser un diálogo centrado, escondido con `opacity: 0`. Y `opacity: 0` NO desactiva el
 * ratón: quedaba un rectángulo invisible de 540 px en medio de la pantalla comiéndose todos los
 * clics — el cliente tocaba un producto y no pasaba nada. En el teléfono no se veía nunca,
 * porque ahí la hoja sale de la pantalla con `translateY(101%)`; el `scrim` de al lado ya tenía
 * su `pointer-events: none` desde siempre. Producción, 10-sep-2026.
 */
.sheet {
  pointer-events: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  max-height: 90vh; overflow-y: auto;
  background: var(--bg); border-radius: 24px 24px 0 0;
  padding: 0 16px calc(20px + env(safe-area-inset-bottom));
  transform: translateY(101%);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1);
  box-shadow: 0 -6px 34px rgba(15, 26, 21, .16);
}
.sheet.on { transform: none; pointer-events: auto; }
.grab { width: 38px; height: 4px; border-radius: 99px; background: var(--line); margin: 9px auto 0; }
.sheet-body { padding-top: 18px; }
.sheet h2 { font-size: 1.375rem; font-weight: 800; }

.opt-group { margin-top: 22px; }
.opt-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-3);
}
.req {
  padding: 2px 7px; border-radius: 5px; background: var(--bg-2);
  color: var(--ink-2); font-size: .625rem; letter-spacing: .04em;
}
.opt-list { display: flex; flex-direction: column; gap: 8px; margin-top: 11px; }
.opt {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--r-md);
  transition: border-color .15s ease, background .15s ease;
}
.opt[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-soft); }
.radio { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line); flex: 0 0 auto; position: relative; }
.opt[aria-pressed="true"] .radio { border-color: var(--accent); }
.opt[aria-pressed="true"] .radio::after {
  content: ""; position: absolute; inset: 3.5px; border-radius: 50%; background: var(--accent);
}
.opt-name { font-size: .9375rem; }
.opt-plus { margin-left: auto; font-size: .875rem; color: var(--ink-2); font-variant-numeric: tabular-nums; }

.sheet-actions { display: flex; gap: 10px; align-items: center; margin-top: 22px; }
.stepper {
  display: flex; align-items: center; gap: 2px;
  border: 1.5px solid var(--line); border-radius: 14px; padding: 4px;
}
.stepper button { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 1.25rem; color: var(--ink-2); }
.stepper button:hover { background: var(--bg-2); color: var(--ink); }
.stepper span { min-width: 30px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

.add {
  flex: 1; padding: 16px; border-radius: 16px;
  background: var(--accent); color: #FFFFFF;
  font-weight: 600; font-size: .9375rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.add:hover:not(:disabled) { background: #0B6537; }
.add:disabled { background: var(--bg-2); color: var(--ink-3); cursor: not-allowed; }
.add svg { width: 19px; height: 19px; fill: currentColor; }
.add.wa { width: 100%; margin-top: 20px; }

.line { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.line-q {
  flex: 0 0 auto; min-width: 26px; height: 26px; padding: 0 7px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-size: .8125rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.line-name { font-size: .9375rem; font-weight: 600; display: block; }
.line-opt { font-size: .8125rem; color: var(--ink-2); margin-top: 2px; display: block; }
.line-price { margin-left: auto; font-weight: 600; font-variant-numeric: tabular-nums; }
/* Quitar: un ícono con 36 px de área táctil, a la derecha del precio. Era la palabra «Quitar»
   subrayada debajo del nombre, que se leía como parte de las opciones del producto. */
.line-drop {
  flex-shrink: 0; width: 36px; height: 36px; margin: -8px -8px 0 0;
  display: grid; place-items: center; border-radius: 10px; color: var(--ink-3);
  transition: color .15s ease, background-color .15s ease;
}
.line-drop:hover { color: var(--warn); background: color-mix(in srgb, var(--warn) 10%, transparent); }
.line-drop svg { width: 19px; height: 19px; fill: currentColor; }

.sums { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.sum { display: flex; justify-content: space-between; font-size: .9375rem; color: var(--ink-2); }
.sum span:last-child { font-variant-numeric: tabular-nums; }
.sum.total { padding-top: 12px; border-top: 1px solid var(--line); color: var(--ink); font-size: 1.125rem; font-weight: 700; }
.sum-hint { font-size: .8125rem; color: var(--ink-3); }

.cart-error {
  margin-top: 14px; padding: 11px 13px; border-radius: var(--r-md);
  background: #F5E7E4; color: var(--warn); font-size: .875rem; line-height: 1.4;
}

@media (min-width: 960px) {
  .sheet {
    left: 50%; right: auto; bottom: auto; top: 50%;
    width: min(540px, calc(100vw - 48px));
    border-radius: 22px; padding: 0 22px 24px; max-height: 88vh;
    transform: translate(-50%, -46%) scale(.98); opacity: 0;
    transition: transform .26s cubic-bezier(.2, .8, .3, 1), opacity .2s ease;
  }
  .sheet.on { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  .grab { display: none; }
  .sheet-body { padding-top: 26px; }
}

/* ── Servicios reservables (V152) ─────────────────────────────────────────
   No son tocables como los productos: no hay carrito para una hora de la
   agenda. La acción de la sección es una sola, y es escribir por WhatsApp. */
.cat.servicios .row { cursor: default; }
.btn-agendar {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent, #0e7a43);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.btn-agendar:hover { filter: brightness(1.08); }

/* ── Filtros por combinación (V152) ───────────────────────────────────────
   Aparecen solo cuando el catálogo tiene por qué filtrarse (talla, color).
   El servidor ya descartó los ejes de un solo valor o de un solo artículo. */
.filtros { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.filtro { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.filtro-nombre { font-size: .78rem; font-weight: 600; opacity: .7; margin-right: 2px; }
.chip-f {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .82rem;
  cursor: pointer;
  opacity: .75;
}
.chip-f:hover { opacity: 1; }
.chip-f.on {
  background: var(--accent, #0e7a43);
  border-color: var(--accent, #0e7a43);
  color: #fff;
  opacity: 1;
}
