/* ============================================================
   Jawa Logistic — Portal de cliente (hub) + admin-hub.html
   Hoja compartida por las 9 páginas de hub/*.html y por admin-hub.html, a
   propósito: son 10 archivos y duplicar un bloque <style> de shell/sidebar
   en cada uno (como sí hace admin-tienda.html, que es solo 1 archivo)
   sería un problema real de mantenimiento. Misma paleta que css/styles.css
   (redefinida acá para no arrastrar las reglas de la landing — hero,
   partículas, animaciones — que este portal no usa).
   ============================================================ */

:root {
  --navy: #16223d;
  --navy-2: #1f3157;
  --navy-light: #2c436f;
  --paper: #f6f7fa;
  --paper-2: #eceff4;
  --coral: #c54e2d;
  --coral-deep: #a23f22;
  --gold: #8c6f4b;
  --gold-bright: #d7b686;
  --line: #dde1e8;
  --muted: #5b6472;
  --white: #ffffff;
  --ink: #171b22;
  --green: #1f8a4c;
  --green-bg: #e9f7ef;
  --font-display: "Oswald", -apple-system, "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}
h1, h2, h3 { font-family: var(--font-display); margin: 0; }
.data { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-variant-numeric: tabular-nums; }
a { color: inherit; }

/* ---------- Shell: sidebar + topbar + contenido ---------- */
#hub-shell { display: contents; }

.hub-layout { display: flex; min-height: 100vh; }

.hub-sidebar {
  width: 240px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(201,80,46,0.28), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 50;
}
.hub-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: var(--white);
}
.hub-brand-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.hub-brand-tag { display: block; font-size: 10px; font-weight: 700; color: var(--gold-bright); letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }

.hub-nav { flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 3px; }
.hub-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  border-left: 3px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.hub-nav a:hover { background: rgba(255, 255, 255, 0.06); color: var(--white); }
.hub-nav a.active {
  background: linear-gradient(90deg, rgba(201,80,46,0.32), rgba(201,80,46,0.05));
  color: var(--white);
  border-left-color: var(--gold-bright);
}
.hub-nav .hub-nav-icon {
  font-size: 12.5px;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-nav a.active .hub-nav-icon { background: rgba(255, 255, 255, 0.18); }

.hub-sidebar-footer { padding: 12px 10px 18px; border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; gap: 2px; }
.hub-sidebar-footer a, .hub-sidebar-footer button {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600; text-decoration: none; color: rgba(255, 255, 255, 0.62);
  background: none; border: none; cursor: pointer; font-family: inherit; text-align: left; width: 100%;
}
.hub-sidebar-footer a:hover, .hub-sidebar-footer button:hover { background: rgba(255, 255, 255, 0.06); color: var(--white); }

.hub-main {
  flex: 1;
  min-width: 0;
  background: radial-gradient(circle at 100% 0%, rgba(215,182,134,0.09), transparent 40%), var(--paper);
}

.hub-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 247, 250, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold-bright);
  box-shadow: 0 1px 0 var(--line);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hub-nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 7px 10px; cursor: pointer; }
.hub-topbar-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; text-transform: uppercase; letter-spacing: .015em; color: var(--navy); }

.hub-bell { position: relative; }
.hub-bell-btn { background: none; border: 1px solid var(--line); border-radius: 8px; width: 38px; height: 38px; cursor: pointer; font-size: 16px; position: relative; }
.hub-bell-badge {
  position: absolute; top: -5px; right: -5px; background: var(--coral); color: var(--white);
  font-size: 10px; font-weight: 800; min-width: 17px; height: 17px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.hub-bell-dropdown {
  display: none; position: absolute; right: 0; top: 46px; width: 320px; max-height: 380px; overflow-y: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 12px 32px rgba(22, 34, 61, 0.14);
  z-index: 60;
}
.hub-bell-dropdown.open { display: block; }
.hub-bell-item { display: block; padding: 12px 14px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); }
.hub-bell-item:last-child { border-bottom: none; }
.hub-bell-item.unread { background: var(--paper-2); }
.hub-bell-item-title { font-size: 12.5px; font-weight: 700; margin-bottom: 2px; }
.hub-bell-item-body { font-size: 11.5px; color: var(--muted); }
.hub-bell-empty { padding: 18px 14px; font-size: 12.5px; color: var(--muted); text-align: center; }
.hub-bell-footer { display: block; text-align: center; padding: 10px; font-size: 12px; font-weight: 700; color: var(--coral); text-decoration: none; }

.hub-content { max-width: 1040px; padding: 26px 28px 80px; }
.hub-page-lead { color: var(--muted); font-size: 13px; margin: 4px 0 24px; }

@media (max-width: 860px) {
  .hub-sidebar { position: fixed; left: -260px; top: 0; height: 100vh; transition: left .2s ease; }
  .hub-sidebar.open { left: 0; }
  .hub-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hub-content { padding: 22px 16px 70px; }
  .hub-topbar { padding: 12px 16px; }
}

/* ---------- Componentes compartidos (dashboard, cotizador, admin-hub, etc.) ---------- */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 22px; }
.hub-stat { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 20px 20px 18px; box-shadow: 0 14px 32px -26px rgba(22,34,61,0.4); position: relative; overflow: hidden; }
.hub-stat::before { content: ""; position: absolute; top: 0; left: 0; width: 34px; height: 3px; background: var(--gold); }
.hub-stat-label { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.hub-stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy); }
.hub-stat-value.coral { color: var(--coral); }

.hub-card { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 14px; padding: 22px 20px 20px; margin-bottom: 16px; box-shadow: 0 14px 32px -26px rgba(22,34,61,0.5); }
.hub-card-title { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--coral); margin-bottom: 14px; }
.hub-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }

.hub-empty { color: var(--muted); font-size: 13px; padding: 18px 0; text-align: center; }

.hub-item { border: 1px solid var(--line); border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.hub-item-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.hub-item-title { font-weight: 800; font-size: 14px; }
.hub-item-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.hub-pill { font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 3px 9px; border-radius: 5px; white-space: nowrap; }
.hub-pill-cotizado { background: #fff4de; color: #a05a00; }
.hub-pill-deposito_confirmado { background: #e8f0fc; color: #1a4d8f; }
.hub-pill-en_transito { background: #eef0fb; color: #4338ca; }
.hub-pill-en_aduana { background: #fdf1e4; color: #b3590f; }
.hub-pill-liberado { background: #eaf5ff; color: #0b6ea8; }
.hub-pill-entregado { background: var(--green-bg); color: var(--green); }
.hub-pill-cancelado { background: #f1f1f1; color: #666; }
.hub-pill-cargo { background: #fdeceb; color: var(--coral-deep); }
.hub-pill-pago { background: var(--green-bg); color: var(--green); }

.hub-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.hub-field label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.hub-field input, .hub-field select, .hub-field textarea {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 9px 10px;
  font-size: 13.5px; font-family: inherit; color: var(--ink); width: 100%;
}
.hub-field textarea { resize: vertical; min-height: 70px; }
.hub-field-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.hub-field-row .span2 { grid-column: span 2; }
.hub-field-row .span4 { grid-column: 1 / -1; }
@media (max-width: 700px) { .hub-field-row { grid-template-columns: repeat(2, 1fr); } }

.hub-btn-primary { background: linear-gradient(135deg, var(--coral), var(--coral-deep)); color: #fff; border: none; border-radius: 9px; padding: 11px 18px; font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit; box-shadow: 0 8px 20px -10px rgba(201,80,46,0.65); transition: transform .15s ease, box-shadow .15s ease; }
.hub-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(201,80,46,0.75); }
.hub-btn-primary:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }
.hub-btn-ghost { background: transparent; border: 1.5px solid var(--line); border-radius: 9px; padding: 10px 14px; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit; color: var(--ink); transition: border-color .15s ease; }
.hub-btn-ghost:hover { border-color: var(--gold); }
.hub-btn-danger { background: none; border: none; color: var(--coral-deep); font-size: 12px; cursor: pointer; font-family: inherit; }

.hub-msg { font-size: 12px; padding: 9px 11px; border-radius: 7px; margin-top: 10px; display: none; }
.hub-msg.show { display: block; }
.hub-msg.error { background: #fdeceb; color: var(--coral-deep); }
.hub-msg.ok { background: var(--green-bg); color: var(--green); }

.hub-tabs { display: flex; gap: 6px; margin-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.hub-tab-btn { background: none; border: none; padding: 12px 16px; font-size: 13px; font-weight: 700; color: var(--muted); cursor: pointer; font-family: inherit; border-bottom: 2px solid transparent; }
.hub-tab-btn.active { color: var(--navy); border-bottom-color: var(--coral); }
.hub-tab-panel { display: none; }
.hub-tab-panel.active { display: block; }

.hub-timeline { list-style: none; margin: 0; padding: 0; }
.hub-timeline li { position: relative; padding: 0 0 20px 24px; border-left: 2px solid var(--line); }
.hub-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.hub-timeline li::before { content: ""; position: absolute; left: -6px; top: 2px; width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.hub-timeline .estado { font-weight: 800; font-size: 13px; }
.hub-timeline .fecha { font-size: 11.5px; color: var(--muted); }

/* ---------- Stepper visual de seguimiento (tipo delivery app) ---------- */
.hub-stepper { display:flex; align-items:flex-start; overflow-x:auto; padding:6px 2px 4px; gap:0; }
.hub-stepper-step { display:flex; flex-direction:column; align-items:center; flex:1; min-width:76px; text-align:center; position:relative; }
.hub-stepper-line { position:absolute; top:19px; left:-50%; width:100%; height:3px; background:var(--line); z-index:0; }
.hub-stepper-step:first-child .hub-stepper-line { display:none; }
.hub-stepper-step.done .hub-stepper-line { background:var(--coral); }
.hub-stepper-icon { width:38px; height:38px; border-radius:50%; background:var(--paper-2); border:2px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:16px; position:relative; z-index:1; }
.hub-stepper-step.done .hub-stepper-icon { background:var(--coral); border-color:var(--coral); filter:grayscale(0); }
.hub-stepper-step.current .hub-stepper-icon { background:var(--navy); border-color:var(--navy); animation: hub-stepper-pulse 1.8s ease-in-out infinite; }
.hub-stepper-step:not(.done):not(.current) .hub-stepper-icon { filter:grayscale(1) opacity(.55); }
@keyframes hub-stepper-pulse { 0%,100% { box-shadow:0 0 0 0 rgba(22,34,61,0.35); } 50% { box-shadow:0 0 0 7px rgba(22,34,61,0); } }
.hub-stepper-label { font-size:10.5px; font-weight:700; color:var(--muted); margin-top:7px; line-height:1.3; }
.hub-stepper-step.done .hub-stepper-label, .hub-stepper-step.current .hub-stepper-label { color:var(--navy); }
.hub-stepper-cancelado { text-align:center; padding:14px; background:#fdecec; color:#b3261e; border-radius:8px; font-weight:700; font-size:13px; }
@media (max-width:640px) { .hub-stepper-step { min-width:64px; } .hub-stepper-label { font-size:9.5px; } }

/* ---------- Calificación de proveedores (estrellas) ---------- */
.calif-estrellas { display:inline-flex; gap:3px; }
.calif-estrella { font-size:20px; color:var(--line); line-height:1; }
.calif-estrella.activa { color:#e0a835; }
.calif-estrellas.interactivo .calif-estrella { cursor:pointer; transition:transform .1s ease; }
.calif-estrellas.interactivo .calif-estrella:hover { transform:scale(1.15); }

/* ---------- Club de Importadores: progreso ---------- */
.club-progreso-head { display:flex; justify-content:space-between; align-items:baseline; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.club-progreso-nivel { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:.02em; }
.club-progreso-monto { font-size:13px; color:var(--muted); font-weight:600; }
.club-progreso-track { position:relative; height:14px; background:var(--paper-2); border-radius:8px; overflow:hidden; }
.club-progreso-fill { height:100%; background:linear-gradient(90deg, var(--coral), var(--gold)); border-radius:8px; transition:width .4s ease; }
.club-progreso-meta { display:flex; justify-content:space-between; font-size:11.5px; color:var(--muted); margin-top:6px; }
.club-progreso-max { text-align:center; padding:10px; background:var(--green-bg); color:var(--green); border-radius:8px; font-weight:700; font-size:13px; margin-top:4px; }
/* Base de las tarjetas de nivel — portada de css/styles.css (club-importadores.html
   público) porque hub/club-importadores.html no carga esa hoja, solo esta. */
.club-tier { position:relative; background:var(--white); border-radius:16px; padding:32px 26px; text-align:center; border-top:4px solid #94a3b8; box-shadow:0 14px 34px -24px rgba(22,34,61,0.35); }
.club-tier-2 { border-top-color: var(--coral); }
.club-tier-3 { border-top-color: var(--gold); box-shadow:0 20px 46px -20px rgba(169,134,90,0.45); }
.club-tier-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gold); color:#fff; font-size:10.5px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; padding:4px 14px; border-radius:20px; white-space:nowrap; }
.club-tier-nombre { font-family:var(--font-display); font-size:20px; font-weight:700; text-transform:uppercase; letter-spacing:.02em; color:var(--navy); margin-top:6px; }
.club-tier-umbral { font-size:11.5px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.03em; margin-top:4px; }
.club-tier-descuento { font-size:34px; font-weight:800; color:var(--coral-deep); font-family:ui-monospace, monospace; margin:16px 0 12px; }
.club-tier-1 .club-tier-descuento { color:#94a3b8; font-size:26px; }
.club-tier-detalle { font-size:12.5px; color:var(--muted); line-height:1.65; }

.club-tiers-hub { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:18px; }
@media (max-width:720px) { .club-tiers-hub { grid-template-columns: 1fr; } }
.club-tiers-hub .club-tier { padding:22px 18px; }
.club-tiers-hub .club-tier-activo { outline:3px solid var(--coral); outline-offset:2px; }
.club-tiers-hub .club-tier-check { position:absolute; top:-13px; right:14px; background:var(--green); color:#fff; font-size:10.5px; font-weight:800; padding:3px 10px; border-radius:20px; }

/* ---------- Analizador de requisitos de importación (herramienta del HUB) ----------
   Portado de css/styles.css: hub/requisitos-importacion.html no carga esa hoja. */
.requisitos-box { max-width:none; margin:0; background:transparent; border-radius:0; padding:0; box-shadow:none; }
.requisitos-form { display:flex; gap:10px; flex-wrap:wrap; }
.requisitos-form input { flex:1 1 260px; font-size:14.5px; padding:11px 13px; border:1px solid var(--line); border-radius:8px; font-family:inherit; }
.requisitos-form button { flex:none; }
.requisitos-form button:disabled { opacity:.6; cursor:default; }
.requisitos-hs-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:12px; }
.requisitos-hs-row label { font-size:11.5px; color:var(--muted); font-weight:600; flex:none; }
.requisitos-hs-row input { flex:1 1 160px; max-width:220px; font-size:13px; padding:9px 12px; border:1px solid var(--line); border-radius:8px; font-family:inherit; }
.requisitos-sugerencia { font-size:12.5px; color:var(--navy); background:rgba(169,134,90,0.14); border-radius:8px; padding:10px 14px; margin:0 0 14px; line-height:1.6; }
.requisitos-resultado { margin-top:22px; padding-top:22px; border-top:1px dashed var(--line); }
.requisitos-aceptacion { display:flex; gap:12px; align-items:flex-start; border-radius:10px; padding:14px 16px; margin-bottom:18px; }
.requisitos-aceptacion-icono { font-size:20px; line-height:1; flex:none; }
.requisitos-aceptacion-titulo { font-size:14px; font-weight:800; }
.requisitos-aceptacion-nota { font-size:12.5px; margin-top:3px; line-height:1.55; opacity:.85; }
.requisitos-aceptacion-ok { background:rgba(52,150,90,0.1); color:#2e7d4f; }
.requisitos-aceptacion-permisos { background:rgba(201,150,46,0.14); color:#93650f; }
.requisitos-aceptacion-prohibido { background:rgba(201,80,46,0.12); color:var(--coral-deep); border:1px solid rgba(201,80,46,0.3); }
.requisitos-resultado-head { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:10px; }
.requisitos-nombre { font-size:16px; font-weight:800; color:var(--navy); }
.requisitos-categoria { font-size:12px; color:var(--muted); background:var(--paper-2); padding:4px 10px; border-radius:20px; }
.requisitos-badge { font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; padding:4px 10px; border-radius:20px; margin-left:auto; }
.requisitos-badge-baja { background:rgba(52,150,90,0.13); color:#2e7d4f; }
.requisitos-badge-media { background:rgba(201,150,46,0.16); color:#93650f; }
.requisitos-badge-alta { background:rgba(201,80,46,0.14); color:var(--coral-deep); }
.requisitos-resumen { font-size:13.5px; color:var(--ink); line-height:1.65; margin:0 0 16px; }
.requisitos-lista { display:flex; flex-direction:column; gap:10px; margin-bottom:18px; }
.requisitos-item { background:var(--paper); border-radius:8px; padding:12px 14px; }
.requisitos-item-organismo { font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; color:var(--coral); margin-bottom:3px; }
.requisitos-item-tramite { font-size:13.5px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.requisitos-item-detalle { font-size:12.5px; color:var(--muted); line-height:1.55; }
.requisitos-nota { font-size:11.5px; color:var(--muted); line-height:1.6; margin-bottom:10px; }
.requisitos-seguro { font-size:12.5px; color:var(--navy); background:var(--paper-2); border-radius:8px; padding:10px 14px; margin:0 0 18px; line-height:1.6; }
.requisitos-ctas { display:flex; gap:10px; flex-wrap:wrap; }
.requisitos-error { margin-top:22px; padding-top:22px; border-top:1px dashed var(--line); font-size:13px; color:var(--muted); line-height:1.65; text-align:center; }
.requisitos-error a { color:var(--coral); font-weight:700; }

/* ---------- Login (mismo criterio que admin-tienda.html) ---------- */
.hub-login-screen { max-width: 360px; margin: 80px auto; padding: 0 20px; }
.hub-login-screen .hub-card-title { margin-bottom: 4px; }
.hub-login-screen p { font-size: 12px; color: var(--muted); margin: 0 0 18px; }

/* ---------- Top bar de admin-hub.html (no usa el sidebar del hub de cliente) ---------- */
.hub-admin-top { background: linear-gradient(135deg, var(--navy-2), var(--navy) 75%); color: var(--white); padding: 18px 0; margin-bottom: 28px; border-bottom: 2px solid var(--gold-bright); }
.hub-admin-top-inner { max-width: 1040px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.hub-admin-brand { font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.hub-admin-brand .tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--coral); padding: 4px 9px; border-radius: 5px; }
.hub-admin-wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px 80px; }
.hub-logout-btn { background: none; border: 1px solid rgba(255,255,255,0.3); color: var(--white); border-radius: 6px; padding: 6px 12px; font-size: 11.5px; cursor: pointer; font-family: inherit; }
.hub-cliente-elegido { border: 1px solid var(--gold); background: #fbf6ef; border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* ---------- Chat (hub/chat.html + tab Chat de admin-hub.html) ---------- */
.hub-chat-box { display: flex; flex-direction: column; gap: 10px; max-height: 55vh; overflow-y: auto; padding: 4px 2px; margin-bottom: 16px; }
.hub-chat-msg { max-width: 72%; padding: 10px 13px; border-radius: 12px; font-size: 13.5px; line-height: 1.4; }
.hub-chat-msg .autor { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; opacity: .65; margin-bottom: 3px; }
.hub-chat-msg .hora { font-size: 10.5px; opacity: .55; margin-top: 4px; }
.hub-chat-msg.propio { align-self: flex-end; background: var(--coral); color: var(--white); border-bottom-right-radius: 3px; }
.hub-chat-msg.ajeno { align-self: flex-start; background: var(--paper-2); color: var(--ink); border-bottom-left-radius: 3px; }
.hub-chat-input-row { display: flex; gap: 8px; }
.hub-chat-input-row textarea { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: 13.5px; font-family: inherit; resize: vertical; min-height: 44px; max-height: 140px; }
.hub-chat-hilo { cursor: pointer; }

/* ---------- Calculadora de importación (wizard de 4 pasos) ----------
   Stepper en forma de "ruta" (chevrons pegados) a propósito, en vez del
   típico círculo-numerado-con-línea de cualquier wizard SaaS genérico —
   evoca la idea de tramo/etapa de un envío. */
.wiz-steps { display: flex; margin-bottom: 24px; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 26px -20px rgba(22,34,61,0.45); }
.wiz-step {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px 11px 24px;
  margin-left: -13px;
  background: var(--paper-2);
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%, 13px 50%);
}
.wiz-step:first-child { margin-left: 0; padding-left: 16px; clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%); }
.wiz-step.done { background: var(--navy-light); }
.wiz-step.active { background: var(--coral); }
.wiz-step-dot { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.5); color: var(--muted); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.wiz-step.done .wiz-step-dot, .wiz-step.active .wiz-step-dot { background: rgba(255,255,255,0.25); color: var(--white); }
.wiz-step-label { font-size: 11px; font-weight: 700; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.35; }
.wiz-step-label span { opacity: .75; }
.wiz-step.done .wiz-step-label, .wiz-step.active .wiz-step-label { color: var(--white); }
.wiz-step-sep { display: none; }
@media (max-width: 700px) { .wiz-step-label { display: none; } .wiz-step { padding: 11px 10px 11px 20px; flex: none; width: 46px; justify-content: center; } .wiz-step:first-child { width: 40px; } }

/* ---------- "Camino A / Camino B": asimétricas a propósito (una
   destacada, oscura, la otra simple) en vez de dos cards gemelas — el
   patrón de "dos cards idénticas lado a lado" es el que hace que cualquier
   wizard de carga con 2 caminos se vea igual a cualquier otro. ---------- */
.wiz-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
@media (max-width: 700px) { .wiz-paths { grid-template-columns: 1fr; } }
.wiz-path-card { border: 1.5px solid var(--line); border-radius: 14px; padding: 18px; background: var(--paper); }
.wiz-path-card.disabled { opacity: .6; }
.wiz-path-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 2px; }
.wiz-path-title { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.wiz-path-sub { font-size: 12px; color: var(--muted); margin-bottom: 12px; }

.wiz-path-card.wiz-path-featured {
  background: linear-gradient(155deg, var(--navy-2) 0%, var(--navy) 78%);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px -22px rgba(22,34,61,0.6);
}
.wiz-path-card.wiz-path-featured::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,80,46,0.4), transparent 70%); pointer-events: none;
}
.wiz-path-card.wiz-path-featured > * { position: relative; z-index: 1; }
.wiz-path-card.wiz-path-featured .wiz-path-label { color: var(--gold-bright); }
.wiz-path-card.wiz-path-featured .wiz-path-title { color: var(--white); }
.wiz-path-card.wiz-path-featured .wiz-path-sub { color: rgba(255,255,255,0.78); }
.wiz-path-card.wiz-path-featured input[type="text"] { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: var(--white); }
.wiz-path-card.wiz-path-featured input[type="text"]::placeholder { color: rgba(255,255,255,0.5); }
.wiz-path-card.wiz-path-featured .hub-btn-ghost { border-color: rgba(255,255,255,0.32); color: var(--white); }
.wiz-path-card.wiz-path-featured .hub-btn-ghost:hover { border-color: var(--gold-bright); }

.wiz-doc-upload-row { display: flex; flex-direction: column; gap: 8px; }
.wiz-doc-slot { display: flex; align-items: center; gap: 10px; border: 1.5px dashed var(--line); border-radius: 10px; padding: 10px 12px; cursor: pointer; background: var(--paper); }
.wiz-doc-slot:hover { border-color: var(--coral); }
.wiz-doc-slot.filled { border-style: solid; border-color: var(--green); background: var(--green-bg); }
.wiz-doc-slot .ic { font-size: 18px; flex: none; }
.wiz-doc-slot .txt { flex: 1; min-width: 0; }
.wiz-doc-slot .t { font-size: 12.5px; font-weight: 700; color: var(--navy); }
.wiz-doc-slot .d { font-size: 11px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.wiz-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.wiz-chip { display: flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 20px; border: 1.5px solid var(--line); font-size: 12.5px; font-weight: 700; color: var(--muted); background: var(--white); cursor: pointer; }
.wiz-chip.active { border-color: var(--coral); color: var(--navy); background: #fdf1ec; }
.wiz-chip button { background: none; border: none; color: inherit; cursor: pointer; font-size: 13px; padding: 0; line-height: 1; }
.wiz-chip-add { border-style: dashed; color: var(--coral); }

.wiz-alicuotas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 700px) { .wiz-alicuotas { grid-template-columns: repeat(2, 1fr); } }
.wiz-alicuota-box { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; }
.wiz-alicuota-box label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.wiz-alicuota-box .row { display: flex; align-items: baseline; gap: 4px; }
.wiz-alicuota-box input { width: 100%; border: none; background: transparent; font-size: 17px; font-weight: 800; color: var(--navy); font-family: inherit; padding: 0; }
.wiz-alicuota-box input:focus { outline: none; }
.wiz-alicuota-box .pct { font-size: 13px; color: var(--muted); }

.wiz-note { font-size: 11.5px; color: var(--muted); background: var(--paper-2); border-radius: 8px; padding: 10px 12px; margin: 10px 0; }
.wiz-note.warn { background: #fff4de; color: #7a5416; }

.hub-tooltip { display:inline-flex; align-items:center; justify-content:center; width:14px; height:14px; border-radius:50%; background:var(--muted); color:#fff; font-size:9px; font-weight:800; cursor:help; margin-left:4px; text-transform:none; letter-spacing:0; }

.wiz-license-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 700px) { .wiz-license-row { grid-template-columns: 1fr; } }
.wiz-license-card { border: 1.5px solid var(--line); border-radius: 10px; padding: 14px; cursor: pointer; }
.wiz-license-card.active { border-color: var(--coral); background: #fdf1ec; }
.wiz-license-card .title { font-weight: 800; color: var(--navy); font-size: 13.5px; margin-bottom: 4px; }
.wiz-license-card .sub { font-size: 12px; color: var(--muted); }

.wiz-via-row { display: flex; gap: 8px; margin: 12px 0; flex-wrap: wrap; }
.wiz-via-btn { flex: 1; min-width: 110px; padding: 10px; border-radius: 8px; border: 1.5px solid var(--line); background: var(--white); font-size: 12.5px; font-weight: 700; color: var(--muted); cursor: pointer; font-family: inherit; text-align: center; }
.wiz-via-btn.active { border-color: var(--coral); background: #fdf1ec; color: var(--navy); }

.wiz-breakdown-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 13px; }
.wiz-breakdown-row:last-child { border-bottom: none; }
.wiz-breakdown-row .lbl { color: var(--muted); }
.wiz-breakdown-row .val { font-weight: 800; color: var(--navy); }
.wiz-breakdown-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 4px; font-size: 15px; }
.wiz-breakdown-total .val { font-size: 19px; font-weight: 800; color: var(--coral-deep); }

.wiz-recupero { background: var(--green-bg); border-radius: 10px; padding: 14px; margin: 14px 0; }
.wiz-recupero .title { font-weight: 800; color: var(--green); font-size: 12.5px; margin-bottom: 8px; }

.wiz-producto-detalle { border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; cursor: pointer; }
.wiz-producto-detalle .head { display: flex; justify-content: space-between; align-items: center; }
.wiz-producto-detalle .cuerpo { display: none; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }
.wiz-producto-detalle.open .cuerpo { display: block; }

.wiz-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.wiz-nav-row { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; gap: 10px; }

/* ---------- Calculadora de márgenes ---------- */
.wiz-landing-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; margin-bottom: 20px; }
@media (max-width: 700px) { .wiz-landing-grid { grid-template-columns: 1fr; } }
.wiz-landing-card { border-radius: 12px; padding: 20px; }
.wiz-landing-card.dark { background: linear-gradient(135deg, var(--navy-2), var(--navy)); color: var(--white); }
.wiz-landing-card.light { background: var(--white); border: 1px solid var(--line); }
.wiz-landing-card .icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 10px; }
.wiz-landing-card.light .icon { background: var(--paper-2); }
.wiz-landing-card .title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.wiz-landing-card .sub { font-size: 12.5px; opacity: .85; margin-bottom: 14px; }
.wiz-landing-card a.link { color: inherit; font-weight: 800; font-size: 12.5px; text-decoration: none; }
.wiz-landing-card.dark a.link { color: var(--gold-bright, #d7b686); }
.wiz-landing-card.light a.link { color: var(--coral); }

.wiz-margin-stepper { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 20px; background: var(--paper); border-radius: 10px; }
.wiz-margin-stepper button { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); font-size: 18px; font-weight: 800; cursor: pointer; color: var(--navy); }
.wiz-margin-stepper .val { font-size: 34px; font-weight: 800; color: var(--navy); font-family: var(--font-display); min-width: 90px; text-align: center; }

.wiz-canal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0; }
@media (max-width: 800px) { .wiz-canal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .wiz-canal-grid { grid-template-columns: 1fr; } }
.wiz-canal-card { border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.wiz-canal-card .head { display: flex; justify-content: space-between; align-items: flex-start; gap: 6px; margin-bottom: 8px; }
.wiz-canal-card .nombre { font-weight: 800; font-size: 13px; color: var(--navy); }
.wiz-canal-card .sub { font-size: 10.5px; color: var(--muted); }
.wiz-canal-card .badge { font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 20px; background: var(--green-bg); color: var(--green); white-space: nowrap; }
.wiz-canal-card .te-queda { font-size: 10.5px; color: var(--muted); }
.wiz-canal-card .te-queda b { font-size: 14px; color: var(--navy); }
.wiz-canal-card.mejor { border-color: var(--coral); }

.wiz-config-panel { border-top: 1px dashed var(--line); margin-top: 14px; padding-top: 14px; }
.wiz-config-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; align-items: center; margin-bottom: 8px; }
.wiz-config-row label { font-size: 12.5px; color: var(--ink); }
.wiz-config-row input, .wiz-config-row select { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 7px 9px; font-size: 12.5px; font-family: inherit; width: 100%; }

.wiz-best-banner { background: linear-gradient(135deg, var(--navy-2), var(--navy)); color: var(--white); border-radius: 12px; padding: 18px 20px; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.wiz-best-banner .lbl { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-bright, #d7b686); }
.wiz-best-banner .canal { font-size: 15px; font-weight: 800; margin-top: 2px; }
.wiz-best-banner .monto { font-size: 26px; font-weight: 800; text-align: right; }
.wiz-best-banner .monto-sub { font-size: 11px; opacity: .8; text-align: right; }

.wiz-canal-row { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; padding: 14px; cursor: pointer; }
.wiz-canal-row.top { border-color: var(--green); }
.wiz-canal-row .head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.wiz-canal-row .rank { width: 24px; height: 24px; border-radius: 50%; background: var(--paper-2); color: var(--muted); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.wiz-canal-row .cuerpo { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.wiz-canal-row.open .cuerpo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .wiz-canal-row.open .cuerpo { grid-template-columns: 1fr; } }
.wiz-canal-row .cuerpo-col-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 8px; }
.wiz-canal-row .impuesto-block { margin-bottom: 12px; }
.wiz-canal-row .impuesto-block .titulo { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

/* ---------- Despachante virtual ---------- */
.desp-shell { display: grid; grid-template-columns: 280px 1fr; gap: 16px; min-height: 60vh; }
@media (max-width: 800px) { .desp-shell { grid-template-columns: 1fr; } }
.desp-sidebar { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.desp-sidebar input[type="search"] { width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 9px 10px; font-size: 12.5px; font-family: inherit; margin: 10px 0; }
.desp-conv-item { padding: 10px 10px; border-radius: 8px; cursor: pointer; font-size: 12.5px; color: var(--ink); margin-bottom: 4px; }
.desp-conv-item:hover { background: var(--paper); }
.desp-conv-item.active { background: var(--paper-2); font-weight: 700; }
.desp-conv-item .fecha { font-size: 10.5px; color: var(--muted); }

.desp-panel { background: var(--white); border: 1px solid var(--line); border-radius: 12px; display: flex; flex-direction: column; padding: 16px; }
.desp-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.desp-head .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--paper-2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.desp-head .estado { font-size: 11px; color: var(--green); }

.desp-suggestions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
@media (max-width: 600px) { .desp-suggestions { grid-template-columns: 1fr; } }
.desp-suggestion { text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 12.5px; color: var(--ink); cursor: pointer; font-family: inherit; }
.desp-suggestion:hover { border-color: var(--coral); }

.desp-messages { flex: 1; overflow-y: auto; margin-bottom: 14px; display: flex; flex-direction: column; gap: 10px; }
.desp-input-row { display: flex; gap: 8px; align-items: center; border-top: 1px solid var(--line); padding-top: 12px; }
.desp-input-row input[type="text"] { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 11px 16px; font-size: 13px; font-family: inherit; }
.desp-attach-btn { background: none; border: none; font-size: 18px; cursor: pointer; padding: 6px; }
.desp-send-btn { background: var(--coral); color: #fff; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 15px; flex: none; }
.desp-attach-note { font-size: 10.5px; color: var(--muted); text-align: center; margin-top: 6px; }
.desp-archivo-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--paper-2); border-radius: 20px; padding: 5px 12px; font-size: 11.5px; margin-bottom: 8px; }

/* ---------- Proveedores verificados ---------- */
.prov-head-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0 20px; }
.prov-banner { background: linear-gradient(135deg, var(--navy-2), var(--navy)); color: var(--white); border-radius: 14px; padding: 22px 24px; margin-bottom: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.prov-banner .t { font-size: 14.5px; font-weight: 800; margin-bottom: 4px; }
.prov-banner .d { font-size: 12px; color: rgba(255,255,255,0.75); max-width: 420px; }
.prov-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.prov-banner-actions .btn-light { background: rgba(255,255,255,0.14); color: var(--white); border: 1px solid rgba(255,255,255,0.3); border-radius: 8px; padding: 10px 16px; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; }
.prov-banner-actions .btn-light:hover { background: rgba(255,255,255,0.22); }
.prov-banner-actions .btn-dark { background: var(--white); color: var(--navy); border: none; border-radius: 8px; padding: 10px 16px; font-size: 12.5px; font-weight: 800; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; }

.prov-toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.prov-search { flex: 1; min-width: 200px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; font-size: 13px; font-family: inherit; }
.prov-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.prov-pill { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: var(--muted); cursor: pointer; font-family: inherit; white-space: nowrap; }
.prov-pill.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.prov-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .prov-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .prov-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .prov-grid { grid-template-columns: 1fr; } }
.prov-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.prov-card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -20px rgba(22,34,61,0.35); }
.prov-card-img { aspect-ratio: 1/1; background: var(--paper-2); position: relative; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--muted); overflow: hidden; }
.prov-card-img img { width: 100%; height: 100%; object-fit: cover; }
.prov-badge { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .03em; }
.prov-badge.si { background: var(--green-bg); color: var(--green); }
.prov-badge.no { background: var(--paper); color: var(--muted); border: 1px solid var(--line); }
.prov-card-body { padding: 12px 14px; }
.prov-card-cat { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--gold); margin-bottom: 4px; }
.prov-card-nombre { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 8px; min-height: 34px; }
.prov-card-precio-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.prov-card-precio { font-size: 15px; font-weight: 800; color: var(--ink); font-family: ui-monospace, monospace; }

.prov-detail-overlay { position: fixed; inset: 0; background: rgba(22,34,61,0.55); z-index: 60; display: flex; align-items: center; justify-content: center; padding: 20px; }
.prov-detail-card { background: var(--white); border-radius: 14px; max-width: 480px; width: 100%; max-height: 86vh; overflow-y: auto; padding: 24px; position: relative; }
.prov-detail-close { position: absolute; top: 14px; right: 14px; background: var(--paper); border: none; border-radius: 50%; width: 30px; height: 30px; font-size: 15px; cursor: pointer; color: var(--muted); }
.prov-detail-img { aspect-ratio: 16/10; background: var(--paper-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--muted); overflow: hidden; margin-bottom: 16px; }
.prov-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.prov-detail-cat { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--gold); margin-bottom: 6px; }
.prov-detail-nombre { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.prov-detail-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.prov-detail-precio-box { background: var(--paper); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.prov-detail-precio-box .lbl { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.prov-detail-precio-box .val { font-size: 22px; font-weight: 800; color: var(--navy); font-family: ui-monospace, monospace; }
.prov-detail-actions { display: flex; flex-direction: column; gap: 8px; }

.prov-empty { text-align: center; padding: 50px 20px; color: var(--muted); font-size: 13px; }
.hub-chat-hilo.active { border-color: var(--coral); background: #fff3ef; }
