/* ============================================================
   VegaFácil — Sistema de diseño
   Mercado fresco · profesional pero cercano
   ============================================================ */

:root {
  /* Marca */
  --verde:        #1f5c3d;   /* verde mercado — principal */
  --verde-700:    #18492f;
  --verde-300:    #5a9b78;
  --tomate:       #e15239;   /* acciones */
  --tomate-700:   #c43e27;
  --rojo:         #d23b2c;   /* alertas de margen */
  --crema:        #fbf7ee;   /* fondo */

  /* Tintes suaves */
  --verde-soft:   #e7f0ea;
  --tomate-soft:  #fbe7e0;
  --rojo-soft:    #fae3df;
  --amarillo-soft:#fbf2da;

  /* Neutros (tintados cálidos) */
  --ink:          #1c2620;
  --ink-2:        #3b463f;
  --muted:        #717a72;
  --muted-2:      #99a09a;
  --line:         #ece5d6;
  --line-2:       #e2dac8;
  --card:         #ffffff;
  --card-2:       #fdfbf5;

  /* Semánticos */
  --ok:           #1f5c3d;
  --ok-soft:      #e7f0ea;
  --bad:          #d23b2c;
  --bad-soft:     #fae3df;

  /* Tipografía (sobreescribible por Tweaks) */
  --font-head: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;

  /* Forma */
  --r-card: 16px;
  --r-sm: 10px;
  --r-pill: 999px;

  /* Sombras suaves */
  --sh-1: 0 1px 2px rgba(28,38,32,.05), 0 2px 8px rgba(28,38,32,.04);
  --sh-2: 0 4px 14px rgba(28,38,32,.08), 0 1px 3px rgba(28,38,32,.05);
  --sh-3: 0 10px 30px rgba(28,38,32,.12), 0 4px 10px rgba(28,38,32,.06);
  --sh-pop: 0 -6px 24px rgba(28,38,32,.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
::selection { background: var(--verde-soft); }

/* Scrollbar discreto */
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: #d9d2c2; border-radius: 999px; border: 3px solid transparent; background-clip: content-box; }
*::-webkit-scrollbar-thumb:hover { background: #c7bfac; background-clip: content-box; }

/* ---------- Tipografía utilitaria ---------- */
.h-display { font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; line-height: 1.02; }
.h-title   { font-family: var(--font-head); font-weight: 700; letter-spacing: -.015em; line-height: 1.08; }
.h-eyebrow { font-family: var(--font-body); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; color: var(--muted); }
.num       { font-variant-numeric: tabular-nums; }

/* ============================================================
   App shell
   ============================================================ */
#root { min-height: 100vh; }
.app-stage { min-height: 100vh; display: flex; flex-direction: column; }

/* Barra superior de la app */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--crema) 86%, white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar .brand-mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--verde); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 18px; flex: none; }
.topbar .who { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.topbar .who b { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.topbar .who span { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Columna app móvil */
.col {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
}
.col.wide { max-width: 1080px; }
.page { flex: 1; padding-bottom: 120px; }
.page.no-cart { padding-bottom: 40px; }

/* ============================================================
   Botones
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 20px; transition: transform .08s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px) scale(.995); }
.btn-primary { background: var(--tomate); color: #fff; box-shadow: var(--sh-1); }
.btn-primary:hover { background: var(--tomate-700); }
.btn-verde { background: var(--verde); color: #fff; box-shadow: var(--sh-1); }
.btn-verde:hover { background: var(--verde-700); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: #fff; border-color: var(--muted-2); }
.btn-soft { background: var(--verde-soft); color: var(--verde-700); }
.btn-soft:hover { background: color-mix(in srgb, var(--verde-soft) 75%, var(--verde)); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 22px; font-size: 16px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ============================================================
   Tarjetas
   ============================================================ */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--sh-1);
}
.card-pad { padding: 16px; }

/* ---------- Tarjeta de producto ---------- */
.prod {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 12px 14px;
  box-shadow: var(--sh-1);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.prod:hover { box-shadow: var(--sh-2); }
.prod.in-cart { border-color: var(--verde-300); box-shadow: 0 0 0 1px var(--verde-300), var(--sh-1); }
.prod .glyph {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  display: grid; place-items: center; font-size: 28px;
  background: var(--card-2); border: 1px solid var(--line);
}
.prod .info { flex: 1; min-width: 0; }
.prod .info .name { font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.prod .info .unit { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.prod .price-col { text-align: right; flex: none; }
.prod .price-col .price { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.prod .price-col .neg { font-size: 11px; color: var(--verde); font-weight: 600; }
.prod .price-col .was { font-size: 11.5px; color: var(--muted-2); text-decoration: line-through; }

/* ============================================================
   Selector de cantidad (+/-)
   ============================================================ */
.stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line-2); border-radius: var(--r-pill); background: #fff; overflow: hidden; }
.stepper button { width: 38px; height: 38px; border: none; background: #fff; color: var(--verde); font-size: 20px; font-weight: 600; display: grid; place-items: center; transition: background .12s; }
.stepper button:hover { background: var(--verde-soft); }
.stepper button:disabled { color: var(--muted-2); background: #fff; cursor: not-allowed; }
.stepper .val { min-width: 30px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; font-size: 15px; }
.stepper.sm button { width: 32px; height: 32px; font-size: 17px; }
.stepper.sm .val { min-width: 24px; font-size: 14px; }

/* botón "agregar" compacto cuando qty=0 */
.add-btn { width: 40px; height: 40px; border-radius: var(--r-pill); border: 1px solid var(--verde-300); background: var(--verde-soft); color: var(--verde-700); font-size: 22px; font-weight: 600; display: grid; place-items: center; transition: background .12s, transform .08s; }
.add-btn:hover { background: color-mix(in srgb, var(--verde-soft) 70%, var(--verde)); }
.add-btn:active { transform: scale(.94); }

/* ============================================================
   Badges de estado
   ============================================================ */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px 4px 9px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; line-height: 1; white-space: nowrap; }
.badge .dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
.badge-pend { background: var(--amarillo-soft); color: #9a6b16; }
.badge-deliv { background: var(--verde-soft); color: var(--verde-700); }
.badge-neg { background: var(--tomate-soft); color: var(--tomate-700); }

/* Pill de margen */
.mpill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.mpill.ok { background: var(--ok-soft); color: var(--verde-700); }
.mpill.bad { background: var(--bad-soft); color: var(--rojo); }

/* ============================================================
   Filtros / segmented
   ============================================================ */
.segs { display: inline-flex; gap: 4px; padding: 4px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); }
.segs button { border: none; background: transparent; padding: 8px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: 14px; color: var(--muted); transition: all .15s; }
.segs button.on { background: var(--verde); color: #fff; }
.segs.full { display: flex; }
.segs.full button { flex: 1; }

/* Tabs (dueño) */
.tabs { display: flex; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px; }
.tabs button { flex: 1; border: none; background: transparent; padding: 10px 12px; border-radius: var(--r-pill); font-weight: 600; font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; justify-content: center; gap: 7px; transition: all .15s; }
.tabs button.on { background: var(--verde); color: #fff; }

/* ============================================================
   Alerta de margen
   ============================================================ */
.alert { border-radius: var(--r-card); padding: 14px 16px; display: flex; gap: 12px; }
.alert.danger { background: var(--rojo-soft); border: 1px solid color-mix(in srgb, var(--rojo) 30%, white); }
.alert .ic { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; font-weight: 800; }
.alert.danger .ic { background: var(--rojo); color: #fff; }
.alert .body { flex: 1; min-width: 0; }
.alert .body .t { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--rojo); }
.alert .body .d { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.alert .body ul { margin: 8px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.alert .body li { font-size: 13px; display: flex; justify-content: space-between; gap: 12px; align-items: center; background: #fff; border-radius: 8px; padding: 7px 10px; }
.alert .body li > span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.alert .body li > span:last-child { flex: none; white-space: nowrap; display: inline-flex; gap: 8px; }

/* ============================================================
   Carrito flotante
   ============================================================ */
.cart-dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; pointer-events: none; }
.cart-bar {
  pointer-events: auto;
  margin: 0 auto 16px; max-width: 488px;
  background: var(--verde); color: #fff;
  border-radius: var(--r-pill); box-shadow: var(--sh-3);
  display: flex; align-items: center; gap: 12px; padding: 10px 12px 10px 18px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), opacity .2s;
}
.cart-bar.hidden { transform: translateY(140%); opacity: 0; }
.cart-bar .c-count { font-size: 13px; opacity: .85; }
.cart-bar .c-amt { font-family: var(--font-head); font-weight: 700; font-size: 19px; line-height: 1; }
.cart-bar .spacer { flex: 1; }
.cart-bar .c-go { background: #fff; color: var(--verde-700); border: none; border-radius: var(--r-pill); padding: 11px 18px; font-weight: 700; font-size: 15px; display: inline-flex; gap: 8px; align-items: center; }
.cart-bar .c-go:hover { background: var(--crema); }

/* ============================================================
   Bottom sheet (resumen)
   ============================================================ */
.sheet-scrim { position: fixed; inset: 0; z-index: 60; background: rgba(20,28,23,.42); backdrop-filter: blur(2px); display: flex; align-items: flex-end; justify-content: center; animation: fade .2s ease; }
.sheet { width: 100%; max-width: 520px; background: var(--crema); border-radius: 24px 24px 0 0; box-shadow: var(--sh-pop); max-height: 88vh; display: flex; flex-direction: column; animation: slideup .28s cubic-bezier(.2,.85,.2,1); }
.sheet .grab { width: 40px; height: 4px; border-radius: 999px; background: #d9d2c2; margin: 10px auto 4px; }
.sheet .sheet-head { padding: 8px 20px 12px; display: flex; align-items: center; justify-content: space-between; }
.sheet .sheet-body { padding: 4px 20px; overflow-y: auto; }
.sheet .sheet-foot { padding: 14px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--card-2); border-radius: 0 0 0 0; }

@keyframes fade { from { opacity: 0; } }
@keyframes slideup { from { transform: translateY(100%); } }
/* Entradas aditivas: el estado visible es el base; solo transform, nunca opacity:0,
   para que el contenido jamás quede oculto si el timeline no avanza (PDF, pestaña en 2.º plano). */
@keyframes pop { from { transform: scale(.975); } }
@keyframes enter { from { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) {
  .fade-enter, .login-card, .toast, .role-fab .rf-menu { animation: none !important; }
}

/* Línea de resumen */
.line-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.line-item:last-child { border-bottom: none; }
.line-item .lg { width: 38px; height: 38px; border-radius: 10px; background: var(--card-2); border: 1px solid var(--line); display: grid; place-items: center; font-size: 20px; flex: none; }
.line-item .ln { flex: 1; min-width: 0; }
.line-item .ln b { font-weight: 600; font-size: 14.5px; }
.line-item .ln span { display: block; font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.line-item .lp { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }

/* Totales */
.totrow { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.totrow.grand { font-family: var(--font-head); font-weight: 800; font-size: 20px; padding-top: 10px; }

/* ============================================================
   Banner negociado
   ============================================================ */
.neg-banner { display: flex; align-items: center; gap: 12px; background: linear-gradient(100deg, var(--tomate-soft), color-mix(in srgb, var(--tomate-soft) 60%, white)); border: 1px solid color-mix(in srgb, var(--tomate) 22%, white); border-radius: var(--r-card); padding: 12px 14px; }
.neg-banner .nb-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--tomate); color: #fff; display: grid; place-items: center; flex: none; font-size: 18px; }
.neg-banner .nb-t { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--tomate-700); }
.neg-banner .nb-d { font-size: 12.5px; color: var(--ink-2); }

/* ============================================================
   Stat cards (dueño)
   ============================================================ */
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 14px 16px; box-shadow: var(--sh-1); }
.stat .k { font-size: 12.5px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 7px; }
.stat .v { font-family: var(--font-head); font-weight: 800; font-size: 26px; margin-top: 6px; letter-spacing: -.02em; }
.stat .v small { font-size: 14px; font-weight: 600; color: var(--muted); }

/* Fila consolidado compra */
.buyrow { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-1); }
.buyrow .glyph { width: 46px; height: 46px; border-radius: 12px; background: var(--card-2); border: 1px solid var(--line); display: grid; place-items: center; font-size: 24px; flex: none; }
.buyrow .qty-big { font-family: var(--font-head); font-weight: 800; font-size: 22px; line-height: 1; }
.buyrow .qty-unit { font-size: 12px; color: var(--muted); }

/* Acordeón pedidos */
.order-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-1); overflow: hidden; }
.order-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; width: 100%; border: none; background: transparent; text-align: left; }
.order-head:hover { background: var(--card-2); }
.order-head .av { width: 40px; height: 40px; border-radius: 11px; background: var(--verde-soft); color: var(--verde-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 16px; flex: none; }
.order-head .chev { transition: transform .2s; color: var(--muted); }
.order-head .chev.open { transform: rotate(90deg); }
.order-body { padding: 0 16px 14px; }

/* Editor de precio compra (dueño › precios) */
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-1); padding: 14px 16px; transition: border-color .2s, box-shadow .2s; }
.price-card.flag { border-color: color-mix(in srgb, var(--rojo) 45%, white); box-shadow: 0 0 0 1px color-mix(in srgb, var(--rojo) 30%, white), var(--sh-1); }
.cost-input { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-sm); overflow: hidden; background: #fff; }
.cost-input span { padding: 0 4px 0 10px; color: var(--muted); font-weight: 600; }
.cost-input input { width: 86px; border: none; padding: 9px 10px 9px 2px; font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; background: transparent; outline: none; }
.cost-input:focus-within { border-color: var(--verde-300); box-shadow: 0 0 0 3px var(--verde-soft); }

.prow { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-top: 1px dashed var(--line); }
.prow:first-of-type { border-top: none; }
.prow .pl { display: flex; flex-direction: column; }
.prow .pl b { font-weight: 600; font-size: 14px; }
.prow .pl span { font-size: 11.5px; color: var(--muted); }
.prow .pr { display: flex; align-items: center; gap: 10px; }
.prow .pr .amt { font-weight: 700; font-variant-numeric: tabular-nums; font-size: 15px; }

/* ============================================================
   Login
   ============================================================ */
.login-wrap { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; position: relative; overflow: hidden; }
.login-bg { position: absolute; inset: 0; background:
    radial-gradient(900px 500px at 80% -10%, color-mix(in srgb, var(--verde) 14%, transparent), transparent 60%),
    radial-gradient(700px 460px at 0% 110%, color-mix(in srgb, var(--tomate) 12%, transparent), transparent 55%);
  z-index: 0; }
.login-card { position: relative; z-index: 1; width: 100%; max-width: 400px; background: var(--card); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--sh-3); padding: 30px 26px; animation: pop .3s ease; }
.login-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; }
.login-logo .lm { width: 46px; height: 46px; border-radius: 13px; background: var(--verde); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 25px; }
.login-logo .lt { font-family: var(--font-head); font-weight: 800; font-size: 23px; letter-spacing: -.02em; }
.login-logo .lt em { font-style: normal; color: var(--tomate); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field .inp { width: 100%; border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 14px; font-size: 15px; background: var(--card-2); outline: none; transition: border-color .15s, box-shadow .15s, background .15s; }
.field .inp:focus { border-color: var(--verde-300); box-shadow: 0 0 0 3px var(--verde-soft); background: #fff; }

/* Cuentas demo */
.demo-accts { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; }
.demo-accts .dh { font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 9px; }
.demo-row { display: flex; gap: 8px; }
.demo-chip { flex: 1; border: 1px solid var(--line-2); background: var(--card-2); border-radius: 12px; padding: 10px 8px; text-align: center; transition: all .15s; }
.demo-chip:hover { border-color: var(--verde-300); background: var(--verde-soft); }
.demo-chip .e { font-size: 20px; }
.demo-chip .n { font-size: 12px; font-weight: 600; margin-top: 3px; color: var(--ink-2); }

/* ============================================================
   Selector de rol flotante (demo)
   ============================================================ */
.role-fab { position: fixed; right: 16px; bottom: 92px; z-index: 55; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.role-fab .rf-menu { display: flex; flex-direction: column; gap: 6px; background: var(--ink); padding: 8px; border-radius: 16px; box-shadow: var(--sh-3); animation: pop .18s ease; }
.role-fab .rf-menu button { display: flex; align-items: center; gap: 9px; border: none; background: transparent; color: #fff; padding: 8px 12px 8px 9px; border-radius: 10px; font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.role-fab .rf-menu button:hover { background: rgba(255,255,255,.12); }
.role-fab .rf-menu button.on { background: var(--verde); }
.role-fab .rf-menu .e { width: 24px; height: 24px; border-radius: 7px; background: rgba(255,255,255,.14); display: grid; place-items: center; font-size: 13px; }
.role-fab .rf-toggle { align-self: flex-end; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; border: none; box-shadow: var(--sh-3); display: grid; place-items: center; font-size: 19px; }
.role-fab .rf-toggle:hover { background: #2a352e; }
.role-fab .rf-cap { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--ink); padding: 2px 7px; border-radius: 6px; position: absolute; top: -6px; right: 0; transform: translateY(-100%); white-space: nowrap; opacity: .9; }

/* ============================================================
   Helpers
   ============================================================ */
.section-label { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.muted { color: var(--muted); }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.empty { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty .ee { font-size: 40px; }
.toast { position: fixed; left: 50%; bottom: 110px; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--r-pill); box-shadow: var(--sh-3); font-weight: 600; font-size: 14px; z-index: 70; display: flex; gap: 9px; align-items: center; animation: pop .2s ease; }

.fade-enter { animation: enter .26s cubic-bezier(.2,.8,.2,1); }

@media (min-width: 720px) {
  .owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
}
