    :root {
      --bg:      #b7dffd;
      --surface: #ededed;
      --title:   #443030;
      --muted:   #877a7a;
      --accent:  #2196F3;
      --success: #25D366;
      --border:  #cce0f5;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: var(--bg); font-family: system-ui, sans-serif; min-height: 100vh; display: flex; flex-direction: column; }

    header { background: var(--surface); padding: 14px 20px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .btn-back { background: none; border: none; cursor: pointer; font-size: 22px; color: var(--title); }
    header h1 { font-size: 17px; font-weight: 700; color: var(--title); }

    main { flex: 1; max-width: 640px; margin: 0 auto; width: 100%; padding: 16px; }

    /* Buscador */
    .search-box { background: var(--surface); border-radius: 14px; padding: 16px; margin-bottom: 16px; }
    .search-box input, .search-box select {
      width: 100%; padding: 10px 14px; border: 1px solid var(--border);
      border-radius: 8px; font-size: 14px; background: #fff; color: var(--title);
      margin-bottom: 10px; appearance: none; -webkit-appearance: none;
      font-family: system-ui, sans-serif;
    }
    .search-box input:last-child, .search-box select:last-child { margin-bottom: 0; }
    .search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
    .search-row select { margin-bottom: 0; }
    .btn-gps {
      width: 100%; padding: 10px; background: var(--accent); color: #fff;
      border: none; border-radius: 8px; font-size: 14px; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-bottom: 10px;
    }
    .btn-gps:disabled { opacity: 0.6; cursor: not-allowed; }

    /* Cards */
    .puntos-lista { display: flex; flex-direction: column; gap: 14px; }
    .punto-card {
      background: var(--surface); border-radius: 14px; padding: 18px;
      border: 2px solid transparent; transition: border-color .2s;
    }
    .punto-card:hover { border-color: var(--accent); }
    .punto-negocio { font-size: 16px; font-weight: 700; color: var(--title); margin-bottom: 2px; }
    .punto-sucursal { font-size: 13px; color: var(--accent); margin-bottom: 8px; }
    .punto-ubicacion { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
    .punto-distancia { font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
    .punto-acciones { display: flex; gap: 8px; flex-wrap: wrap; }
    .btn-accion {
      padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
      border: none; cursor: pointer; text-decoration: none; display: inline-flex;
      align-items: center; gap: 6px;
    }
    .btn-menu    { background: var(--accent);   color: #fff; }
    .btn-wa      { background: var(--success);   color: #fff; }
    .btn-maps    { background: #fff; color: var(--title); border: 1px solid var(--border); }

    /* Mapa mini */
    .punto-mapa-div {
      width: 100%; height: 130px; border-radius: 10px;
      margin-bottom: 10px; overflow: hidden; z-index: 0; position: relative;
    }
    .punto-mapa-div .leaflet-control-container { display: none; }

    /* Horarios */
    .horario-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0; }
    .horario-badge {
      padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700;
    }
    .badge-abierto  { background: #e8f5e9; color: #1b5e20; }
    .badge-cerrado  { background: #ffebee; color: #b71c1c; }
    .horario-hoy { font-size: 11px; color: var(--muted); margin-bottom: 8px; }

    /* Paginación */
    .paginacion { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; padding-bottom: 20px; }
    .btn-pag { padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border); background: #fff; color: var(--title); font-size: 14px; cursor: pointer; font-weight: 600; }
    .btn-pag:hover:not(:disabled) { background: var(--accent); color: #fff; border-color: var(--accent); }
    .btn-pag:disabled { opacity: 0.4; cursor: not-allowed; }
    .pag-info { font-size: 13px; color: var(--muted); font-family: "Courier New", monospace; }

    .loading { text-align: center; padding: 48px 20px; color: var(--muted); }
    .empty-state { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 14px; line-height: 1.8; }
    .empty-state .icon { font-size: 48px; display: block; margin-bottom: 16px; }
